Skip to content

Commit

Permalink
cifs: add missing mount option to /proc/mounts
Browse files Browse the repository at this point in the history
We were not displaying the mount option "signloosely" in /proc/mounts
for cifs mounts which some users found confusing recently

Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
  • Loading branch information
Steve French committed Feb 24, 2020
1 parent 1542552 commit ec57010
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/cifs/cifsfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root)

if (tcon->seal)
seq_puts(s, ",seal");
else if (tcon->ses->server->ignore_signature)
seq_puts(s, ",signloosely");
if (tcon->nocase)
seq_puts(s, ",nocase");
if (tcon->local_lease)
Expand Down

0 comments on commit ec57010

Please sign in to comment.