]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
fuse: fix typo while displaying fuse numa mount option
authorAshish Samant <ashish.samant@oracle.com>
Wed, 20 May 2015 02:10:36 +0000 (19:10 -0700)
committerSantosh Shilimkar <santosh.shilimkar@oracle.com>
Mon, 29 Jun 2015 15:31:24 +0000 (08:31 -0700)
The mount command output on FUSE filesystem output incorrectly shows 'numa'
option together with the previous option.
This patch adds a comma separator and fixes the issue.

Orabug : 21040004

Signed-off-by: Ashish Samant <ashish.samant@oracle.com>
Reviewed-by: Srinivas Eeda <srinivas.eeda@oracle.com>
fs/fuse/inode.c

index ede73d097d45b36ab26a8f881eec2aba4a589eb9..81e64a3c2618de247cca86cadf4a58af7b76f756 100644 (file)
@@ -572,7 +572,7 @@ static int fuse_show_options(struct seq_file *m, struct dentry *root)
        if (sb->s_bdev && sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
                seq_printf(m, ",blksize=%lu", sb->s_blocksize);
        if (fc->affinity == FUSE_NUMA)
-               seq_puts(m, "numa");
+               seq_puts(m, ",numa");
        return 0;
 }