Commit 3cd846d1 authored by Miao Xie's avatar Miao Xie Committed by Chris Mason

Btrfs, raid56: fix memory leak when allocating pages for p/q stripes failed

Signed-off-by: default avatarMiao Xie <miaox@cn.fujitsu.com>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
Signed-off-by: default avatarChris Mason <chris.mason@fusionio.com>
parent 3dc0e818
...@@ -1540,8 +1540,10 @@ static int full_stripe_write(struct btrfs_raid_bio *rbio) ...@@ -1540,8 +1540,10 @@ static int full_stripe_write(struct btrfs_raid_bio *rbio)
int ret; int ret;
ret = alloc_rbio_parity_pages(rbio); ret = alloc_rbio_parity_pages(rbio);
if (ret) if (ret) {
__free_raid_bio(rbio);
return ret; return ret;
}
ret = lock_stripe_add(rbio); ret = lock_stripe_add(rbio);
if (ret == 0) if (ret == 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment