From c8b6ac1a9d1fb26adaeaafc3fb872e6713dfeaf7 Mon Sep 17 00:00:00 2001 From: Kenneth D'souza Date: Mon, 21 Jan 2019 11:51:59 +1000 Subject: 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: Ronnie Sahlberg Signed-off-by: Kenneth D'souza Signed-off-by: Steve French --- fs/cifs/cifsfs.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fs/cifs/cifsfs.c') diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 877174761efb..54c065ada4de 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -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 -- cgit v1.2.3-59-g8ed1b