aboutsummaryrefslogtreecommitdiff
path: root/lib/test_overflow.c
diff options
context:
space:
mode:
authorJohan Hovold <[email protected]>2020-11-23 11:23:18 +0100
committerJessica Yu <[email protected]>2020-11-25 15:45:03 +0100
commitfe2f4fe139b321a38daafc715aeb7d21d9e8e5ad (patch)
treee5face2f34980a240b4e9413009086ae223e8c63 /lib/test_overflow.c
parent8d6615f1fccc4f39d7d3dcf286b33e8a1e833d2b (diff)
params: use type alignment for kernel parameters
Specify type alignment for kernel parameters instead of sizeof(void *). The alignment attribute is used to prevent gcc from increasing the alignment of objects with static extent as an optimisation, something which would mess up the __param array stride. Using __alignof__(struct kernel_param) rather than sizeof(void *) is preferred since it better indicates why it is there and doesn't break should the type size or alignment change. Note that on m68k the alignment of struct kernel_param is actually two and that adding a 1- or 2-byte field to the 20-byte struct would cause a breakage with the current 4-byte alignment. Link: https://lore.kernel.org/lkml/[email protected] Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Jessica Yu <[email protected]>
Diffstat (limited to 'lib/test_overflow.c')
0 files changed, 0 insertions, 0 deletions