]> git.baikalelectronics.ru Git - kernel.git/commit
signal handling: don't use BUG_ON() for debugging
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 6 Jul 2022 19:20:59 +0000 (12:20 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 7 Jul 2022 16:53:43 +0000 (09:53 -0700)
commita3a14d4efebfe3b240090999bc31910cd68ae730
tree82af0ff4d9345680b1f000650f6e6cbd3bff0f60
parent463e7ffc4e29bd9afcd697a600f7d65e4fd68d34
signal handling: don't use BUG_ON() for debugging

These are indeed "should not happen" situations, but it turns out recent
changes made the 'task_is_stopped_or_trace()' case trigger (fix for that
exists, is pending more testing), and the BUG_ON() makes it
unnecessarily hard to actually debug for no good reason.

It's been that way for a long time, but let's make it clear: BUG_ON() is
not good for debugging, and should never be used in situations where you
could just say "this shouldn't happen, but we can continue".

Use WARN_ON_ONCE() instead to make sure it gets logged, and then just
continue running.  Instead of making the system basically unusuable
because you crashed the machine while potentially holding some very core
locks (eg this function is commonly called while holding 'tasklist_lock'
for writing).

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/signal.c