diff options
author | Steve French <smfrench@gmail.com> | 2015-09-30 21:07:59 -0500 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2015-11-03 09:17:31 -0600 |
commit | f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f (patch) | |
tree | 78ecd32e29fd26a247a1a02f624d7dbd89350c7b /fs | |
parent | b618f001a20e44f691dd0e2ffea651a40a651871 (diff) | |
download | linux-f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f.tar.bz2 |
[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')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
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 |