From: Dave Chinner <david@fromorbit.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
linux-rt-users <linux-rt-users@vger.kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Clark Williams <williams@redhat.com>,
Peter Zijlstra <peterz@infradead.org>
Subject: Re: [PATCH][RT] xfs: Disable preemption when grabbing all icsb counter locks
Date: Mon, 4 May 2015 10:48:44 +1000 [thread overview]
Message-ID: <20150504004844.GA21261@dastard> (raw)
In-Reply-To: <20150430123303.30f5bd12@gandalf.local.home>
On Thu, Apr 30, 2015 at 12:33:03PM -0400, Steven Rostedt wrote:
> Running a test on a large CPU count box with xfs, I hit a live lock
> with the following backtraces on several CPUs:
>
> Call Trace:
> [<ffffffff812c34f8>] __const_udelay+0x28/0x30
> [<ffffffffa033ab9a>] xfs_icsb_lock_cntr+0x2a/0x40 [xfs]
> [<ffffffffa033c871>] xfs_icsb_modify_counters+0x71/0x280 [xfs]
> [<ffffffffa03413e1>] xfs_trans_reserve+0x171/0x210 [xfs]
> [<ffffffffa0378cfd>] xfs_create+0x24d/0x6f0 [xfs]
> [<ffffffff8124c8eb>] ? avc_has_perm_flags+0xfb/0x1e0
> [<ffffffffa0336eeb>] xfs_vn_mknod+0xbb/0x1e0 [xfs]
> [<ffffffffa0337043>] xfs_vn_create+0x13/0x20 [xfs]
> [<ffffffff811b0edd>] vfs_create+0xcd/0x130
> [<ffffffff811b21ef>] do_last+0xb8f/0x1240
> [<ffffffff811b39b2>] path_openat+0xc2/0x490
>
> Looking at the code I see it was stuck at:
>
> STATIC void
> xfs_icsb_lock_cntr(
> xfs_icsb_cnts_t *icsbp)
> {
> while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
> ndelay(1000);
> }
> }
>
> I'm not sure why it does the ndelay() and not just a cpu_relax(), but
Because the code was writtenlong before cpu_relax() existed, just
like it was written long before the generic percpu counter code was
added...
....
> Now, when PREEMPT_RT is not enabled, that spin_lock() disables
> preemption. But for PREEMPT_RT, it does not. Although with my test box I
> was not able to produce a task state of all tasks, but I'm assuming that
> some task called the xfs_icsb_lock_all_counters() and was preempted by
> an RT task and could not finish, causing all callers of that lock to
> block indefinitely.
>
> Looking at all users of xfs_icsb_lock_all_counters(), they are leaf
> functions and do not call anything that may block on PREEMPT_RT. I
> believe the proper fix here is to simply disable preemption in
> xfs_icsb_lock_all_counters() when PREEMPT_RT is enabled.
RT is going to have other performance problems that are probably
going to negate the scalability this code provides. If you want a
hack that you can easily backport (as this code now uses the generic
percpu counters) then have a look at fs/xfs/xfs_linux.h:
/*
* Feature macros (disable/enable)
*/
#ifdef CONFIG_SMP
#define HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */
#else
#undef HAVE_PERCPU_SB /* per cpu superblock counters are a 2.6 feature */
#endif
You can turn off all that per-cpu code simply by:
-#ifdef CONFIG_SMP
+#if defined(CONFIG_SMP) && !defined(CONFIG_PREEMPT_RT)
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
next prev parent reply other threads:[~2015-05-04 0:51 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-30 16:33 [PATCH][RT] xfs: Disable preemption when grabbing all icsb counter locks Steven Rostedt
2015-04-30 18:07 ` Peter Zijlstra
2015-04-30 18:32 ` Steven Rostedt
2015-04-30 18:40 ` Austin Schuh
2015-04-30 19:07 ` Steven Rostedt
2015-04-30 18:33 ` Christoph Hellwig
2015-04-30 18:36 ` Steven Rostedt
2015-05-04 0:48 ` Dave Chinner [this message]
2015-05-04 14:14 ` Steven Rostedt
2015-05-13 15:36 ` [PATCH][RT] xfs: Disable percpu SB on PREEMPT_RT_FULL Steven Rostedt
2015-05-14 16:32 ` Sebastian Andrzej Siewior
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150504004844.GA21261@dastard \
--to=david@fromorbit.com \
--cc=bigeasy@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=williams@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).