summaryrefslogtreecommitdiff
path: root/fs/btrfs/transaction.c
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fusionio.com>2012-12-18 14:16:16 (GMT)
committerJosef Bacik <jbacik@fusionio.com>2013-02-20 14:37:09 (GMT)
commitc6b305a89b1903d63652691ad5eb9f05aa0326b8 (patch)
tree2b16ef4fb5c23e64ef0d0092674ebfaee3ac54d2 /fs/btrfs/transaction.c
parent2ab28f322f9896782da904f5942f3873432addc8 (diff)
downloadlinux-fsl-qoriq-c6b305a89b1903d63652691ad5eb9f05aa0326b8.tar.xz
Btrfs: don't re-enter when allocating a chunk
If we start running low on metadata space we will try to allocate a chunk, which could then try to allocate a chunk to add the device entry. The thing is we allocate a chunk before we try really hard to make the allocation, so we should be able to find space for the device entry. Add a flag to the trans handle so we know we're currently allocating a chunk so we can just bail out if we try to allocate another chunk. Thanks, Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/transaction.c')
-rw-r--r--fs/btrfs/transaction.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index 86bb105..24fde97 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -385,6 +385,7 @@ again:
h->qgroup_reserved = qgroup_reserved;
h->delayed_ref_elem.seq = 0;
h->type = type;
+ h->allocating_chunk = false;
INIT_LIST_HEAD(&h->qgroup_ref_list);
INIT_LIST_HEAD(&h->new_bgs);