summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-09-20 08:20:40 +0300
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-23 00:10:14 +0300
commitd04fdf5c1017b9ebfd45efbcc2c8cd95f7f4e30d (patch)
tree930a0ce325208827ff74f5a811a7c62b95d5ddfc /fs
parent97ecc23632fad75c43809b3f5010800289884a08 (diff)
downloadlinux-d04fdf5c1017b9ebfd45efbcc2c8cd95f7f4e30d.tar.xz
bcachefs: snapshots: Use kvfree_rcu_mightsleep()
kvfree_rcu() was renamed - not removed. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs')
-rw-r--r--fs/bcachefs/snapshot.c24
1 files changed, 2 insertions, 22 deletions
diff --git a/fs/bcachefs/snapshot.c b/fs/bcachefs/snapshot.c
index 0acfca00a6af..f27e8c4fc10a 100644
--- a/fs/bcachefs/snapshot.c
+++ b/fs/bcachefs/snapshot.c
@@ -143,20 +143,6 @@ bool __bch2_snapshot_is_ancestor(struct bch_fs *c, u32 id, u32 ancestor)
return ret;
}
-struct snapshot_t_free_rcu {
- struct rcu_head rcu;
- struct snapshot_table *t;
-};
-
-static void snapshot_t_free_rcu(struct rcu_head *rcu)
-{
- struct snapshot_t_free_rcu *free_rcu =
- container_of(rcu, struct snapshot_t_free_rcu, rcu);
-
- kvfree(free_rcu->t);
- kfree(free_rcu);
-}
-
static noinline struct snapshot_t *__snapshot_t_mut(struct bch_fs *c, u32 id)
{
size_t idx = U32_MAX - id;
@@ -177,13 +163,7 @@ static noinline struct snapshot_t *__snapshot_t_mut(struct bch_fs *c, u32 id)
rcu_assign_pointer(c->snapshots, new);
c->snapshot_table_size = new_size;
- if (old) {
- struct snapshot_t_free_rcu *rcu =
- kmalloc(sizeof(*rcu), GFP_KERNEL|__GFP_NOFAIL);
-
- rcu->t = old;
- call_rcu(&rcu->rcu, snapshot_t_free_rcu);
- }
+ kvfree_rcu_mightsleep(old);
return &rcu_dereference_protected(c->snapshots, true)->s[idx];
}
@@ -1638,7 +1618,7 @@ int bch2_propagate_key_to_snapshot_leaves(struct btree_trans *trans,
struct bch_fs *c = trans->c;
struct bkey_buf sk;
u32 restart_count = trans->restart_count;
- int ret;
+ int ret = 0;
bch2_bkey_buf_init(&sk);
bch2_bkey_buf_reassemble(&sk, c, k);