From: Daniel J Blueman Date: Wed, 9 Mar 2011 16:46:42 +0000 (+0000) Subject: btrfs: fix dip leak X-Git-Tag: v2.6.38~13^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4966b7770349deb05e3dd2bd2c65d2d044abbbb;p=platform%2Fupstream%2Fkernel-adaptation-pc.git btrfs: fix dip leak The btrfs DIO code leaks dip structs when dip->csums allocation fails; bio->bi_end_io isn't set at the point where the free_ordered branch is consequently taken, thus bio_endio doesn't call the function which would free it in the normal case. Fix. Signed-off-by: Daniel J Blueman Acked-by: Miao Xie Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 44b9266..e7a8303 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -6058,6 +6058,7 @@ static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode, if (!skip_sum) { dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS); if (!dip->csums) { + kfree(dip); ret = -ENOMEM; goto free_ordered; }