diff options
| author | Steve French <[email protected]> | 2015-10-01 02:07:59 +0000 |
|---|---|---|
| committer | Steve French <[email protected]> | 2015-11-03 15:17:31 +0000 |
| commit | f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f (patch) | |
| tree | 78ecd32e29fd26a247a1a02f624d7dbd89350c7b | |
| parent | [SMB3] Enable checking for continuous availability and persistent handle support (diff) | |
| download | kernel-f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f.tar.gz kernel-f16dfa7cd1b588e5d7ef4b5a19ee579f11b7a41f.zip | |
[SMB3] Display persistenthandles in /proc/mounts for SMB3 shares if enabled
Signed-off-by: Steve French <[email protected]>
Reviewed-by: Pavel Shilovsky <[email protected]>
| -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 |
