Skip to content
Snippets Groups Projects
Commit c37b2b62 authored by Josef Bacik's avatar Josef Bacik Committed by Chris Mason
Browse files

Btrfs: do not bug when we fail to commit the transaction


We BUG if we fail to commit the transaction when creating a snapshot, which
is just obnoxious.  Remove the BUG_ON().  Thanks,

Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
parent 7bfdcf7f
No related branches found
No related tags found
No related merge requests found
......@@ -571,7 +571,8 @@ static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
ret = btrfs_commit_transaction(trans,
root->fs_info->extent_root);
}
BUG_ON(ret);
if (ret)
goto fail;
ret = pending_snapshot->error;
if (ret)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment