diff options
Diffstat (limited to 'libbcachefs/super.c')
-rw-r--r-- | libbcachefs/super.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libbcachefs/super.c b/libbcachefs/super.c index 0f189c9d..0f3a924c 100644 --- a/libbcachefs/super.c +++ b/libbcachefs/super.c @@ -1040,12 +1040,13 @@ int bch2_fs_start(struct bch_fs *c) } ret = 0; -out: +err: + if (ret) + bch_err_msg(c, ret, "starting filesystem"); + else + bch_verbose(c, "done starting filesystem"); up_write(&c->state_lock); return ret; -err: - bch_err_msg(c, ret, "starting filesystem"); - goto out; } static int bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c) |