bcachefs: Don't return -EROFS from mount on inconsistency error
authorKent Overstreet <kent.overstreet@linux.dev>
Tue, 28 May 2024 23:21:59 +0000 (19:21 -0400)
committerKent Overstreet <kent.overstreet@linux.dev>
Tue, 28 May 2024 23:23:03 +0000 (19:23 -0400)
We were accidentally returning -EROFS during recovery on filesystem
inconsistency - since this is what the journal returns on emergency
shutdown.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/fs.c

index 96040a95cf4667069ad8dac4cc02a56f45382dc8..cd388f1702dc85a98f2d5b05db518ea66e77243a 100644 (file)
@@ -1939,8 +1939,7 @@ got_sb:
 
        if (IS_ERR(sb)) {
                ret = PTR_ERR(sb);
-               ret = bch2_err_class(ret);
-               return ERR_PTR(ret);
+               goto err;
        }
 
        c = sb->s_fs_info;
@@ -2016,6 +2015,15 @@ out:
 err_put_super:
        __bch2_fs_stop(c);
        deactivate_locked_super(sb);
+err:
+       /*
+        * On an inconsistency error in recovery we might see an -EROFS derived
+        * errorcode (from the journal), but we don't want to return that to
+        * userspace as that causes util-linux to retry the mount RO - which is
+        * confusing:
+        */
+       if (bch2_err_matches(ret, EROFS) && ret != -EROFS)
+               ret = -EIO;
        return ERR_PTR(bch2_err_class(ret));
 }