diff options
Diffstat (limited to 'net/sunrpc/pmap_clnt.c')
-rw-r--r-- | net/sunrpc/pmap_clnt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sunrpc/pmap_clnt.c b/net/sunrpc/pmap_clnt.c index f7b279a63baa..3eee8e907275 100644 --- a/net/sunrpc/pmap_clnt.c +++ b/net/sunrpc/pmap_clnt.c | |||
@@ -89,7 +89,7 @@ void rpc_getport(struct rpc_task *task) | |||
89 | { | 89 | { |
90 | struct rpc_clnt *clnt = task->tk_client; | 90 | struct rpc_clnt *clnt = task->tk_client; |
91 | struct rpc_xprt *xprt = task->tk_xprt; | 91 | struct rpc_xprt *xprt = task->tk_xprt; |
92 | struct sockaddr_in *sap = &xprt->addr; | 92 | struct sockaddr_in addr; |
93 | struct portmap_args *map; | 93 | struct portmap_args *map; |
94 | struct rpc_clnt *pmap_clnt; | 94 | struct rpc_clnt *pmap_clnt; |
95 | struct rpc_task *child; | 95 | struct rpc_task *child; |
@@ -124,7 +124,8 @@ void rpc_getport(struct rpc_task *task) | |||
124 | map->pm_port = 0; | 124 | map->pm_port = 0; |
125 | map->pm_task = task; | 125 | map->pm_task = task; |
126 | 126 | ||
127 | pmap_clnt = pmap_create(clnt->cl_server, sap, map->pm_prot, 0); | 127 | rpc_peeraddr(clnt, (struct sockaddr *) &addr, sizeof(addr)); |
128 | pmap_clnt = pmap_create(clnt->cl_server, &addr, map->pm_prot, 0); | ||
128 | if (IS_ERR(pmap_clnt)) { | 129 | if (IS_ERR(pmap_clnt)) { |
129 | task->tk_status = PTR_ERR(pmap_clnt); | 130 | task->tk_status = PTR_ERR(pmap_clnt); |
130 | goto bailout; | 131 | goto bailout; |