From: Steve French Date: Wed, 10 Jun 2020 00:50:40 +0000 (-0500) Subject: smb3: fix typo in mount options displayed in /proc/mounts X-Git-Tag: v5.10.7~2308^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7866c177a03b18be3d83175014c643546e5b53c6;p=platform%2Fkernel%2Flinux-rpi.git smb3: fix typo in mount options displayed in /proc/mounts Missing the final 's' in "max_channels" mount option when displayed in /proc/mounts (or by mount command) CC: Stable Signed-off-by: Steve French Reviewed-by: Shyam Prasad N --- diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 889f9c7..0fb99d2 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -623,7 +623,7 @@ cifs_show_options(struct seq_file *s, struct dentry *root) seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ); if (tcon->ses->chan_max > 1) - seq_printf(s, ",multichannel,max_channel=%zu", + seq_printf(s, ",multichannel,max_channels=%zu", tcon->ses->chan_max); return 0;