From: Akinobu Mita <akinobu.mita@gmail.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: linux-kernel@vger.kernel.org, Joel Becker <joel.becker@oracle.com>
Subject: Re: [PATCH] configfs: add missing mutex_unlock()
Date: Mon, 5 Mar 2007 00:16:59 +0900 [thread overview]
Message-ID: <20070304151659.GA19972@APFDCB5C> (raw)
In-Reply-To: <200703041510.20127.arnd@arndb.de>
On Sun, Mar 04, 2007 at 03:10:19PM +0100, Arnd Bergmann wrote:
> On Sunday 04 March 2007 14:38:12 Akinobu Mita wrote:
> > @@ -1168,8 +1168,10 @@ int configfs_register_subsystem(struct c
> >
> > err = -ENOMEM;
> > dentry = d_alloc(configfs_sb->s_root, &name);
> > - if (!dentry)
> > + if (!dentry) {
> > + mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
> > goto out_release;
> > + }
> >
> > d_add(dentry, NULL);
>
> This should be changed to jump to a new exit point, before the mutex_unlock
> at the end of the function. Having multiple places in the function that
> release the same lock easily leads to the kind of bug you are fixing here.
Agreed. Please see the patch below (untested).
Index: 2.6-mm/fs/configfs/dir.c
===================================================================
--- 2.6-mm.orig/fs/configfs/dir.c
+++ 2.6-mm/fs/configfs/dir.c
@@ -1169,25 +1169,26 @@ int configfs_register_subsystem(struct c
err = -ENOMEM;
dentry = d_alloc(configfs_sb->s_root, &name);
if (!dentry)
- goto out_release;
+ goto out_unlock;
d_add(dentry, NULL);
err = configfs_attach_group(sd->s_element, &group->cg_item,
dentry);
- if (!err)
- dentry = NULL;
- else
- d_delete(dentry);
+ if (err)
+ goto out_d_delete;
mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
- if (dentry) {
- dput(dentry);
-out_release:
- unlink_group(group);
- configfs_release_fs();
- }
+ return 0;
+
+out_d_delete:
+ d_delete(dentry);
+ dput(dentry);
+out_unlock:
+ mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
+ unlink_group(group);
+ configfs_release_fs();
return err;
}
next prev parent reply other threads:[~2007-03-04 15:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-04 13:38 [PATCH] configfs: add missing mutex_unlock() Akinobu Mita
2007-03-04 14:10 ` Arnd Bergmann
2007-03-04 15:16 ` Akinobu Mita [this message]
2007-03-05 21:42 ` Joel Becker
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=20070304151659.GA19972@APFDCB5C \
--to=akinobu.mita@gmail.com \
--cc=arnd@arndb.de \
--cc=joel.becker@oracle.com \
--cc=linux-kernel@vger.kernel.org \
/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