]> git.baikalelectronics.ru Git - kernel.git/commit
net: ena: gcc 8: fix compilation warning
authorSameeh Jubran <sameehj@amazon.com>
Wed, 1 May 2019 13:47:10 +0000 (16:47 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 4 May 2019 04:14:47 +0000 (00:14 -0400)
commit36d4ae8706a37a15f657d7bb198a61f1f1d90a1c
tree176d737105591e73d3f8ec75b08cd222289786fb
parent33bdacf2f858d534277e3e65428c5c23f3573b1e
net: ena: gcc 8: fix compilation warning

GCC 8 contains a number of new warnings as well as enhancements to existing
checkers. The warning - Wstringop-truncation - warns for calls to bounded
string manipulation functions such as strncat, strncpy, and stpncpy that
may either truncate the copied string or leave the destination unchanged.

In our case the destination string length (32 bytes) is much shorter than
the source string (64 bytes) which causes this warning to show up. In
general the destination has to be at least a byte larger than the length
of the source string with strncpy for this warning not to showup.

This can be easily fixed by using strlcpy instead which already does the
truncation to the string. Documentation for this function can be
found here:

https://elixir.bootlin.com/linux/latest/source/lib/string.c#L141

Fixes: 42904aea461f ("net: ena: Add a driver for Amazon Elastic Network Adapters (ENA)")
Signed-off-by: Sameeh Jubran <sameehj@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amazon/ena/ena_netdev.c