Btrfs: Fix space checking during fs resize
Fix out-of-space checking, addressing a warning and potential resource leak when resizing the filesystem down while allocating blocks. Signed-off-by: Daniel J Blueman <daniel@quora.org> Reviewed-by: Josef Bacik <josef@redhat.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
1f699d38b6
commit
7654b72417
|
@ -3813,7 +3813,7 @@ restart:
|
||||||
|
|
||||||
ret = btrfs_block_rsv_check(rc->extent_root, rc->block_rsv, 5);
|
ret = btrfs_block_rsv_check(rc->extent_root, rc->block_rsv, 5);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
if (ret != -EAGAIN) {
|
if (ret != -ENOSPC) {
|
||||||
err = ret;
|
err = ret;
|
||||||
WARN_ON(1);
|
WARN_ON(1);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue