mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
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@gmail.com
Fixes:
|
||
|---|---|---|
| .. | ||
| balloc.c | ||
| dir.c | ||
| file.c | ||
| ialloc.c | ||
| inode.c | ||
| itree.c | ||
| Kconfig | ||
| Makefile | ||
| namei.c | ||
| super.c | ||
| sysv.h | ||