Lines Matching refs:msg
267 struct rpc_message msg = { in nlmclnt_call() local
284 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nlmclnt_call()
287 if ((status = rpc_call_sync(clnt, &msg, 0)) < 0) { in nlmclnt_call()
339 static struct rpc_task *__nlm_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, c… in __nlm_async_call() argument
344 .rpc_message = msg, in __nlm_async_call()
357 msg->rpc_proc = &clnt->cl_procinfo[proc]; in __nlm_async_call()
367 static int nlm_do_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct … in nlm_do_async_call() argument
371 task = __nlm_async_call(req, proc, msg, tk_ops); in nlm_do_async_call()
383 struct rpc_message msg = { in nlm_async_call() local
387 return nlm_do_async_call(req, proc, &msg, tk_ops); in nlm_async_call()
392 struct rpc_message msg = { in nlm_async_reply() local
395 return nlm_do_async_call(req, proc, &msg, tk_ops); in nlm_async_reply()
408 struct rpc_message msg = { in nlmclnt_async_call() local
416 task = __nlm_async_call(req, proc, &msg, tk_ops); in nlmclnt_async_call()