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
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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