Lines Matching refs:task
369 struct rpc_task *task; in nlm_do_async_call() local
371 task = __nlm_async_call(req, proc, msg, tk_ops); in nlm_do_async_call()
372 if (IS_ERR(task)) in nlm_do_async_call()
373 return PTR_ERR(task); in nlm_do_async_call()
374 rpc_put_task(task); in nlm_do_async_call()
413 struct rpc_task *task; in nlmclnt_async_call() local
416 task = __nlm_async_call(req, proc, &msg, tk_ops); in nlmclnt_async_call()
417 if (IS_ERR(task)) in nlmclnt_async_call()
418 return PTR_ERR(task); in nlmclnt_async_call()
419 err = rpc_wait_for_completion_task(task); in nlmclnt_async_call()
420 rpc_put_task(task); in nlmclnt_async_call()
702 static void nlmclnt_unlock_prepare(struct rpc_task *task, void *data) in nlmclnt_unlock_prepare() argument
709 defer_call = nlmclnt_ops->nlmclnt_unlock_prepare(task, req->a_callback_data); in nlmclnt_unlock_prepare()
712 rpc_call_start(task); in nlmclnt_unlock_prepare()
715 static void nlmclnt_unlock_callback(struct rpc_task *task, void *data) in nlmclnt_unlock_callback() argument
720 if (RPC_SIGNALLED(task)) in nlmclnt_unlock_callback()
723 if (task->tk_status < 0) { in nlmclnt_unlock_callback()
724 dprintk("lockd: unlock failed (err = %d)\n", -task->tk_status); in nlmclnt_unlock_callback()
725 switch (task->tk_status) { in nlmclnt_unlock_callback()
734 rpc_delay(task, NLMCLNT_GRACE_WAIT); in nlmclnt_unlock_callback()
744 rpc_restart_call(task); in nlmclnt_unlock_callback()
783 static void nlmclnt_cancel_callback(struct rpc_task *task, void *data) in nlmclnt_cancel_callback() argument
788 if (RPC_SIGNALLED(task)) in nlmclnt_cancel_callback()
791 if (task->tk_status < 0) { in nlmclnt_cancel_callback()
793 task->tk_status); in nlmclnt_cancel_callback()
798 status, task->tk_pid); in nlmclnt_cancel_callback()
822 rpc_restart_call(task); in nlmclnt_cancel_callback()
823 rpc_delay(task, 30 * HZ); in nlmclnt_cancel_callback()