]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: define bug_on_assert debug mode sysfs tunable
authorBrian Foster <bfoster@redhat.com>
Thu, 15 Jun 2017 04:29:12 +0000 (21:29 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Mon, 19 Jun 2017 15:59:10 +0000 (08:59 -0700)
commit979ea4e6e1b1a53385a23053a85814d5598db6f4
treed684f89dab1b5a2c9579e307e841cd0629b24399
parent6b87ef39fc75a911e479a04b587adb974b122f33
xfs: define bug_on_assert debug mode sysfs tunable

In DEBUG mode, assert failures unconditionally trigger a kernel BUG.
This is useful in diagnostic situations to panic a system and
collect detailed state information at the time of a failure.

This can also cause problems in cases where DEBUG mode code is
desired but it is preferable not trigger kernel BUGs on assert
failure. For example, during development of new code or during
certain xfstests tests that intentionally cause corruption and test
the kernel for survival (but otherwise may expect to trigger assert
failures).

To provide additional flexibility, create the
<sysfs>/fs/xfs/debug/bug_on_assert tunable to configure assert
failure behavior at runtime. This tunable is only available in DEBUG
mode and is enabled by default to preserve existing default
behavior. When disabled, assert failures in DEBUG mode result in
kernel warnings.

Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/xfs_globals.c
fs/xfs/xfs_message.c
fs/xfs/xfs_sysctl.h
fs/xfs/xfs_sysfs.c