summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/volumes.c
diff options
context:
space:
mode:
authorMark Fasheh2011-07-12 20:10:23 +0200
committerMark Fasheh2011-07-14 23:14:45 +0200
commit17e9f796bd92cddec17d781c459376f82340fa44 (patch)
tree14c360f6adaef5c83299ec49fe2fb00dbafea1ee /fs/btrfs/volumes.c
parentbtrfs: Don't BUG_ON alloc_path errors in btrfs_read_locked_inode (diff)
downloadkernel-qcow2-linux-17e9f796bd92cddec17d781c459376f82340fa44.tar.gz
kernel-qcow2-linux-17e9f796bd92cddec17d781c459376f82340fa44.tar.xz
kernel-qcow2-linux-17e9f796bd92cddec17d781c459376f82340fa44.zip
btrfs: Don't BUG_ON alloc_path errors in btrfs_balance()
Dealing with this seems trivial - the only caller of btrfs_balance() is btrfs_ioctl() which passes the error code directly back to userspace. There also isn't much state to unwind (if I'm wrong about this point, we can always safely move the allocation to the top of btrfs_balance() anyway). Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r--fs/btrfs/volumes.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 19450bc53632..530a2fcea1ef 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -2061,8 +2061,10 @@ int btrfs_balance(struct btrfs_root *dev_root)
/* step two, relocate all the chunks */
path = btrfs_alloc_path();
- BUG_ON(!path);
-
+ if (!path) {
+ ret = -ENOMEM;
+ goto error;
+ }
key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
key.offset = (u64)-1;
key.type = BTRFS_CHUNK_ITEM_KEY;