From: Ashish Samant Date: Wed, 20 May 2015 02:10:36 +0000 (-0700) Subject: fuse: fix typo while displaying fuse numa mount option X-Git-Tag: v4.1.12-92~324^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7f53b93c55a34e8126872a1e51f9434d40ed33c0;p=users%2Fjedix%2Flinux-maple.git fuse: fix typo while displaying fuse numa mount option 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 Reviewed-by: Srinivas Eeda --- diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index ede73d097d45..81e64a3c2618 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -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; }