Lines Matching refs:clnt
180 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
190 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
191 if (clnt != NULL) in nlm_destroy_host_locked()
192 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
430 struct rpc_clnt *clnt; in nlm_bind_host() local
441 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
479 clnt = rpc_create(&args); in nlm_bind_host()
480 if (!IS_ERR(clnt)) in nlm_bind_host()
481 host->h_rpcclnt = clnt; in nlm_bind_host()
484 clnt = NULL; in nlm_bind_host()
489 return clnt; in nlm_bind_host()