reiserfs-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Frederic Weisbecker <fweisbec@gmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Jarek Poplawski <jarkao2@gmail.com>,
	linux-kernel@vger.kernel.org, reiserfs-devel@vger.kernel.org,
	Christoph Hellwig <hch@lst.de>, Al Viro <viro@zeniv.linux.org.uk>
Subject: Re: [Bug] possible circular locking in reiserfs_unpack
Date: Thu, 9 Sep 2010 03:53:52 +0200	[thread overview]
Message-ID: <20100909015346.GA5999@nowhere> (raw)
In-Reply-To: <20100908153730.5ad13f71.akpm@linux-foundation.org>

On Wed, Sep 08, 2010 at 03:37:30PM -0700, Andrew Morton wrote:
> On Sun, 5 Sep 2010 13:31:21 +0200
> Jarek Poplawski <jarkao2@gmail.com> wrote:
> 
> > Hi,
> > I get this warning on every lilo write with 2.6.35.4 and a bit/git
> > later too.
> > 
> 
> Can you tell us the latest kernel version which did *not* have this
> bug?  That way we can narrow the problem down a bit.
> 
> Thanks.



Ah, when you see &REISERFS_SB(s)->lock in a bug report, don't hesitate to blame me :-)

This is a problem resulting from the bkl conversion to a mutex that introduced
a lot of new locking dependencies. Most of them have been fixed, but for less
tested paths like ioctl, we hear about it later.

Does the following patch fixes the issue?
If so, I'll make a proper changelog and put the appropriate 2.6.33-35 stable
tags for the backport.

Thnaks!


diff --git a/fs/reiserfs/ioctl.c b/fs/reiserfs/ioctl.c
index f53505d..679d502 100644
--- a/fs/reiserfs/ioctl.c
+++ b/fs/reiserfs/ioctl.c
@@ -188,7 +188,7 @@ int reiserfs_unpack(struct inode *inode, struct file *filp)
 	/* we need to make sure nobody is changing the file size beneath
 	 ** us
 	 */
-	mutex_lock(&inode->i_mutex);
+	reiserfs_mutex_lock_safe(&inode->i_mutex, inode->i_sb);
 	reiserfs_write_lock(inode->i_sb);
 
 	write_from = inode->i_size & (blocksize - 1);


  reply	other threads:[~2010-09-09  1:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-05 11:31 [Bug] possible circular locking in reiserfs_unpack Jarek Poplawski
2010-09-08 22:37 ` Andrew Morton
2010-09-09  1:53   ` Frederic Weisbecker [this message]
2010-09-09  6:07     ` Jarek Poplawski
2010-09-09 14:55     ` Jarek Poplawski
2010-09-09 15:34       ` Frederic Weisbecker
2010-09-22 13:49       ` Frederic Weisbecker
2010-09-22 17:22         ` Jarek Poplawski

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=20100909015346.GA5999@nowhere \
    --to=fweisbec@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=hch@lst.de \
    --cc=jarkao2@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=reiserfs-devel@vger.kernel.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).