diff options
author | Jeff Layton <jlayton@redhat.com> | 2009-06-10 10:04:58 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2009-06-10 18:34:35 +0000 |
commit | 61b6bc525a34931bb73e4c95bfe009cd9572a288 (patch) | |
tree | 4c60f5233b72c7ab1a4a4e6e123d49ba2de3c13c /fs/cifs | |
parent | 58f7f68f228c3aba2ba4468d92e2cec35724ba2e (diff) | |
download | linux-3.10-61b6bc525a34931bb73e4c95bfe009cd9572a288.tar.gz linux-3.10-61b6bc525a34931bb73e4c95bfe009cd9572a288.tar.bz2 linux-3.10-61b6bc525a34931bb73e4c95bfe009cd9572a288.zip |
cifs: remove never-used in6_addr option
This option was never used to my knowledge. Remove it before someone
does...
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/connect.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 6298dc32ade..97f4311b9a8 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -62,7 +62,6 @@ struct smb_vol { char *domainname; char *UNC; char *UNCip; - char *in6_addr; /* ipv6 address as human readable form of in6_addr */ char *iocharset; /* local code page for mapping to and from Unicode */ char source_rfc1001_name[16]; /* netbios name of client */ char target_rfc1001_name[16]; /* netbios name of server for Win9x/ME */ @@ -1320,16 +1319,6 @@ cifs_parse_mount_options(char *options, const char *devname, vol->direct_io = 1; } else if (strnicmp(data, "forcedirectio", 13) == 0) { vol->direct_io = 1; - } else if (strnicmp(data, "in6_addr", 8) == 0) { - if (!value || !*value) { - vol->in6_addr = NULL; - } else if (strnlen(value, 49) == 48) { - vol->in6_addr = value; - } else { - printk(KERN_WARNING "CIFS: ip v6 address not " - "48 characters long\n"); - return 1; - } } else if (strnicmp(data, "noac", 4) == 0) { printk(KERN_WARNING "CIFS: Mount option noac not " "supported. Instead set " |