diff options
author | Steve French <smfrench@gmail.com> | 2011-10-19 21:44:48 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2011-10-19 21:44:48 -0400 |
commit | 71c424bac5679200e272357a225639da8bf94068 (patch) | |
tree | ef51d2dfdd11c0fc0521edebfcb133d5d0e655ef /fs/cifs | |
parent | ad4778fb40994dd7c779069dad6ff704d75b81e6 (diff) |
[CIFS] Show nostrictsync and noperm mount options in /proc/mounts
Add support to print nostrictsync and noperm mount options in
/proc/mounts for shares mounted with these options.
(cleanup merge conflict in Sachin's original patch)
Suggested-by: Sachin Prabhu <sprabhu@redhat.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsfs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index b0a2e1647390..96a48baad8f7 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -436,6 +436,10 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m) | |||
436 | seq_printf(s, ",mfsymlinks"); | 436 | seq_printf(s, ",mfsymlinks"); |
437 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) | 437 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) |
438 | seq_printf(s, ",fsc"); | 438 | seq_printf(s, ",fsc"); |
439 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC) | ||
440 | seq_printf(s, ",nostrictsync"); | ||
441 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) | ||
442 | seq_printf(s, ",noperm"); | ||
439 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) | 443 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) |
440 | seq_printf(s, ",strictcache"); | 444 | seq_printf(s, ",strictcache"); |
441 | 445 | ||