Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8914f3a authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Felix Blyakher
Browse files

xfs: fix spin_is_locked assert on uni-processor builds



Without SMP or preemption spin_is_locked always returns false,
so we can't do an assert with it.  Instead use assert_spin_locked,
which does the right thing on all builds.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarEric Sandeen <sandeen@sandeen.net>
Reported-by: default avatarJohannes Engel <jcnengel@googlemail.com>
Tested-by: default avatarJohannes Engel <jcnengel@googlemail.com>
Signed-off-by: default avatarFelix Blyakher <felixb@sgi.com>
parent b89d4208
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3180,7 +3180,7 @@ xlog_state_sync(xlog_t *log,
STATIC void
xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
{
	ASSERT(spin_is_locked(&log->l_icloglock));
	assert_spin_locked(&log->l_icloglock);

	if (iclog->ic_state == XLOG_STATE_ACTIVE) {
		xlog_state_switch_iclogs(log, iclog, 0);