From: Chuck Lever Date: Mon, 10 Dec 2007 19:57:01 +0000 (-0500) Subject: NFS: Increase size of cl_ipaddr field to hold IPv6 addresses X-Git-Tag: v2.6.25-rc1~1146^2~57 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4392f2592297876967191238a341667a6d4fc456;p=~shefty%2Frdma-dev.git 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 Cc: Aurelien Charbon Signed-off-by: Trond Myklebust --- diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 97b32575666..0b3dcba3d97 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 };