Lines Matching refs:task
23 struct rpc_task *task = v; in tasks_show() local
24 struct rpc_clnt *clnt = task->tk_client; in tasks_show()
27 if (RPC_IS_QUEUED(task)) in tasks_show()
28 rpc_waitq = rpc_qname(task->tk_waitqueue); in tasks_show()
30 if (task->tk_rqstp) in tasks_show()
31 xid = be32_to_cpu(task->tk_rqstp->rq_xid); in tasks_show()
34 task->tk_pid, task->tk_flags, task->tk_status, in tasks_show()
35 clnt->cl_clid, xid, rpc_task_timeout(task), task->tk_ops, in tasks_show()
36 clnt->cl_program->name, clnt->cl_vers, rpc_proc_name(task), in tasks_show()
37 task->tk_action, rpc_waitq); in tasks_show()
47 struct rpc_task *task; in tasks_start() local
50 list_for_each_entry(task, &clnt->cl_tasks, tk_task) in tasks_start()
52 return task; in tasks_start()
60 struct rpc_task *task = v; in tasks_next() local
61 struct list_head *next = task->tk_task.next; in tasks_next()