btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range()
authorMark Fasheh <mfasheh@suse.com>
Fri, 5 Aug 2011 22:46:16 +0000 (15:46 -0700)
committerDavid Sterba <dsterba@suse.cz>
Thu, 22 Mar 2012 00:45:37 +0000 (01:45 +0100)
commit0678b61851b510ba68341dff59cd9b47e1712e91
treee8e8199ee3929e508c42bea39a3eeb122246626c
parentbe1a5564fd39fa2ca6adbb41c75fb08f96a1ffcb
btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range()

Unfortunately it isn't enough to just exit here - the kzalloc() happens in a
loop and the allocated items are added to a linked list whose head is passed
in from the caller.

To fix the BUG_ON() and also provide the semantic that the list passed in is
only modified on success, I create function-local temporary list that we add
items too. If no error is met, that list is spliced to the callers at the
end of the function. Otherwise the list will be walked and all items freed
before the error value is returned.

I did a simple test on this patch by forcing an error at the kzalloc() point
and verifying that when this hits (git clone seemed to exercise this), the
function throws the proper error. Unfortunately but predictably, we later
hit a BUG_ON(ret) type line that still hasn't been fixed up ;)

Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/btrfs/file-item.c