Lines Matching refs:clnt
178 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
188 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
189 if (clnt != NULL) in nlm_destroy_host_locked()
190 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
424 struct rpc_clnt *clnt; in nlm_bind_host() local
435 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
437 rpc_force_rebind(clnt); in nlm_bind_host()
476 clnt = rpc_create(&args); in nlm_bind_host()
477 if (!IS_ERR(clnt)) in nlm_bind_host()
478 host->h_rpcclnt = clnt; in nlm_bind_host()
481 clnt = NULL; in nlm_bind_host()
486 return clnt; in nlm_bind_host()