Skip to content

Commit ec57010

Browse files
committed
cifs: add missing mount option to /proc/mounts
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>
1 parent 1542552 commit ec57010

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

fs/cifs/cifsfs.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root)
530530

531531
if (tcon->seal)
532532
seq_puts(s, ",seal");
533+
else if (tcon->ses->server->ignore_signature)
534+
seq_puts(s, ",signloosely");
533535
if (tcon->nocase)
534536
seq_puts(s, ",nocase");
535537
if (tcon->local_lease)

0 commit comments

Comments
 (0)