projects
/
linux-2.6-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b0430c
)
smb3: fix typo in mount options displayed in /proc/mounts
author
Steve French
<stfrench@microsoft.com>
Wed, 10 Jun 2020 00:50:40 +0000
(19:50 -0500)
committer
Steve French
<stfrench@microsoft.com>
Wed, 10 Jun 2020 17:05:15 +0000
(12:05 -0500)
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>
fs/cifs/cifsfs.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/cifs/cifsfs.c
b/fs/cifs/cifsfs.c
index 889f9c71049b8638c29fda74dea0db825bbdab7e..0fb99d25e8a8a0e129ee31ff1425fc87888d6bde 100644
(file)
--- 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_channel
s
=%zu",
tcon->ses->chan_max);
return 0;