mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08:00
Btrfs: process all async extents on compressed write failure
If we had an error when processing one of the async extents from our list, we were not processing the remaining async extents, meaning we would leak those async_extent structs, never release the pages with the compressed data and never unlock and clear the dirty flag from the inode's pages (those that correspond to the uncompressed content). Signed-off-by: Filipe Manana <fdmanana@suse.com> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
40ae837b43
commit
3d7a820f71
@ -839,13 +839,9 @@ retry:
|
|||||||
}
|
}
|
||||||
alloc_hint = ins.objectid + ins.offset;
|
alloc_hint = ins.objectid + ins.offset;
|
||||||
kfree(async_extent);
|
kfree(async_extent);
|
||||||
if (ret)
|
|
||||||
goto out;
|
|
||||||
cond_resched();
|
cond_resched();
|
||||||
}
|
}
|
||||||
ret = 0;
|
return 0;
|
||||||
out:
|
|
||||||
return ret;
|
|
||||||
out_free_reserve:
|
out_free_reserve:
|
||||||
btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
|
btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
|
||||||
out_free:
|
out_free:
|
||||||
|
Loading…
Reference in New Issue
Block a user