scoutfs: use rid in console messages

Change the console message output to show the fsid:rid mount identity
instead of the block device name and device major and minor numbers.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2019-08-20 15:52:13 -07:00
committed by Zach Brown
parent 7acbf4cc8b
commit 754ce95f5c
+1 -3
View File
@@ -18,9 +18,7 @@ void scoutfs_msg(struct super_block *sb, const char *prefix, const char *str,
vaf.fmt = fmt;
vaf.va = &args;
printk("%sscoutfs (%s %u:%u)%s: %pV\n", prefix,
sb->s_id, MAJOR(sb->s_bdev->bd_dev), MINOR(sb->s_bdev->bd_dev),
str, &vaf);
printk("%sscoutfs "SCSBF"%s: %pV\n", prefix, SCSB_ARGS(sb), str, &vaf);
va_end(args);
}