Lines Matching refs:clnt
177 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
187 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
188 if (clnt != NULL) in nlm_destroy_host_locked()
189 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
421 struct rpc_clnt *clnt; in nlm_bind_host() local
432 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
434 rpc_force_rebind(clnt); in nlm_bind_host()
473 clnt = rpc_create(&args); in nlm_bind_host()
474 if (!IS_ERR(clnt)) in nlm_bind_host()
475 host->h_rpcclnt = clnt; in nlm_bind_host()
478 clnt = NULL; in nlm_bind_host()
483 return clnt; in nlm_bind_host()