diff options
author | Chris Mason <chris.mason@oracle.com> | 2010-10-30 07:34:24 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2010-10-30 07:34:24 -0400 |
commit | 6418c96107a2b399848bb8cfc6e29f11ca74fb94 (patch) | |
tree | 38064798bde148760a7a3b555c0eb097bfd29fb2 /fs | |
parent | 4260f7c7516f4c209cf0ca34fda99cc9a0847772 (diff) |
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 <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, | |||
2676 | 2676 | ||
2677 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, | 2677 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, |
2678 | dir, index); | 2678 | dir, index); |
2679 | BUG_ON(ret); | 2679 | if (ret == -ENOENT) |
2680 | ret = 0; | ||
2680 | err: | 2681 | err: |
2681 | btrfs_free_path(path); | 2682 | btrfs_free_path(path); |
2682 | if (ret) | 2683 | if (ret) |