From: Davidlohr Bueso <dave.bueso@gmail.com>
To: me@bobcopeland.com
Cc: linux-fsdevel@vger.kernel.org,
linux-karma-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: Re: [linux-karma-devel] [PATCH] omfs: fix memory leak
Date: Tue, 06 Jul 2010 00:50:58 -0400 [thread overview]
Message-ID: <1278391858.30082.3.camel@cowboy> (raw)
In-Reply-To: <20100705140008.GA3378@hash.localnet>
On Mon, 2010-07-05 at 10:00 -0400, me@bobcopeland.com wrote:
> On Mon, Jul 05, 2010 at 01:12:39AM -0400, Davidlohr Bueso wrote:
> > Isn't put_super() called to free data when things run "normally", like
> > for unmounting? So this function does two things:
>
> Ok, I checked it out and you are right, FS put_super is only called
> after successful mount so there is a leak. I'll take your patch,
> but please:
>
> - remove the /* success */ comment, IMO it's just noise
> - write the if conditional as the more usual:
> if (ret)
>
Ok, resending that patch with the corrections. Thanks.
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
---
fs/omfs/inode.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/omfs/inode.c b/fs/omfs/inode.c
index 089839a..b5d6380 100644
--- a/fs/omfs/inode.c
+++ b/fs/omfs/inode.c
@@ -529,6 +529,8 @@ out_brelse_bh2:
out_brelse_bh:
brelse(bh);
end:
+ if (ret)
+ kfree(sbi);
return ret;
}
--
1.7.0.4
> > kfree(sbi->s_imap)
> > kfree(sbi)
> >
> > However, in omfs_get_imap() 'sbi->s_imap' is freed upon failure, so
> > wouldn't this also crash on the first kfree in omfs_put_super()?
>
> This is ok, since sbi->s_imap is set to null in that case and
> kfree(NULL) is fine.
>
> Thanks for the review!
>
next prev parent reply other threads:[~2010-07-06 4:50 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-04 2:33 [PATCH] omfs: fix memory leak Davidlohr Bueso
2010-07-04 11:37 ` me
2010-07-05 5:12 ` Davidlohr Bueso
2010-07-05 14:00 ` me
2010-07-06 4:50 ` Davidlohr Bueso [this message]
2010-07-06 15:45 ` me
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=1278391858.30082.3.camel@cowboy \
--to=dave.bueso@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-karma-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=me@bobcopeland.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;
as well as URLs for NNTP newsgroup(s).