summaryrefslogtreecommitdiff
path: root/include/linux/wordpart.h
diff options
context:
space:
mode:
authorDouglas Anderson <dianders@chromium.org>2024-01-26 18:28:53 +0300
committerKees Cook <keescook@chromium.org>2024-02-01 20:44:07 +0300
commit735b7636d1a88e85eeef607a8179a114618bc5a0 (patch)
tree96006fe78f74e2b4b97279d26e59257d6f9db763 /include/linux/wordpart.h
parent6dde3569b867e2af2a9576c2f3ca1aa9b87d39fd (diff)
downloadlinux-735b7636d1a88e85eeef607a8179a114618bc5a0.tar.xz
lkdtm/bugs: In lkdtm_HUNG_TASK() use BUG(), not BUG_ON(1)
In commit edb6538da3df ("lkdtm/bugs: Adjust lkdtm_HUNG_TASK() to avoid tail call optimization") we marked lkdtm_HUNG_TASK() as __noreturn. The compiler gets unhappy if it thinks a __noreturn function might return, so there's a BUG_ON(1) at the end. Any human can see that the function won't return and the compiler can figure that out too. Except when it can't. The MIPS architecture defines HAVE_ARCH_BUG_ON and defines its own version of BUG_ON(). The MIPS version of BUG_ON() is not a macro but is instead an inline function. Apparently this prevents the compiler from realizing that the condition to BUG_ON() is constant and that the function will never return. Let's change the BUG_ON(1) to just BUG(), which it should have been to begin with. The only reason I used BUG_ON(1) to begin with was because I was used to using WARN_ON(1) when writing test code and WARN() and BUG() are oddly inconsistent in this manner. :-/ Fixes: edb6538da3df ("lkdtm/bugs: Adjust lkdtm_HUNG_TASK() to avoid tail call optimization") Signed-off-by: Douglas Anderson <dianders@chromium.org> Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202401262204.wUFKRYZF-lkp@intel.com/ Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20240126072852.1.Ib065e528a8620474a72f15baa2feead1f3d89865@changeid Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/linux/wordpart.h')
0 files changed, 0 insertions, 0 deletions