]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: fix spurious spin_is_locked() assert failures on non-smp kernels
authorBrian Foster <bfoster@redhat.com>
Thu, 8 Jun 2017 15:23:07 +0000 (08:23 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Thu, 8 Jun 2017 15:23:07 +0000 (08:23 -0700)
commiteaf66cab4909bfeb0a8ad95f485f748e5d92ea14
tree300e849efbeefc8e35c4bf195a107c1002aca73d
parent3c89033f652c6d0f17955892680b803f1b0bca86
xfs: fix spurious spin_is_locked() assert failures on non-smp kernels

The 0-day kernel test robot reports assertion failures on
!CONFIG_SMP kernels due to failed spin_is_locked() checks. As it
turns out, spin_is_locked() is hardcoded to return zero on
!CONFIG_SMP kernels and so this function cannot be relied on to
verify spinlock state in this configuration.

To avoid this problem, replace the associated asserts with lockdep
variants that do the right thing regardless of kernel configuration.
Drop the one assert that checks for an unlocked lock as there is no
suitable lockdep variant for that case. This moves the spinlock
checks from XFS debug code to lockdep, but generally provides the
same level of protection.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/xfs_buf.c
fs/xfs/xfs_icache.c