From: Andrew Morton <akpm@linux-foundation.org>
To: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-fsdevel@vger.kernel.org,
Alexander Viro <viro@zeniv.linux.org.uk>,
Dave Chinner <david@fromorbit.com>
Subject: Re: [PATCH] fs: avoid locking sb_lock in grab_super_passive()
Date: Fri, 20 Feb 2015 15:07:31 -0800 [thread overview]
Message-ID: <20150220150731.e79cd30dc6ecf3c7a3f5caa3@linux-foundation.org> (raw)
In-Reply-To: <20150219171934.20458.30175.stgit@buzz>
On Thu, 19 Feb 2015 20:19:35 +0300 Konstantin Khlebnikov <khlebnikov@yandex-team.ru> wrote:
>
Please cc Dave Chinner on this.
> I've noticed significant locking contention in memory reclaimer around
> sb_lock inside grab_super_passive(). Grab_super_passive() is called from
> two places: in icache/dcache shrinkers (function super_cache_scan) and
> from writeback (function __writeback_inodes_wb). Both are required for
> progress in memory reclaimer.
>
> Also this lock isn't irq-safe. And I've seen suspicious livelock under
> serious memory pressure where reclaimer was called from interrupt which
> have happened right in place where sb_lock is held in normal context,
> so all other cpus were stuck on that lock too.
You mean someone is calling grab_super_passive() (ie: fs writeback)
from interrupt context? What's the call path?
> Grab_super_passive() acquires sb_lock to increment sb->s_count and check
> sb->s_instances. It seems sb->s_umount locked for read is enough here:
> super-block deactivation always runs under sb->s_umount locked for write.
> Protecting super-block itself isn't a problem: in super_cache_scan() sb
> is protected by shrinker_rwsem: it cannot be freed if its slab shrinkers
> are still active. Inside writeback super-block comes from inode from bdi
> writeback list under wb->list_lock.
>
> This patch removes locking sb_lock and checks s_instances under s_umount:
> generic_shutdown_super() unlinks it under sb->s_umount locked for write.
> Now successful grab_super_passive() only locks semaphore, callers must
> call up_read(&sb->s_umount) instead of drop_super(sb) when they're done.
>
The patch looks reasonable to me, but the grab_super_passive()
documentation needs further updating, please.
- It no longer "acquires a reference". All it does is to acquire an rwsem.
- What the heck is a "passive reference" anyway? It appears to be
the situation where we increment s_count without incrementing s_active.
After your patch, this superblock state no longer exists(?), so
perhaps the entire "passive reference" concept and any references to
it can be expunged from the kernel.
And grab_super_passive() should be renamed anyway. It no longer
"grabs" anything - it attempts to acquire ->s_umount.
"super_trylock", maybe?
- While we're dicking with the grab_super_passive() documentation,
let's turn it into kerneldoc by adding the /**.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2015-02-20 23:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-19 17:19 [PATCH] fs: avoid locking sb_lock in grab_super_passive() Konstantin Khlebnikov
2015-02-19 21:06 ` Konstantin Khlebnikov
2015-02-20 23:07 ` Andrew Morton [this message]
2015-02-20 23:50 ` Al Viro
2015-02-24 10:41 ` Konstantin Khlebnikov
2015-02-21 2:37 ` Al Viro
2015-02-24 9:19 ` Konstantin Khlebnikov
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=20150220150731.e79cd30dc6ecf3c7a3f5caa3@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=david@fromorbit.com \
--cc=khlebnikov@yandex-team.ru \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=viro@zeniv.linux.org.uk \
/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).