From: Goldwyn Rodrigues Date: Fri, 14 Jul 2023 15:18:19 +0000 (-0500) Subject: btrfs: remove duplicate free_async_extent_pages() on reservation error X-Git-Tag: v6.6-rc1~207^2~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75d305c55b130bae5077ec262440240fec4e6281;p=thirdparty%2Flinux.git btrfs: remove duplicate free_async_extent_pages() on reservation error While performing compressed writes, if the extent reservation fails, the async extent pages are first freed in the error check for return value ret, and then again at out_free label. Remove the first call to free_async_extent_pages(). Reviewed-by: Josef Bacik Signed-off-by: Goldwyn Rodrigues Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index aa090b0b5d298..5508597be6140 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1217,7 +1217,6 @@ static int submit_one_async_extent(struct btrfs_inode *inode, async_extent->compressed_size, 0, *alloc_hint, &ins, 1, 1); if (ret) { - free_async_extent_pages(async_extent); /* * Here we used to try again by going back to non-compressed * path for ENOSPC. But we can't reserve space even for