summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorYang Ruirui2011-04-17 01:17:48 +0200
committerTheodore Ts'o2011-04-17 01:17:48 +0200
commit26626f1172fb4f3f323239a6a5cf4e082643fa46 (patch)
treea1b11f012bd0807b771651c73b701475a8309bee /fs/ext4
parentLinux 2.6.39-rc3 (diff)
downloadkernel-qcow2-linux-26626f1172fb4f3f323239a6a5cf4e082643fa46.tar.gz
kernel-qcow2-linux-26626f1172fb4f3f323239a6a5cf4e082643fa46.tar.xz
kernel-qcow2-linux-26626f1172fb4f3f323239a6a5cf4e082643fa46.zip
ext4: release page cache in ext4_mb_load_buddy error path
Add missing page_cache_release in the error path of ext4_mb_load_buddy Signed-off-by: Yang Ruirui <ruirui.r.yang@tieto.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/mballoc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index d8a16eecf1d5..15bfa44abd29 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -1273,6 +1273,8 @@ repeat_load_buddy:
return 0;
err:
+ if (page)
+ page_cache_release(page);
if (e4b->bd_bitmap_page)
page_cache_release(e4b->bd_bitmap_page);
if (e4b->bd_buddy_page)