Lines Matching refs:clnt
179 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
189 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
190 if (clnt != NULL) in nlm_destroy_host_locked()
191 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
429 struct rpc_clnt *clnt; in nlm_bind_host() local
440 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
478 clnt = rpc_create(&args); in nlm_bind_host()
479 if (!IS_ERR(clnt)) in nlm_bind_host()
480 host->h_rpcclnt = clnt; in nlm_bind_host()
483 clnt = NULL; in nlm_bind_host()
488 return clnt; in nlm_bind_host()