Lines Matching refs:cl
242 CLIENT *cl; in inform_server() local
299 cl = clnt_create_timed(list[i].host, MOUNTPROG, vers, in inform_server()
305 if (cl == NULL) { in inform_server()
319 if (__clnt_bindresvport(cl) < 0) { in inform_server()
323 clnt_destroy(cl); in inform_server()
326 if ((cl->cl_auth = authsys_create_default()) == NULL) { in inform_server()
330 clnt_destroy(cl); in inform_server()
335 clnt_control(cl, CLSET_RETRY_TIMEOUT, (char *)&timeout); in inform_server()
337 rpc_stat = clnt_call(cl, MOUNTPROC_UMNT, xdr_dirpath, in inform_server()
340 AUTH_DESTROY(cl->cl_auth); in inform_server()
341 clnt_destroy(cl); in inform_server()
350 pr_err("%s\n", clnt_sperror(cl, "unmount")); in inform_server()