From: Chris Mason Date: Sat, 30 Oct 2010 11:34:24 +0000 (-0400) Subject: Btrfs: deal with errors from updating the tree log X-Git-Tag: v2.6.37-rc1~19^2 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Flinux.git;a=commitdiff_plain;h=6418c96107a2b399848bb8cfc6e29f11ca74fb94 Btrfs: deal with errors from updating the tree log During unlink we remove any references to the inode from the tree log. It can return -ENOENT and other errors, and this changes the unlink code to deal with it. Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 609f3bbbd1ed..5132c9af888a 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -2676,7 +2676,8 @@ int btrfs_unlink_inode(struct btrfs_trans_handle *trans, ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir, index); - BUG_ON(ret); + if (ret == -ENOENT) + ret = 0; err: btrfs_free_path(path); if (ret)