diff options
Diffstat (limited to 'fs/btrfs/ctree.c')
-rw-r--r-- | fs/btrfs/ctree.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 3b767d2b68e8..36e16bd50798 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -474,7 +474,10 @@ static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, | |||
474 | BTRFS_FSID_SIZE); | 474 | BTRFS_FSID_SIZE); |
475 | 475 | ||
476 | ret = update_ref_for_cow(trans, root, buf, cow, &last_ref); | 476 | ret = update_ref_for_cow(trans, root, buf, cow, &last_ref); |
477 | BUG_ON(ret); | 477 | if (ret) { |
478 | btrfs_std_error(root->fs_info, ret); | ||
479 | return ret; | ||
480 | } | ||
478 | 481 | ||
479 | if (root->ref_cows) | 482 | if (root->ref_cows) |
480 | btrfs_reloc_cow_block(trans, root, buf, cow); | 483 | btrfs_reloc_cow_block(trans, root, buf, cow); |