summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2007-12-10 20:57:01 +0100
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-01-30 08:05:51 +0100
commit4392f2592297876967191238a341667a6d4fc456 (patch)
tree752a74033c647bd659d17e57155d23418d6e333d /include
parentNFS: Ensure NFSv4 SETCLIENTID send buffer is large enough (diff)
downloadlinux-4392f2592297876967191238a341667a6d4fc456.tar.xz
linux-4392f2592297876967191238a341667a6d4fc456.zip
NFS: Increase size of cl_ipaddr field to hold IPv6 addresses
The nfs_client's cl_ipaddr field needs to be larger to hold strings that represent IPv6 addresses. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Cc: Aurelien Charbon <aurelien.charbon@ext.bull.net> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/nfs_fs_sb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h
index 97b325756667..0b3dcba3d97d 100644
--- a/include/linux/nfs_fs_sb.h
+++ b/include/linux/nfs_fs_sb.h
@@ -64,7 +64,7 @@ struct nfs_client {
/* Our own IP address, as a null-terminated string.
* This is used to generate the clientid, and the callback address.
*/
- char cl_ipaddr[16];
+ char cl_ipaddr[48];
unsigned char cl_id_uniquifier;
#endif
};