Commit 883f1a7c authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: Dont't del sysfs dir until after we go RO

This will help for debugging hangs during unmount
Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 38f0664a
......@@ -518,6 +518,10 @@ void bch2_fs_stop(struct bch_fs *c)
cancel_work_sync(&c->journal_seq_blacklist_gc_work);
mutex_lock(&c->state_lock);
bch2_fs_read_only(c);
mutex_unlock(&c->state_lock);
for_each_member_device(ca, c, i)
if (ca->kobj.state_in_sysfs &&
ca->disk_sb.bdev)
......@@ -540,10 +544,6 @@ void bch2_fs_stop(struct bch_fs *c)
closure_sync(&c->cl);
closure_debug_destroy(&c->cl);
mutex_lock(&c->state_lock);
bch2_fs_read_only(c);
mutex_unlock(&c->state_lock);
/* btree prefetch might have kicked off reads in the background: */
bch2_btree_flush_all_reads(c);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment