diff options
author | Jeff Layton <jlayton@redhat.com> | 2013-05-24 07:40:05 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2013-05-24 13:08:29 -0500 |
commit | 9c9c29e1af2ff0459087876e3800078555794b60 (patch) | |
tree | 6d545404bcd9fea39317cbaa74df4d83e10cf291 /fs/cifs | |
parent | 37d4f99b55d46d9f71f4769faf74c95adb2c1daf (diff) | |
download | linux-3.10-9c9c29e1af2ff0459087876e3800078555794b60.tar.gz linux-3.10-9c9c29e1af2ff0459087876e3800078555794b60.tar.bz2 linux-3.10-9c9c29e1af2ff0459087876e3800078555794b60.zip |
cifs: stop printing the unc= option in /proc/mounts
Since we no longer recognize that option, stop printing it out. The
devicename is now the canonical source for this info.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsfs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 72e4efee138..3752b9f6d9e 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -372,9 +372,6 @@ cifs_show_options(struct seq_file *s, struct dentry *root) cifs_show_security(s, tcon->ses->server); cifs_show_cache_flavor(s, cifs_sb); - seq_printf(s, ",unc="); - seq_escape(s, tcon->treeName, " \t\n\\"); - if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) seq_printf(s, ",multiuser"); else if (tcon->ses->user_name) |