aboutsummaryrefslogtreecommitdiff
path: root/fs/bcachefs/subvolume.c
diff options
context:
space:
mode:
authorGravatar Kent Overstreet <kent.overstreet@gmail.com> 2022-01-08 19:07:32 -0500
committerGravatar Kent Overstreet <kent.overstreet@linux.dev> 2023-10-22 17:09:22 -0400
commitc4ecf802fbfae032730caf40fd74fb27c057a916 (patch)
treea6802081ed01cdcb0467dcc94cac085dd2e049c6 /fs/bcachefs/subvolume.c
parentbcachefs: Use BTREE_INSERT_USE_RESERVE in btree_update_key() (diff)
downloadlinux-c4ecf802fbfae032730caf40fd74fb27c057a916.tar.gz
linux-c4ecf802fbfae032730caf40fd74fb27c057a916.tar.bz2
linux-c4ecf802fbfae032730caf40fd74fb27c057a916.zip
bcachefs: Fix an error path in bch2_snapshot_node_create()
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/subvolume.c')
-rw-r--r--fs/bcachefs/subvolume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/subvolume.c b/fs/bcachefs/subvolume.c
index 8aeb2e417a15..012d8e8c52c4 100644
--- a/fs/bcachefs/subvolume.c
+++ b/fs/bcachefs/subvolume.c
@@ -522,7 +522,7 @@ static int bch2_snapshot_node_create(struct btree_trans *trans, u32 parent,
n = bch2_trans_kmalloc(trans, sizeof(*n));
ret = PTR_ERR_OR_ZERO(n);
if (ret)
- return ret;
+ goto err;
bkey_reassemble(&n->k_i, k);