diff options
author | Tao Ma <tao.ma@oracle.com> | 2009-08-12 14:42:47 +0800 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2009-08-17 12:50:35 -0700 |
commit | 60e2ec48665b8495360ca4a6004c5cd52beb2bc1 (patch) | |
tree | dbd938e337b3191bbe16336cb414b9d55c5fdc81 /fs/ocfs2/alloc.c | |
parent | ada508274b8698a33cb0e5bd037db0f9dc781795 (diff) | |
download | kernel_samsung_smdk4412-60e2ec48665b8495360ca4a6004c5cd52beb2bc1.zip kernel_samsung_smdk4412-60e2ec48665b8495360ca4a6004c5cd52beb2bc1.tar.gz kernel_samsung_smdk4412-60e2ec48665b8495360ca4a6004c5cd52beb2bc1.tar.bz2 |
ocfs2: release the buffer head in ocfs2_do_truncate.
In ocfs2_do_truncate, we forget to release last_eb_bh which
will cause memleak. So call brelse in the end.
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.c')
-rw-r--r-- | fs/ocfs2/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index f9a3e89..ab513dd 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c @@ -6851,7 +6851,7 @@ static int ocfs2_do_truncate(struct ocfs2_super *osb, } status = 0; bail: - + brelse(last_eb_bh); mlog_exit(status); return status; } |