summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent-tree.c
diff options
context:
space:
mode:
authorLiu Bo2012-07-06 11:31:33 +0200
committerChris Mason2012-07-23 22:28:01 +0200
commit067893842341e7b7487062367ecfaa46c97505e0 (patch)
tree4e02d6bdb940623e11fd5b95d73a123ebc1a7de0 /fs/btrfs/extent-tree.c
parentBtrfs: kill root from btrfs_is_free_space_inode (diff)
downloadkernel-qcow2-linux-067893842341e7b7487062367ecfaa46c97505e0.tar.gz
kernel-qcow2-linux-067893842341e7b7487062367ecfaa46c97505e0.tar.xz
kernel-qcow2-linux-067893842341e7b7487062367ecfaa46c97505e0.zip
Btrfs: do not abort transaction in prealloc case
During disk balance, we prealloc new file extent for file data relocation, but we may fail in 'no available space' case, and it leads to flipping btrfs into readonly. It is not necessary to bail out and abort transaction since we do have several ways to rescue ourselves from ENOSPC case. Signed-off-by: Liu Bo <liubo2009@cn.fujitsu.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r--fs/btrfs/extent-tree.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index d1ebd2a06116..67bd12a52369 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -5748,7 +5748,11 @@ loop:
ret = do_chunk_alloc(trans, root, num_bytes +
2 * 1024 * 1024, data,
CHUNK_ALLOC_LIMITED);
- if (ret < 0) {
+ /*
+ * Do not bail out on ENOSPC since we
+ * can do more things.
+ */
+ if (ret < 0 && ret != -ENOSPC) {
btrfs_abort_transaction(trans,
root, ret);
goto out;