diff options
author | Steve French <stfrench@microsoft.com> | 2020-06-09 19:50:40 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-06-10 12:05:15 -0500 |
commit | 7866c177a03b18be3d83175014c643546e5b53c6 (patch) | |
tree | cf9a888f9430c6c3b32518620d13cb9d87054b02 | |
parent | 0b0430c6a10a22813e3d40c5658ae644acda4303 (diff) | |
download | linux-7866c177a03b18be3d83175014c643546e5b53c6.tar.bz2 |
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 <stable@vger.kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Shyam Prasad N <nspmangalore@gmail.com>
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 889f9c71049b..0fb99d25e8a8 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; |