diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-21 13:19:54 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-21 14:16:43 -0400 |
commit | f43f256c58e07c52d684fbebece8e697349dd6db (patch) | |
tree | 7907d2433bf18d199f194b8922446584ec9e77f9 | |
parent | d0c3d7ceb202403ee641abb9cb21ec29ef6867f0 (diff) |
bcachefs: Delete duplicate time stats initialization
This code duplicated initialization already done in
bch2_fs_btree_iter_init().
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/super.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c index 0e85c22672be..646f67a589a4 100644 --- a/fs/bcachefs/super.c +++ b/fs/bcachefs/super.c @@ -960,12 +960,6 @@ int bch2_fs_start(struct bch_fs *c) bch2_dev_allocator_add(c, ca); bch2_recalc_capacity(c); - for (i = 0; i < BCH_TRANSACTIONS_NR; i++) { - mutex_lock(&c->btree_transaction_stats[i].lock); - bch2_time_stats_init(&c->btree_transaction_stats[i].lock_hold_times); - mutex_unlock(&c->btree_transaction_stats[i].lock); - } - ret = BCH_SB_INITIALIZED(c->disk_sb.sb) ? bch2_fs_recovery(c) : bch2_fs_initialize(c); |