mirror of
https://github.com/torvalds/linux.git
synced 2025-11-01 00:58:39 +02:00
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 <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
a83134b48a
commit
d2080c7a00
1 changed files with 3 additions and 3 deletions
|
|
@ -577,7 +577,7 @@ void btrfs_submit_compressed_read(struct btrfs_bio *bbio)
|
||||||
unsigned long pflags;
|
unsigned long pflags;
|
||||||
int memstall = 0;
|
int memstall = 0;
|
||||||
blk_status_t status;
|
blk_status_t status;
|
||||||
int ret2;
|
int ret;
|
||||||
|
|
||||||
/* we need the actual starting offset of this extent in the file */
|
/* we need the actual starting offset of this extent in the file */
|
||||||
read_lock(&em_tree->lock);
|
read_lock(&em_tree->lock);
|
||||||
|
|
@ -612,8 +612,8 @@ void btrfs_submit_compressed_read(struct btrfs_bio *bbio)
|
||||||
goto out_free_bio;
|
goto out_free_bio;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret2 = btrfs_alloc_folio_array(cb->nr_folios, cb->compressed_folios);
|
ret = btrfs_alloc_folio_array(cb->nr_folios, cb->compressed_folios);
|
||||||
if (ret2) {
|
if (ret) {
|
||||||
status = BLK_STS_RESOURCE;
|
status = BLK_STS_RESOURCE;
|
||||||
goto out_free_compressed_pages;
|
goto out_free_compressed_pages;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue