Skip to content
Snippets Groups Projects
Commit c8b6ac1a authored by Kenneth D'souza's avatar Kenneth D'souza Committed by Steve French
Browse files

CIFS: Show locallease in /proc/mounts for cifs shares mounted with locallease feature.


Missing parameter that should be displayed in the mount list

Reviewed-by: default avatarRonnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: default avatarKenneth D'souza <kdsouza@redhat.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 5072010c
No related branches found
No related tags found
No related merge requests found
......@@ -483,6 +483,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root)
seq_puts(s, ",seal");
if (tcon->nocase)
seq_puts(s, ",nocase");
if (tcon->local_lease)
seq_puts(s, ",locallease");
if (tcon->retry)
seq_puts(s, ",hard");
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment