aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorSteve French <smfrench@gmail.com>2015-09-30 21:07:59 -0500
committerSteve French <smfrench@gmail.com>2015-11-03 09:17:31 -0600
commitf16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f (patch)
tree78ecd32e29fd26a247a1a02f624d7dbd89350c7b /fs/cifs
parent[SMB3] Enable checking for continuous availability and persistent handle support (diff)
downloadlinux-dev-f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f.tar.xz
linux-dev-f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f.zip
[SMB3] Display persistenthandles in /proc/mounts for SMB3 shares if enabled
Signed-off-by: Steve French <steve.french@primarydata.com> Reviewed-by: Pavel Shilovsky <pshilovsky@samba.org>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/cifsfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index e739950ca084..13302e94fee3 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -454,6 +454,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root)
seq_puts(s, ",nocase");
if (tcon->retry)
seq_puts(s, ",hard");
+ if (tcon->use_persistent)
+ seq_puts(s, ",persistenthandles");
if (tcon->unix_ext)
seq_puts(s, ",unix");
else