The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Dave Chinner <david@fromorbit.com>
To: Josh Boyer <jwboyer@gmail.com>
Cc: Miles Lane <miles.lane@gmail.com>,
	LKML <linux-kernel@vger.kernel.org>,
	"Theodore Ts'o" <tytso@mit.edu>,
	Andreas Dilger <adilger.kernel@dilger.ca>
Subject: Re: 3.1.0-rc3 -- INFO: possible circular locking dependency detected
Date: Tue, 23 Aug 2011 23:04:51 +1000	[thread overview]
Message-ID: <20110823130451.GD3162@dastard> (raw)
In-Reply-To: <CA+5PVA4bLOSOQ=Pvt25xY=8L_b07XnM-8UetHOxnbtgtY0o4_Q@mail.gmail.com>

On Tue, Aug 23, 2011 at 07:59:20AM -0400, Josh Boyer wrote:
> On Tue, Aug 23, 2011 at 7:49 AM, Dave Chinner <david@fromorbit.com> wrote:
> >> >  Possible unsafe locking scenario:
> >> >
> >> >       CPU0                    CPU1
> >> >       ----                    ----
> >> >  lock(&mm->mmap_sem);
> >> >                               lock(&sb->s_type->i_mutex_key);
> >> >                               lock(&mm->mmap_sem);
> >> >  lock(&sb->s_type->i_mutex_key);
> >> >
> >> >  *** DEADLOCK ***
> >>
> >> This one was reported yesterday: https://lkml.org/lkml/2011/8/21/163
> >> and we're hoping Ted (or someone else from the ext4 camp) can comment
> >> on why ext4_evict_inode is holding i_mutex.
> >
> > Actually, the problem has nothing to do with ext4. the problem is
> > that remove_vma() is holding the mmap_sem while calling fput(). The
> > correct locking order is i_mutex->mmap_sem, as documented in
> > mm/filemap.c:
> >
> >  *  ->i_mutex                   (generic_file_buffered_write)
> >  *    ->mmap_sem                (fault_in_pages_readable->do_page_fault)
> >
> >
> > The way remove_vma() calls fput() also triggers lockdep reports in
> > XFS and it will do so with any filesystem that takes an inode
> > specific lock in it's evict() processing. IOWs, remove_vma() needs
> > fixing, not ext4....
> 
> Er... ok.  So the remove_vma code hasn't changed since 2008.  We're
> only seeing this issue now because the debugging code has improved,
> or?

The problem has been there since at least 2008.  Here's an early
XFS report from 2.6.24:

http://oss.sgi.com/archives/xfs/2008-02/msg00931.html

Here's an XFS report
to match the ext4 one in this thread from 2009:

http://oss.sgi.com/archives/xfs/2009-03/msg00149.html

You won't find reports much older than this - it only started to be
reported when lockdep support in XFS matured and it started to be
widely used....

> At any rate, the proposed solution is to make remove_vma drop mmap_sem
> before calling fput, or make it not call fput, or?

Ask the VM folk - this is the only response I can remember from them
is this:

http://oss.sgi.com/archives/xfs/2009-03/msg00224.html

Maybe now that ext4 is hitting the problem something will be done
about it...

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

  reply	other threads:[~2011-08-23 13:05 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-23  4:39 3.1.0-rc3 -- INFO: possible circular locking dependency detected Miles Lane
2011-08-23 11:35 ` Josh Boyer
2011-08-23 11:49   ` Dave Chinner
2011-08-23 11:59     ` Josh Boyer
2011-08-23 13:04       ` Dave Chinner [this message]
2011-08-23 13:32         ` Josh Boyer
2011-08-24 22:31           ` Hugh Dickins
2011-08-25  0:03             ` Dave Chinner

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=20110823130451.GD3162@dastard \
    --to=david@fromorbit.com \
    --cc=adilger.kernel@dilger.ca \
    --cc=jwboyer@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miles.lane@gmail.com \
    --cc=tytso@mit.edu \
    /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