]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
nfp: Use static_assert() to check struct sizes
authorGustavo A. R. Silva <gustavoars@kernel.org>
Thu, 8 Aug 2024 22:08:35 +0000 (16:08 -0600)
committerJakub Kicinski <kuba@kernel.org>
Tue, 13 Aug 2024 01:40:44 +0000 (18:40 -0700)
commit46dd90fe51f3556deaf5af47aafcee10536a3978
treec54be392cb5a0b1fe3c3e7265377bc800c00f393
parente2d0fadd703c3a3a6ebe318ec82ea64c08d709c2
nfp: Use static_assert() to check struct sizes

Commit d88cabfd9abc ("nfp: Avoid -Wflex-array-member-not-at-end
warnings") introduced tagged `struct nfp_dump_tl_hdr`. We want
to ensure that when new members need to be added to the flexible
structure, they are always included within this tagged struct.

So, we use `static_assert()` to ensure that the memory layout for
both the flexible structure and the tagged struct is the same after
any changes.

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/ZrVB43Hen0H5WQFP@cute
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/netronome/nfp/nfp_net_debugdump.c