Merge tag 'flexible-array-member-5.7-rc2' of...
Merge tag 'flexible-array-member-5.7-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux Pull flexible-array member conversion from Gustavo Silva: "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 convertions) will also help to get completely rid of those sorts of issues. Notice that all of these patches have been baking in linux-next for quite a while now and, 238 more of these patches have already been merged into 5.7-rc1. There are a couple hundred more of these issues waiting to be addressed in the whole codebase" [1] https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html [2] https://github.com/KSPP/linux/issues/21 [3] commit 76497732 ("cxgb3/l2t: Fix undefined behaviour") * tag 'flexible-array-member-5.7-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux: (28 commits) xattr.h: Replace zero-length array with flexible-array member uapi: linux: fiemap.h: Replace zero-length array with flexible-array member uapi: linux: dlm_device.h: Replace zero-length array with flexible-array member tpm_eventlog.h: Replace zero-length array with flexible-array member ti_wilink_st.h: Replace zero-length array with flexible-array member swap.h: Replace zero-length array with flexible-array member skbuff.h: Replace zero-length array with flexible-array member sched: topology.h: Replace zero-length array with flexible-array member rslib.h: Replace zero-length array with flexible-array member rio.h: Replace zero-length array with flexible-array member posix_acl.h: Replace zero-length array with flexible-array member platform_data: wilco-ec.h: Replace zero-length array with flexible-array member memcontrol.h: Replace zero-length array with flexible-array member list_lru.h: Replace zero-length array with flexible-array member lib: cpu_rmap: Replace zero-length array with flexible-array member irq.h: Replace zero-length array with flexible-array member ihex.h: Replace zero-length array with flexible-array member igmp.h: Replace zero-length array with flexible-array member genalloc.h: Replace zero-length array with flexible-array member ethtool.h: Replace zero-length array with flexible-array member ...
No related branches found
No related tags found
Showing
- include/linux/bio.h 1 addition, 1 deletioninclude/linux/bio.h
- include/linux/blk-mq.h 1 addition, 1 deletioninclude/linux/blk-mq.h
- include/linux/blk_types.h 1 addition, 1 deletioninclude/linux/blk_types.h
- include/linux/can/dev/peak_canfd.h 2 additions, 2 deletionsinclude/linux/can/dev/peak_canfd.h
- include/linux/cpu_rmap.h 1 addition, 1 deletioninclude/linux/cpu_rmap.h
- include/linux/digsig.h 2 additions, 2 deletionsinclude/linux/digsig.h
- include/linux/dirent.h 1 addition, 1 deletioninclude/linux/dirent.h
- include/linux/enclosure.h 1 addition, 1 deletioninclude/linux/enclosure.h
- include/linux/energy_model.h 1 addition, 1 deletioninclude/linux/energy_model.h
- include/linux/ethtool.h 2 additions, 2 deletionsinclude/linux/ethtool.h
- include/linux/genalloc.h 1 addition, 1 deletioninclude/linux/genalloc.h
- include/linux/igmp.h 1 addition, 1 deletioninclude/linux/igmp.h
- include/linux/ihex.h 1 addition, 1 deletioninclude/linux/ihex.h
- include/linux/irq.h 2 additions, 2 deletionsinclude/linux/irq.h
- include/linux/list_lru.h 1 addition, 1 deletioninclude/linux/list_lru.h
- include/linux/memcontrol.h 2 additions, 2 deletionsinclude/linux/memcontrol.h
- include/linux/platform_data/wilco-ec.h 1 addition, 1 deletioninclude/linux/platform_data/wilco-ec.h
- include/linux/posix_acl.h 1 addition, 1 deletioninclude/linux/posix_acl.h
- include/linux/rio.h 2 additions, 2 deletionsinclude/linux/rio.h
- include/linux/rslib.h 1 addition, 1 deletioninclude/linux/rslib.h
Loading
Please register or sign in to comment