]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: Don't BUG_ON alloc_path errors in find_next_chunk
authorMark Fasheh <mfasheh@suse.com>
Tue, 12 Jul 2011 17:57:59 +0000 (10:57 -0700)
committerMark Fasheh <mfasheh@suse.com>
Mon, 25 Jul 2011 21:34:54 +0000 (14:34 -0700)
commit5c6dd54ce73f8cfab5d2f70ed5ad1f462d045a68
tree54988ee036e1dfe3297b0b4e0dfe6323568bf02e
parent3d15616cba270a327d681ec092753eb45b08c259
btrfs: Don't BUG_ON alloc_path errors in find_next_chunk

I also removed the BUG_ON from error return of find_next_chunk in
init_first_rw_device(). It turns out that the only caller of
init_first_rw_device() also BUGS on any nonzero return so no actual behavior
change has occurred here.

do_chunk_alloc() also needed an update since it calls btrfs_alloc_chunk()
which can now return -ENOMEM. Instead of setting space_info->full on any
error from btrfs_alloc_chunk() I catch and return every error value _except_
-ENOSPC. Thanks goes to Tsutomu Itoh for pointing that issue out.

Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/btrfs/extent-tree.c
fs/btrfs/volumes.c