diff options
author | Steve French <sfrench@us.ibm.com> | 2009-06-26 04:07:18 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2009-06-26 04:07:18 +0000 |
commit | 71a394faaad07090af5de5c075ec2f5bca0fbb35 (patch) | |
tree | 9e4f67deea3ecfc6bb571a930c16c6d6e5b10f3f /fs | |
parent | ad8034f19792736db5c259103c2eaaf72887bbb4 (diff) | |
download | linux-3.10-71a394faaad07090af5de5c075ec2f5bca0fbb35.tar.gz linux-3.10-71a394faaad07090af5de5c075ec2f5bca0fbb35.tar.bz2 linux-3.10-71a394faaad07090af5de5c075ec2f5bca0fbb35.zip |
[CIFS] remove unknown mount option warning message
Jeff's previous patch which removed the unneeded rw/ro
parsing can cause a minor warning in dmesg (about the
unknown rw or ro mount option) at mount time. This
patch makes cifs ignore them in kernel to remove the warning
(they are already handled in the mount helper and VFS).
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/connect.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 12c2cf69355..e16d7592116 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1196,6 +1196,10 @@ cifs_parse_mount_options(char *options, const char *devname, /* ignore */ } else if (strnicmp(data, "guest", 5) == 0) { /* ignore */ + } else if (strnicmp(data, "rw", 2) == 0) { + /* ignore */ + } else if (strnicmp(data, "ro", 2) == 0) { + /* ignore */ } else if (strnicmp(data, "noblocksend", 11) == 0) { vol->noblocksnd = 1; } else if (strnicmp(data, "noautotune", 10) == 0) { |