Re: [PATCH] cifs: remove never-used in6_addr option
Jeff Layton <[email protected]>
| Newsgroups | gmane.linux.file-systems.cifs |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 10 Jun 2009 09:57:54 -0400 Jeff Layton <[email protected]> wrote: > This option was never used to my knowledge. Remove it before someone > does... > > Signed-off-by: Jeff Layton <[email protected]> Oops, just realized that we can actually remove the in6_addr pointer from smb_vol as well. This patch should do that too. -- Jeff Layton <[email protected]> _______________________________________________ linux-cifs-client mailing list [email protected] https://lists.samba.org/mailman/listinfo/linux-cifs-client
0001-cifs-remove-never-used-in6_addr-option.patch
(text/x-patch, 1.5 KB)
>From 04516c6e6b1f6e1ab6621afd872e0c8084465a86 Mon Sep 17 00:00:00 2001 From: Jeff Layton <[email protected]> Date: Wed, 10 Jun 2009 10:04:58 -0400 Subject: [PATCH] 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 <[email protected]> --- 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 10151f8..fa50dc7 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 */ @@ -1319,16 +1318,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 " -- 1.6.0.6