• Home
  • Raw
  • Download

Lines Matching refs:task

48 nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode)  in nfs3_async_handle_jukebox()  argument
50 if (task->tk_status != -EJUKEBOX) in nfs3_async_handle_jukebox()
52 if (task->tk_status == -EJUKEBOX) in nfs3_async_handle_jukebox()
54 task->tk_status = 0; in nfs3_async_handle_jukebox()
55 rpc_restart_call(task); in nfs3_async_handle_jukebox()
56 rpc_delay(task, NFS_JUKEBOX_RETRY_TIME); in nfs3_async_handle_jukebox()
434 static void nfs3_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) in nfs3_proc_unlink_rpc_prepare() argument
436 rpc_call_start(task); in nfs3_proc_unlink_rpc_prepare()
440 nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir) in nfs3_proc_unlink_done() argument
443 if (nfs3_async_handle_jukebox(task, dir)) in nfs3_proc_unlink_done()
445 res = task->tk_msg.rpc_resp; in nfs3_proc_unlink_done()
458 static void nfs3_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) in nfs3_proc_rename_rpc_prepare() argument
460 rpc_call_start(task); in nfs3_proc_rename_rpc_prepare()
464 nfs3_proc_rename_done(struct rpc_task *task, struct inode *old_dir, in nfs3_proc_rename_done() argument
469 if (nfs3_async_handle_jukebox(task, old_dir)) in nfs3_proc_rename_done()
471 res = task->tk_msg.rpc_resp; in nfs3_proc_rename_done()
813 static int nfs3_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs3_read_done() argument
819 return hdr->pgio_done_cb(task, hdr); in nfs3_read_done()
821 if (nfs3_async_handle_jukebox(task, inode)) in nfs3_read_done()
824 if (task->tk_status >= 0 && !server->read_hdrsize) in nfs3_read_done()
839 static int nfs3_proc_pgio_rpc_prepare(struct rpc_task *task, in nfs3_proc_pgio_rpc_prepare() argument
842 rpc_call_start(task); in nfs3_proc_pgio_rpc_prepare()
846 static int nfs3_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs3_write_done() argument
851 return hdr->pgio_done_cb(task, hdr); in nfs3_write_done()
853 if (nfs3_async_handle_jukebox(task, inode)) in nfs3_write_done()
855 if (task->tk_status >= 0) in nfs3_write_done()
867 static void nfs3_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) in nfs3_proc_commit_rpc_prepare() argument
869 rpc_call_start(task); in nfs3_proc_commit_rpc_prepare()
872 static int nfs3_commit_done(struct rpc_task *task, struct nfs_commit_data *data) in nfs3_commit_done() argument
875 return data->commit_done_cb(task, data); in nfs3_commit_done()
877 if (nfs3_async_handle_jukebox(task, data->inode)) in nfs3_commit_done()
898 static bool nfs3_nlm_unlock_prepare(struct rpc_task *task, void *data) in nfs3_nlm_unlock_prepare() argument
902 return nfs_async_iocounter_wait(task, l_ctx); in nfs3_nlm_unlock_prepare()