The patch titled Subject: sysv: use BUILD_BUG_ON instead of runtime check has been added to the -mm tree. Its filename is sysv-use-build_bug_on-instead-of-runtime-check.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/sysv-use-build_bug_on-instead-of-runtime-check.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/sysv-use-build_bug_on-instead-of-runtime-check.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Pavel Skripkin <paskripkin@xxxxxxxxx> Subject: sysv: use BUILD_BUG_ON instead of runtime check There were runtime checks about sizes of struct v7_super_block and struct sysv_inode. If one of these checks fail the kernel will panic. Since these values are known at compile time let's use BUILD_BUG_ON(), because it's a standard mechanism for validation checking at build time Link: https://lkml.kernel.org/r/20210813123020.22971-1-paskripkin@xxxxxxxxx Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Pavel Skripkin <paskripkin@xxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/sysv/super.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) --- a/fs/sysv/super.c~sysv-use-build_bug_on-instead-of-runtime-check +++ a/fs/sysv/super.c @@ -474,10 +474,8 @@ static int v7_fill_super(struct super_bl struct sysv_sb_info *sbi; struct buffer_head *bh; - if (440 != sizeof (struct v7_super_block)) - panic("V7 FS: bad super-block size"); - if (64 != sizeof (struct sysv_inode)) - panic("sysv fs: bad i-node size"); + BUILD_BUG_ON(sizeof(struct v7_super_block) != 440); + BUILD_BUG_ON(sizeof(struct sysv_inode) != 64); sbi = kzalloc(sizeof(struct sysv_sb_info), GFP_KERNEL); if (!sbi) _ Patches currently in -mm which might be from paskripkin@xxxxxxxxx are sysv-use-build_bug_on-instead-of-runtime-check.patch