From: Christoph Hellwig <hch@infradead.org>
To: "YOSHIFUJI Hideaki / ?$B5HF#1QL@" <yoshfuji@linux-ipv6.org>
Cc: gregkh@suse.de, linux-kernel@vger.kernel.org
Subject: Re: sysfs: release mutex when kmalloc() failed in sysfs_open_file().
Date: Tue, 10 Jul 2007 12:55:20 +0100 [thread overview]
Message-ID: <20070710115519.GA1519@infradead.org> (raw)
In-Reply-To: <20070710.135646.84167888.yoshfuji@linux-ipv6.org>
On Tue, Jul 10, 2007 at 01:56:46PM +0900, YOSHIFUJI Hideaki / ?$B5HF#1QL@ wrote:
> @@ -283,6 +283,7 @@ static int sysfs_open_file(struct inode *inode, struct file *file)
> mutex_lock(&inode->i_mutex);
> if (!(set = inode->i_private)) {
> if (!(set = inode->i_private = kmalloc(sizeof(struct sysfs_buffer_collection), GFP_KERNEL))) {
> + mutex_unlock(&inode->i_mutex);
> error = -ENOMEM;
> goto Done;
> } else {
Not related to your code, but whoever wrote this code originally deserves
a big slap in the face for writing such obsfucated code. This should be
something like:
mutex_lock(&inode->i_mutex);
set = inode->i_private;
if (!set) {
set = kmalloc(sizeof(struct sysfs_buffer_collection),
GFP_KERNEL))) {
if (!set)
mutex_unlock(&inode->i_mutex);
error = -ENOMEM;
goto Done;
}
INIT_LIST_HEAD(&set->associates);
inode->i_private = set;
}
mutex_unlock(&inode->i_mutex);
next prev parent reply other threads:[~2007-07-10 11:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-10 4:56 sysfs: release mutex when kmalloc() failed in sysfs_open_file() YOSHIFUJI Hideaki / 吉藤英明
2007-07-10 11:55 ` Christoph Hellwig [this message]
2007-07-13 5:24 ` Andrew Morton
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=20070710115519.GA1519@infradead.org \
--to=hch@infradead.org \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=yoshfuji@linux-ipv6.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