From: David Sterba Date: Wed, 23 Apr 2025 15:57:22 +0000 (+0200) Subject: btrfs: rename ret2 to ret in btrfs_submit_compressed_read() X-Git-Tag: block-6.16-20250606~42^2~92 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d2080c7a00cf3ec39ecf5ee6f835c7560bd2ab3f;p=linux-block.git btrfs: rename ret2 to ret in btrfs_submit_compressed_read() We can now rename 'ret2' to 'ret' and use it for generic errors. Reviewed-by: Qu Wenruo Signed-off-by: David Sterba --- diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index 3620da19a8dd..48d07939fee4 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c @@ -577,7 +577,7 @@ void btrfs_submit_compressed_read(struct btrfs_bio *bbio) unsigned long pflags; int memstall = 0; blk_status_t status; - int ret2; + int ret; /* we need the actual starting offset of this extent in the file */ read_lock(&em_tree->lock); @@ -612,8 +612,8 @@ void btrfs_submit_compressed_read(struct btrfs_bio *bbio) goto out_free_bio; } - ret2 = btrfs_alloc_folio_array(cb->nr_folios, cb->compressed_folios); - if (ret2) { + ret = btrfs_alloc_folio_array(cb->nr_folios, cb->compressed_folios); + if (ret) { status = BLK_STS_RESOURCE; goto out_free_compressed_pages; }