public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Wengang Wang <wen.gang.wang@oracle.com>
Cc: stable@kernel.org, greg.marsden@oracle.com, joe.jin@oracle.com,
	linux-kernel@vger.kernel.org
Subject: Re: [stable] [PATCH] mm: prevent concurrent unmap_mapping_range() on the same inode --to stable
Date: Thu, 7 Jul 2011 16:55:47 -0700	[thread overview]
Message-ID: <20110707235547.GA1119@kroah.com> (raw)
In-Reply-To: <201106240702.p5O72bkH003998@acsmt358.oracle.com>

On Fri, Jun 24, 2011 at 03:02:08PM +0800, Wengang Wang wrote:
>         mainline commit 2aa15890f3c191326678f1bd68af61ec6b8753ec
> 
>     mm: prevent concurrent unmap_mapping_range() on the same inode
> 
>     Michael Leun reported that running parallel opens on a fuse filesystem
>     can trigger a "kernel BUG at mm/truncate.c:475"
> 
>     Gurudas Pai reported the same bug on NFS.
> 
>     The reason is, unmap_mapping_range() is not prepared for more than
>     one concurrent invocation per inode.  For example:
> 
>       thread1: going through a big range, stops in the middle of a vma and
>          stores the restart address in vm_truncate_count.
> 
>       thread2: comes in with a small (e.g. single page) unmap request on
>          the same vma, somewhere before restart_address, finds that the
>          vma was already unmapped up to the restart address and happily
>          returns without doing anything.
> 
>     Another scenario would be two big unmap requests, both having to
>     restart the unmapping and each one setting vm_truncate_count to its
>     own value.  This could go on forever without any of them being able to
>     finish.
> 
>     Truncate and hole punching already serialize with i_mutex.  Other
>     callers of unmap_mapping_range() do not, and it's difficult to get
>     i_mutex protection for all callers.  In particular ->d_revalidate(),
>     which calls invalidate_inode_pages2_range() in fuse, may be called
>     with or without i_mutex.
> 
>     This patch adds a new mutex to 'struct address_space' to prevent
>     running multiple concurrent unmap_mapping_range() on the same mapping.
> 
>     [ We'll hopefully get rid of all this with the upcoming mm
>       preemptibility series by Peter Zijlstra, the "mm: Remove i_mmap_mutex
>       lockbreak" patch in particular.  But that is for 2.6.39 ]
> 
> 
>     Adding this patch causes Kabi breakage.
> 
>     Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
>     Reported-by: Michael Leun <lkml20101129@newton.leun.net>
>     Reported-by: Gurudas Pai <gurudas.pai@oracle.com>
>     Tested-by: Gurudas Pai <gurudas.pai@oracle.com>
>     Acked-by: Hugh Dickins <hughd@google.com>
>     Cc: stable@kernel.org
>     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
>     Signed-off-by: Wengang Wang <wen.gang.wang@oracle.com>

As this patch showed up in 2.6.39, I'm confused as to what you wanted me
to do with it, so I've dropped it from my queue.

greg k-h

  reply	other threads:[~2011-07-07 23:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-24  7:02 [PATCH] mm: prevent concurrent unmap_mapping_range() on the same inode --to stable Wengang Wang
2011-07-07 23:55 ` Greg KH [this message]
2011-07-08  1:26   ` [stable] " Wengang Wang
2011-07-08  1:41     ` Greg KH

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=20110707235547.GA1119@kroah.com \
    --to=greg@kroah.com \
    --cc=greg.marsden@oracle.com \
    --cc=joe.jin@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@kernel.org \
    --cc=wen.gang.wang@oracle.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