Skip to content

Commit 35100ae

Browse files
committed
Merge patch series "fs/super.c: introduce get_tree_bdev_flags()"
Allison Karlitskaya <[email protected]> says: In context of my work on composefs/bootc I've been testing the new support for directly mounting files with erofs (ie: without a loopback device) and it's working well. Thanks for adding this feature --- it's a huge quality of life improvement for us. I've observed a strange behaviour, though: when mounting a file as an erofs, if you read() the filesystem context fd, you always get the following error message reported: Can't lookup blockdev. That's caused by the code in erofs_fc_get_tree() trying to call get_tree_bdev() and recovering from the error in case it was ENOTBLK and CONFIG_EROFS_FS_BACKED_BY_FILE. Unfortunately, get_tree_bdev() logs the error directly on the fs_context, so you get the error message even on successful mounts. It looks something like this at the syscall level: fsopen("erofs", FSOPEN_CLOEXEC) = 3 fsconfig(3, FSCONFIG_SET_FLAG, "ro", NULL, 0) = 0 fsconfig(3, FSCONFIG_SET_STRING, "source", "/home/lis/src/mountcfs/cfs", 0) = 0 fsconfig(3, FSCONFIG_CMD_CREATE, NULL, NULL, 0) = 0 fsmount(3, FSMOUNT_CLOEXEC, 0) = 5 move_mount(5, "", AT_FDCWD, "/tmp/composefs.upper.KuT5aV", MOVE_MOUNT_F_EMPTY_PATH) = 0 read(3, "e /home/lis/src/mountcfs/cfs: Can't lookup blockdev\n", 1024) = 52 This is kernel 6.12.0-0.rc0.20240926git11a299a7933e.13.fc42.x86_64 from Fedora Rawhide. It's a pretty minor issue, but it sent me on a wild goose chase for an hour or two, so probably it should get fixed before the final release. Gao Xiang <[email protected]>: Fix this by providing a get_tree_bdev_flags() helper which can be used to silence such warnings. * patches from https://lore.kernel.org/r/[email protected]: erofs: use get_tree_bdev_flags() to avoid misleading messages fs/super.c: introduce get_tree_bdev_flags() Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Christian Brauner <[email protected]>
2 parents 42f7652 + 14c2d97 commit 35100ae

File tree

3 files changed

+29
-7
lines changed

3 files changed

+29
-7
lines changed

fs/erofs/super.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,9 @@ static int erofs_fc_get_tree(struct fs_context *fc)
709709
if (IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) && sbi->fsid)
710710
return get_tree_nodev(fc, erofs_fc_fill_super);
711711

712-
ret = get_tree_bdev(fc, erofs_fc_fill_super);
712+
ret = get_tree_bdev_flags(fc, erofs_fc_fill_super,
713+
IS_ENABLED(CONFIG_EROFS_FS_BACKED_BY_FILE) ?
714+
GET_TREE_BDEV_QUIET_LOOKUP : 0);
713715
#ifdef CONFIG_EROFS_FS_BACKED_BY_FILE
714716
if (ret == -ENOTBLK) {
715717
if (!fc->source)

fs/super.c

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,13 +1596,14 @@ int setup_bdev_super(struct super_block *sb, int sb_flags,
15961596
EXPORT_SYMBOL_GPL(setup_bdev_super);
15971597

15981598
/**
1599-
* get_tree_bdev - Get a superblock based on a single block device
1599+
* get_tree_bdev_flags - Get a superblock based on a single block device
16001600
* @fc: The filesystem context holding the parameters
16011601
* @fill_super: Helper to initialise a new superblock
1602+
* @flags: GET_TREE_BDEV_* flags
16021603
*/
1603-
int get_tree_bdev(struct fs_context *fc,
1604-
int (*fill_super)(struct super_block *,
1605-
struct fs_context *))
1604+
int get_tree_bdev_flags(struct fs_context *fc,
1605+
int (*fill_super)(struct super_block *sb,
1606+
struct fs_context *fc), unsigned int flags)
16061607
{
16071608
struct super_block *s;
16081609
int error = 0;
@@ -1613,10 +1614,10 @@ int get_tree_bdev(struct fs_context *fc,
16131614

16141615
error = lookup_bdev(fc->source, &dev);
16151616
if (error) {
1616-
errorf(fc, "%s: Can't lookup blockdev", fc->source);
1617+
if (!(flags & GET_TREE_BDEV_QUIET_LOOKUP))
1618+
errorf(fc, "%s: Can't lookup blockdev", fc->source);
16171619
return error;
16181620
}
1619-
16201621
fc->sb_flags |= SB_NOSEC;
16211622
s = sget_dev(fc, dev);
16221623
if (IS_ERR(s))
@@ -1644,6 +1645,19 @@ int get_tree_bdev(struct fs_context *fc,
16441645
fc->root = dget(s->s_root);
16451646
return 0;
16461647
}
1648+
EXPORT_SYMBOL_GPL(get_tree_bdev_flags);
1649+
1650+
/**
1651+
* get_tree_bdev - Get a superblock based on a single block device
1652+
* @fc: The filesystem context holding the parameters
1653+
* @fill_super: Helper to initialise a new superblock
1654+
*/
1655+
int get_tree_bdev(struct fs_context *fc,
1656+
int (*fill_super)(struct super_block *,
1657+
struct fs_context *))
1658+
{
1659+
return get_tree_bdev_flags(fc, fill_super, 0);
1660+
}
16471661
EXPORT_SYMBOL(get_tree_bdev);
16481662

16491663
static int test_bdev_super(struct super_block *s, void *data)

include/linux/fs_context.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@ extern int get_tree_keyed(struct fs_context *fc,
160160

161161
int setup_bdev_super(struct super_block *sb, int sb_flags,
162162
struct fs_context *fc);
163+
164+
#define GET_TREE_BDEV_QUIET_LOOKUP 0x0001
165+
int get_tree_bdev_flags(struct fs_context *fc,
166+
int (*fill_super)(struct super_block *sb,
167+
struct fs_context *fc), unsigned int flags);
168+
163169
extern int get_tree_bdev(struct fs_context *fc,
164170
int (*fill_super)(struct super_block *sb,
165171
struct fs_context *fc));

0 commit comments

Comments
 (0)