diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-06-27 06:10:21 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-23 00:10:05 +0300 |
commit | 0ce4e0e759614ec19b140e8f19a67305c01cca78 (patch) | |
tree | f9c87809cf1e85962f651f115a9c0bf5188a9f5f /fs/bcachefs/movinggc.c | |
parent | 0fb3355d0a3b055af8735fa25b5af63f4dd9a034 (diff) | |
download | linux-0ce4e0e759614ec19b140e8f19a67305c01cca78.tar.xz |
bcachefs: Add a missing rhashtable_destroy() call
Fixes https://lore.kernel.org/linux-bcachefs/784c3e6a-75bd-e6ca-535a-43b3e1daf643@kernel.dk/T/#mbf7caf005f960018eba23b58795d06c06c947411
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/movinggc.c')
-rw-r--r-- | fs/bcachefs/movinggc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/movinggc.c b/fs/bcachefs/movinggc.c index 7ef78cccc65c..5ea512968f4d 100644 --- a/fs/bcachefs/movinggc.c +++ b/fs/bcachefs/movinggc.c @@ -369,6 +369,7 @@ static int bch2_copygc_thread(void *arg) } move_buckets_wait(&trans, &ctxt, &move_buckets, true); + rhashtable_destroy(&move_buckets.table); bch2_trans_exit(&trans); bch2_moving_ctxt_exit(&ctxt); |