summaryrefslogtreecommitdiffstats
path: root/fs/erofs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/erofs')
-rw-r--r--fs/erofs/super.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/fs/erofs/super.c b/fs/erofs/super.c
index 63cb17a4073b..b64d69f18270 100644
--- a/fs/erofs/super.c
+++ b/fs/erofs/super.c
@@ -384,9 +384,6 @@ static int erofs_fill_super(struct super_block *sb, void *data, int silent)
struct erofs_sb_info *sbi;
int err;
- infoln("fill_super, device -> %s", sb->s_id);
- infoln("options -> %s", (char *)data);
-
sb->s_magic = EROFS_SUPER_MAGIC;
if (!sb_set_blocksize(sb, EROFS_BLKSIZ)) {
@@ -419,9 +416,6 @@ static int erofs_fill_super(struct super_block *sb, void *data, int silent)
if (err)
return err;
- if (!silent)
- infoln("root inode @ nid %llu", ROOT_NID(sbi));
-
if (test_opt(sbi, POSIX_ACL))
sb->s_flags |= SB_POSIXACL;
else
@@ -454,7 +448,8 @@ static int erofs_fill_super(struct super_block *sb, void *data, int silent)
return err;
if (!silent)
- infoln("mounted on %s with opts: %s.", sb->s_id, (char *)data);
+ infoln("mounted on %s with opts: %s, root inode @ nid %llu.",
+ sb->s_id, (char *)data, ROOT_NID(sbi));
return 0;
}