Skip to content

Commit 7866c17

Browse files
committed
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 <[email protected]> Signed-off-by: Steve French <[email protected]> Reviewed-by: Shyam Prasad N <[email protected]>
1 parent 0b0430c commit 7866c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/cifs/cifsfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ cifs_show_options(struct seq_file *s, struct dentry *root)
623623
seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ);
624624

625625
if (tcon->ses->chan_max > 1)
626-
seq_printf(s, ",multichannel,max_channel=%zu",
626+
seq_printf(s, ",multichannel,max_channels=%zu",
627627
tcon->ses->chan_max);
628628

629629
return 0;

0 commit comments

Comments
 (0)