linux_dsm_epyc7002/drivers/net/ethernet/amd
Gustavo A. R. Silva c2dfc7d2a9 net: atarilance: Replace zero-length array with flexible-array
The current codebase makes use of the zero-length array language
extension to the C90 standard, but the preferred mechanism to declare
variable-length types such as these ones is a flexible array member[1][2],
introduced in C99:

struct foo {
        int stuff;
        struct boo array[];
};

By making use of the mechanism above, we will get a compiler warning
in case the flexible array does not occur last in the structure, which
will help us prevent some kind of undefined behavior bugs from being
inadvertently introduced[3] to the codebase from now on.

Also, notice that, dynamic memory allocations won't be affected by
this change:

"Flexible array members have incomplete type, and so the sizeof operator
may not be applied. As a quirk of the original implementation of
zero-length arrays, sizeof evaluates to zero."[1]

sizeof(flexible-array-member) triggers a warning because flexible array
members have incomplete type[1]. There are some instances of code in
which the sizeof operator is being incorrectly/erroneously applied to
zero-length arrays and the result is zero. Such instances may be hiding
some bugs. So, this work (flexible-array member conversions) will also
help to get completely rid of those sorts of issues.

This issue was found with the help of Coccinelle.

[1] https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
[2] https://github.com/KSPP/linux/issues/21
[3] commit 7649773293 ("cxgb3/l2t: Fix undefined behaviour")

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2020-05-11 13:18:54 -07:00
..
xgbe amd-xgbe: Use __napi_schedule() in BH context 2020-04-16 13:59:53 -07:00
7990.c net: 7990: Fix use correct return type for ndo_start_xmit() 2020-05-06 14:26:14 -07:00
7990.h net: 7990: Fix use correct return type for ndo_start_xmit() 2020-05-06 14:26:14 -07:00
a2065.c net: amd: a2065: Use print_hex_dump_debug() helper 2020-01-12 16:20:26 -08:00
a2065.h
am79c961a.c netdev: pass the stuck queue to the timeout handler 2019-12-12 21:38:57 -08:00
am79c961a.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 2019-06-19 17:09:55 +02:00
amd8111e.c net/amd: Remove useless driver version 2020-02-24 11:24:47 -08:00
amd8111e.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 2019-05-21 11:28:45 +02:00
ariadne.c netdev: pass the stuck queue to the timeout handler 2019-12-12 21:38:57 -08:00
ariadne.h
atarilance.c net: atarilance: Replace zero-length array with flexible-array 2020-05-11 13:18:54 -07:00
au1000_eth.c net/amd: Remove useless driver version 2020-02-24 11:24:47 -08:00
au1000_eth.h treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 400 2019-06-05 17:37:13 +02:00
declance.c drivers: net: declance: fix comparing pointer to 0 2020-01-21 12:04:57 +01:00
hplance.c treewide: Add SPDX license identifier for more missed files 2019-05-21 10:50:45 +02:00
hplance.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
Kconfig net: amd: Spelling s/case/cause/ 2019-08-01 13:45:48 -04:00
lance.c netdev: pass the stuck queue to the timeout handler 2019-12-12 21:38:57 -08:00
Makefile License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
mvme147.c treewide: Add SPDX license identifier for more missed files 2019-05-21 10:50:45 +02:00
ni65.c netdev: pass the stuck queue to the timeout handler 2019-12-12 21:38:57 -08:00
ni65.h
nmclan_cs.c net/amd: Remove useless driver version 2020-02-24 11:24:47 -08:00
pcnet32.c net/amd: Remove useless driver version 2020-02-24 11:24:47 -08:00
sun3lance.c net: amd: fix return type of ndo_start_xmit function 2018-09-19 21:17:58 -07:00
sunlance.c net/amd: Remove useless driver version 2020-02-24 11:24:47 -08:00