aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4namespace.c
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2009-08-09 15:09:36 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2009-08-09 15:09:36 -0400
commit53a0b9c4c99ab0085a06421f71592722e5b3fd5f (patch)
treee1e072cc5e7b8ee9c82966dddb6629923ea11be3 /fs/nfs/nfs4namespace.c
parentSUNRPC: Use rpc_ntop() for constructing transport address strings (diff)
downloadlinux-dev-53a0b9c4c99ab0085a06421f71592722e5b3fd5f.tar.xz
linux-dev-53a0b9c4c99ab0085a06421f71592722e5b3fd5f.zip
NFS: Replace nfs_parse_ip_address() with rpc_pton()
Clean up: Use the common routine now provided in sunrpc.ko for parsing mount addresses. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4namespace.c')
-rw-r--r--fs/nfs/nfs4namespace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfs/nfs4namespace.c b/fs/nfs/nfs4namespace.c
index 2a2a0a7143ad..43c86b7556e1 100644
--- a/fs/nfs/nfs4namespace.c
+++ b/fs/nfs/nfs4namespace.c
@@ -121,9 +121,9 @@ static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
continue;
- nfs_parse_ip_address(buf->data, buf->len,
- mountdata->addr, &mountdata->addrlen);
- if (mountdata->addr->sa_family == AF_UNSPEC)
+ mountdata->addrlen = rpc_pton(buf->data, buf->len,
+ mountdata->addr, mountdata->addrlen);
+ if (mountdata->addrlen == 0)
continue;
nfs_set_port(mountdata->addr, NFS_PORT);