From 7f53b93c55a34e8126872a1e51f9434d40ed33c0 Mon Sep 17 00:00:00 2001 From: Ashish Samant Date: Tue, 19 May 2015 19:10:36 -0700 Subject: [PATCH] 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 --- fs/fuse/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1