Lines Matching refs:clnt
176 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
186 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
187 if (clnt != NULL) in nlm_destroy_host_locked()
188 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
420 struct rpc_clnt *clnt; in nlm_bind_host() local
431 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
433 rpc_force_rebind(clnt); in nlm_bind_host()
472 clnt = rpc_create(&args); in nlm_bind_host()
473 if (!IS_ERR(clnt)) in nlm_bind_host()
474 host->h_rpcclnt = clnt; in nlm_bind_host()
477 clnt = NULL; in nlm_bind_host()
482 return clnt; in nlm_bind_host()