Home
last modified time | relevance | path

Searched refs:rpc_task (Results 1 – 51 of 51) sorted by relevance

/linux-4.4.14/include/linux/sunrpc/
Dsched.h43 struct rpc_task { struct
59 void (*tk_callback)(struct rpc_task *); argument
60 void (*tk_action)(struct rpc_task *); argument
91 typedef void (*rpc_action)(struct rpc_task *); argument
94 void (*rpc_call_prepare)(struct rpc_task *, void *);
95 void (*rpc_call_done)(struct rpc_task *, void *);
96 void (*rpc_count_stats)(struct rpc_task *, void *);
101 struct rpc_task *task;
206 struct rpc_task *rpc_new_task(const struct rpc_task_setup *);
207 struct rpc_task *rpc_run_task(const struct rpc_task_setup *);
[all …]
Dxprt.h54 struct rpc_task;
74 struct rpc_task * rq_task; /* RPC task data */
123 int (*reserve_xprt)(struct rpc_xprt *xprt, struct rpc_task *task);
124 void (*release_xprt)(struct rpc_xprt *xprt, struct rpc_task *task);
125 void (*alloc_slot)(struct rpc_xprt *xprt, struct rpc_task *task);
126 void (*rpcbind)(struct rpc_task *task);
128 void (*connect)(struct rpc_xprt *xprt, struct rpc_task *task);
129 void * (*buf_alloc)(struct rpc_task *task, size_t size);
131 int (*send_request)(struct rpc_task *task);
132 void (*set_retrans_timeout)(struct rpc_task *task);
[all …]
Dauth.h138 struct rpc_cred * (*crbind)(struct rpc_task *, struct rpc_cred *, int);
139 __be32 * (*crmarshal)(struct rpc_task *, __be32 *);
140 int (*crrefresh)(struct rpc_task *);
141 __be32 * (*crvalidate)(struct rpc_task *, __be32 *);
142 int (*crwrap_req)(struct rpc_task *, kxdreproc_t,
144 int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t,
177 struct rpc_cred * rpcauth_generic_bind_cred(struct rpc_task *, struct rpc_cred *, int);
179 __be32 * rpcauth_marshcred(struct rpc_task *, __be32 *);
180 __be32 * rpcauth_checkverf(struct rpc_task *, __be32 *);
181 int rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, __be32 *data, void *…
[all …]
Dmetrics.h70 struct rpc_task;
80 void rpc_count_iostats(const struct rpc_task *,
82 void rpc_count_iostats_metrics(const struct rpc_task *,
90 static inline void rpc_count_iostats(const struct rpc_task *task, in rpc_count_iostats()
92 static inline void rpc_count_iostats_metrics(const struct rpc_task *task, in rpc_count_iostats_metrics()
Dclnt.h142 void rpc_task_reset_client(struct rpc_task *task, struct rpc_clnt *clnt);
152 void rpc_task_release_client(struct rpc_task *);
161 void rpcb_getport_async(struct rpc_task *);
163 void rpc_call_start(struct rpc_task *);
170 struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
172 int rpc_restart_call_prepare(struct rpc_task *);
173 int rpc_restart_call(struct rpc_task *);
184 const char *rpc_proc_name(const struct rpc_task *task);
/linux-4.4.14/net/sunrpc/
Dsched.c46 static void rpc_release_task(struct rpc_task *task);
65 __rpc_disable_timer(struct rpc_wait_queue *queue, struct rpc_task *task) in __rpc_disable_timer()
87 __rpc_add_timer(struct rpc_wait_queue *queue, struct rpc_task *task) in __rpc_add_timer()
104 struct rpc_task *task; in rpc_rotate_queue_owner()
107 task = list_first_entry(q, struct rpc_task, u.tk_wait.list); in rpc_rotate_queue_owner()
138 struct rpc_task *task, in __rpc_add_wait_queue_priority()
142 struct rpc_task *t; in __rpc_add_wait_queue_priority()
168 struct rpc_task *task, in __rpc_add_wait_queue()
194 static void __rpc_remove_wait_queue_priority(struct rpc_task *task) in __rpc_remove_wait_queue_priority()
196 struct rpc_task *t; in __rpc_remove_wait_queue_priority()
[all …]
Dclnt.c60 static void call_start(struct rpc_task *task);
61 static void call_reserve(struct rpc_task *task);
62 static void call_reserveresult(struct rpc_task *task);
63 static void call_allocate(struct rpc_task *task);
64 static void call_decode(struct rpc_task *task);
65 static void call_bind(struct rpc_task *task);
66 static void call_bind_status(struct rpc_task *task);
67 static void call_transmit(struct rpc_task *task);
69 static void call_bc_transmit(struct rpc_task *task);
71 static void call_status(struct rpc_task *task);
[all …]
Dxprt.c68 static void xprt_request_init(struct rpc_task *, struct rpc_xprt *);
69 static void xprt_connect_status(struct rpc_task *task);
70 static int __xprt_get_cong(struct rpc_xprt *, struct rpc_task *);
182 int xprt_reserve_xprt(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_reserve_xprt()
233 int xprt_reserve_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_reserve_xprt_cong()
270 static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_lock_write()
280 static bool __xprt_lock_write_func(struct rpc_task *task, void *data) in __xprt_lock_write_func()
302 static bool __xprt_lock_write_cong_func(struct rpc_task *task, void *data) in __xprt_lock_write_cong_func()
332 static void xprt_task_clear_bytes_sent(struct rpc_task *task) in xprt_task_clear_bytes_sent()
348 void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_release_xprt()
[all …]
Dauth_null.c64 nul_marshal(struct rpc_task *task, __be32 *p) in nul_marshal()
78 nul_refresh(struct rpc_task *task) in nul_refresh()
85 nul_validate(struct rpc_task *task, __be32 *p) in nul_validate()
Dauth.c657 rpcauth_generic_bind_cred(struct rpc_task *task, struct rpc_cred *cred, int lookupflags) in rpcauth_generic_bind_cred()
666 rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_root_cred()
680 rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) in rpcauth_bind_new_cred()
690 rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags) in rpcauth_bindcred()
749 rpcauth_marshcred(struct rpc_task *task, __be32 *p) in rpcauth_marshcred()
760 rpcauth_checkverf(struct rpc_task *task, __be32 *p) in rpcauth_checkverf()
780 rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, in rpcauth_wrap_req()
805 rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, in rpcauth_unwrap_resp()
820 rpcauth_refreshcred(struct rpc_task *task) in rpcauth_refreshcred()
843 rpcauth_invalcred(struct rpc_task *task) in rpcauth_invalcred()
[all …]
Ddebugfs.c28 struct rpc_task *task = v; in tasks_show()
53 struct rpc_task *task; in tasks_start()
68 struct rpc_task *task = v; in tasks_next()
77 return list_entry(next, struct rpc_task, tk_task); in tasks_next()
Dauth_unix.c144 unx_marshal(struct rpc_task *task, __be32 *p) in unx_marshal()
178 unx_refresh(struct rpc_task *task) in unx_refresh()
185 unx_validate(struct rpc_task *task, __be32 *p) in unx_validate()
Dsunrpc.h40 static inline int rpc_reply_expected(struct rpc_task *task) in rpc_reply_expected()
Dxprtsock.c439 static void xs_nospace_callback(struct rpc_task *task) in xs_nospace_callback()
451 static int xs_nospace(struct rpc_task *task) in xs_nospace()
502 static int xs_local_send_request(struct rpc_task *task) in xs_local_send_request()
563 static int xs_udp_send_request(struct rpc_task *task) in xs_udp_send_request()
638 static int xs_tcp_send_request(struct rpc_task *task) in xs_tcp_send_request()
722 static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task) in xs_tcp_release_xprt()
914 struct rpc_task *task; in xs_local_data_read_skb()
992 struct rpc_task *task; in xs_udp_data_read_skb()
1706 static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task) in xs_udp_timer()
1845 static void xs_local_rpcbind(struct rpc_task *task) in xs_local_rpcbind()
[all …]
Drpcb_clnt.c113 static void rpcb_getport_done(struct rpc_task *, void *);
623 static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struc… in rpcb_call_async()
671 void rpcb_getport_async(struct rpc_task *task) in rpcb_getport_async()
679 struct rpc_task *child; in rpcb_getport_async()
809 static void rpcb_getport_done(struct rpc_task *child, void *data) in rpcb_getport_done()
Dstats.c147 void rpc_count_iostats_metrics(const struct rpc_task *task, in rpc_count_iostats_metrics()
185 void rpc_count_iostats(const struct rpc_task *task, struct rpc_iostats *stats) in rpc_count_iostats()
Dauth_generic.c65 static struct rpc_cred *generic_bind_cred(struct rpc_task *task, in generic_bind_cred()
Dsvc.c1350 struct rpc_task *task; in bc_svc_process()
/linux-4.4.14/fs/nfs/
Dunlink.c78 static void nfs_async_unlink_done(struct rpc_task *task, void *calldata) in nfs_async_unlink_done()
105 static void nfs_unlink_prepare(struct rpc_task *task, void *calldata) in nfs_unlink_prepare()
131 struct rpc_task *task; in nfs_do_call_unlink()
343 static void nfs_async_rename_done(struct rpc_task *task, void *calldata) in nfs_async_rename_done()
382 static void nfs_rename_prepare(struct rpc_task *task, void *calldata) in nfs_rename_prepare()
403 struct rpc_task *
406 void (*complete)(struct rpc_task *, struct nfs_renamedata *)) in nfs_async_rename() argument
425 struct rpc_task *task = ERR_CAST(data->cred); in nfs_async_rename()
467 nfs_complete_sillyrename(struct rpc_task *task, struct nfs_renamedata *data) in nfs_complete_sillyrename()
519 struct rpc_task *task; in nfs_sillyrename()
Dnfs4_fs.h83 struct rpc_task *task;
271 struct rpc_task *task);
272 extern int nfs41_sequence_done(struct rpc_task *, struct nfs4_sequence_res *);
445 extern int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task);
453 struct rpc_task *task);
454 extern int nfs4_sequence_done(struct rpc_task *task,
Dproc.c328 static void nfs_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) in nfs_proc_unlink_rpc_prepare()
333 static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir) in nfs_proc_unlink_done()
345 static void nfs_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) in nfs_proc_rename_rpc_prepare()
351 nfs_proc_rename_done(struct rpc_task *task, struct inode *old_dir, in nfs_proc_rename_done()
581 static int nfs_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs_read_done()
603 static int nfs_proc_pgio_rpc_prepare(struct rpc_task *task, in nfs_proc_pgio_rpc_prepare()
610 static int nfs_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs_write_done()
625 static void nfs_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) in nfs_proc_commit_rpc_prepare()
Dnfs4proc.c470 nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server, in nfs4_async_handle_exception()
497 nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server, in nfs4_async_handle_error()
573 struct rpc_task *task) in nfs40_setup_sequence()
611 static int nfs40_sequence_done(struct rpc_task *task, in nfs40_sequence_done()
665 int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) in nfs41_sequence_done()
768 int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) in nfs4_sequence_done()
781 struct rpc_task *task) in nfs41_setup_sequence()
845 struct rpc_task *task) in nfs4_setup_sequence()
864 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata) in nfs41_call_sync_prepare()
874 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata) in nfs41_call_sync_done()
[all …]
Dnfs3proc.c47 nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode) in nfs3_async_handle_jukebox()
440 static void nfs3_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) in nfs3_proc_unlink_rpc_prepare()
446 nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir) in nfs3_proc_unlink_done()
462 static void nfs3_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) in nfs3_proc_rename_rpc_prepare()
468 nfs3_proc_rename_done(struct rpc_task *task, struct inode *old_dir, in nfs3_proc_rename_done()
799 static int nfs3_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs3_read_done()
820 static int nfs3_proc_pgio_rpc_prepare(struct rpc_task *task, in nfs3_proc_pgio_rpc_prepare()
827 static int nfs3_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) in nfs3_write_done()
847 static void nfs3_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) in nfs3_proc_commit_rpc_prepare()
852 static int nfs3_commit_done(struct rpc_task *task, struct nfs_commit_data *data) in nfs3_commit_done()
Dinternal.h438 extern void nfs_read_prepare(struct rpc_task *task, void *calldata);
457 extern void nfs_write_prepare(struct rpc_task *task, void *calldata);
458 extern void nfs_commit_prepare(struct rpc_task *task, void *calldata);
508 extern struct rpc_task *
511 void (*complete)(struct rpc_task *, struct nfs_renamedata *));
Dnfs42proc.c194 nfs42_layoutstat_prepare(struct rpc_task *task, void *calldata) in nfs42_layoutstat_prepare()
204 nfs42_layoutstat_done(struct rpc_task *task, void *calldata) in nfs42_layoutstat_done()
261 struct rpc_task *task; in nfs42_proc_layoutstats_generic()
Dread.c219 static int nfs_readpage_done(struct rpc_task *task, in nfs_readpage_done()
236 static void nfs_readpage_retry(struct rpc_task *task, in nfs_readpage_retry()
264 static void nfs_readpage_result(struct rpc_task *task, in nfs_readpage_result()
Dpnfs.h273 bool pnfs_wait_on_layoutreturn(struct inode *ino, struct rpc_task *task);
353 void pnfs_generic_write_commit_done(struct rpc_task *task, void *data);
644 pnfs_wait_on_layoutreturn(struct inode *ino, struct rpc_task *task) in pnfs_wait_on_layoutreturn()
Dwrite.c1367 void nfs_commit_prepare(struct rpc_task *task, void *calldata) in nfs_commit_prepare()
1435 static int nfs_writeback_done(struct rpc_task *task, in nfs_writeback_done()
1484 static void nfs_writeback_result(struct rpc_task *task, in nfs_writeback_result()
1567 struct rpc_task *task; in nfs_initiate_commit()
1697 static void nfs_commit_done(struct rpc_task *task, void *calldata) in nfs_commit_done()
Dpagelist.c607 static void nfs_pgio_prepare(struct rpc_task *task, void *calldata) in nfs_pgio_prepare()
620 struct rpc_task *task; in nfs_initiate_pgio()
766 static void nfs_pgio_result(struct rpc_task *task, void *calldata) in nfs_pgio_result()
Dnfs4session.c268 static bool nfs41_assign_slot(struct rpc_task *task, void *pslot) in nfs41_assign_slot()
Dpnfs_nfs.c42 void pnfs_generic_write_commit_done(struct rpc_task *task, void *data) in pnfs_generic_write_commit_done()
Dnfs4state.c1110 int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task) in nfs_wait_on_sequence()
Ddir.c1992 struct rpc_task *task; in nfs_rename()
Dpnfs.c1175 bool pnfs_wait_on_layoutreturn(struct inode *ino, struct rpc_task *task) in pnfs_wait_on_layoutreturn()
/linux-4.4.14/include/trace/events/
Dsunrpc.h18 TP_PROTO(struct rpc_task *task),
40 TP_PROTO(struct rpc_task *task),
46 TP_PROTO(struct rpc_task *task),
52 TP_PROTO(struct rpc_task *task, int status),
75 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
108 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
116 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
124 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
132 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const struct rpc_wait_queue *q),
168 TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const struct rpc_wait_queue *q),
[all …]
/linux-4.4.14/include/linux/
Dnfs_xdr.h288 struct rpc_task task;
1404 struct rpc_task task;
1409 int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *);
1439 struct rpc_task task;
1456 int (*commit_done_cb) (struct rpc_task *task, struct nfs_commit_data *data);
1485 void (*complete)(struct rpc_task *, struct nfs_renamedata *);
1527 void (*unlink_rpc_prepare) (struct rpc_task *, struct nfs_unlinkdata *);
1528 int (*unlink_done) (struct rpc_task *, struct inode *);
1530 void (*rename_rpc_prepare)(struct rpc_task *task, struct nfs_renamedata *);
1531 int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir);
[all …]
Dnfs_page.h70 int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *,
72 void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *);
/linux-4.4.14/fs/nfs/filelayout/
Dfilelayout.c90 struct rpc_task *task = &hdr->task; in filelayout_reset_write()
107 struct rpc_task *task = &hdr->task; in filelayout_reset_read()
122 static int filelayout_async_handle_error(struct rpc_task *task, in filelayout_async_handle_error()
228 static int filelayout_read_done_cb(struct rpc_task *task, in filelayout_read_done_cb()
288 static void filelayout_read_prepare(struct rpc_task *task, void *data) in filelayout_read_prepare()
314 static void filelayout_read_call_done(struct rpc_task *task, void *data) in filelayout_read_call_done()
330 static void filelayout_read_count_stats(struct rpc_task *task, void *data) in filelayout_read_count_stats()
337 static int filelayout_write_done_cb(struct rpc_task *task, in filelayout_write_done_cb()
359 static int filelayout_commit_done_cb(struct rpc_task *task, in filelayout_commit_done_cb()
383 static void filelayout_write_prepare(struct rpc_task *task, void *data) in filelayout_write_prepare()
[all …]
/linux-4.4.14/fs/nfs/flexfilelayout/
Dflexfilelayout.c667 nfs4_ff_layout_stat_io_end_read(struct rpc_task *task, in nfs4_ff_layout_stat_io_end_read()
696 nfs4_ff_layout_stat_io_end_write(struct rpc_task *task, in nfs4_ff_layout_stat_io_end_write()
902 struct rpc_task *task = &hdr->task; in ff_layout_reset_write()
945 struct rpc_task *task = &hdr->task; in ff_layout_reset_read()
962 static int ff_layout_async_handle_error_v4(struct rpc_task *task, in ff_layout_async_handle_error_v4()
1074 static int ff_layout_async_handle_error_v3(struct rpc_task *task, in ff_layout_async_handle_error_v3()
1109 static int ff_layout_async_handle_error(struct rpc_task *task, in ff_layout_async_handle_error()
1171 static int ff_layout_read_done_cb(struct rpc_task *task, in ff_layout_read_done_cb()
1245 static int ff_layout_read_prepare_common(struct rpc_task *task, in ff_layout_read_prepare_common()
1276 static void ff_layout_read_prepare_v3(struct rpc_task *task, void *data) in ff_layout_read_prepare_v3()
[all …]
/linux-4.4.14/fs/lockd/
Dclntproc.c327 static struct rpc_task *__nlm_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, c… in __nlm_async_call()
357 struct rpc_task *task; in nlm_do_async_call()
401 struct rpc_task *task; in nlmclnt_async_call()
690 static void nlmclnt_unlock_callback(struct rpc_task *task, void *data) in nlmclnt_unlock_callback()
757 static void nlmclnt_cancel_callback(struct rpc_task *task, void *data) in nlmclnt_cancel_callback()
Dsvc4proc.c225 static void nlm4svc_callback_exit(struct rpc_task *task, void *data) in nlm4svc_callback_exit()
Dsvcproc.c258 static void nlmsvc_callback_exit(struct rpc_task *task, void *data) in nlmsvc_callback_exit()
Dsvclock.c808 static void nlmsvc_grant_callback(struct rpc_task *task, void *data) in nlmsvc_grant_callback()
/linux-4.4.14/fs/nfs/objlayout/
Dobjlayout.c231 struct rpc_task *task; in _rpc_read_complete()
235 task = container_of(work, struct rpc_task, u.tk_work); in _rpc_read_complete()
313 struct rpc_task *task; in _rpc_write_complete()
317 task = container_of(work, struct rpc_task, u.tk_work); in _rpc_write_complete()
/linux-4.4.14/fs/nfsd/
Dnfs4callback.c805 static void nfsd4_cb_probe_done(struct rpc_task *task, void *calldata) in nfsd4_cb_probe_done()
853 static bool nfsd41_cb_get_slot(struct nfs4_client *clp, struct rpc_task *task) in nfsd41_cb_get_slot()
871 static void nfsd4_cb_prepare(struct rpc_task *task, void *calldata) in nfsd4_cb_prepare()
891 static bool nfsd4_cb_sequence_done(struct rpc_task *task, struct nfsd4_callback *cb) in nfsd4_cb_sequence_done()
969 static void nfsd4_cb_done(struct rpc_task *task, void *calldata) in nfsd4_cb_done()
Dstate.h77 int (*done)(struct nfsd4_callback *, struct rpc_task *);
Dnfs4layouts.c623 nfsd4_cb_layout_done(struct nfsd4_callback *cb, struct rpc_task *task) in nfsd4_cb_layout_done()
Dnfs4state.c3618 struct rpc_task *task) in nfsd4_cb_recall_done()
/linux-4.4.14/net/sunrpc/auth_gss/
Dauth_gss.c419 gss_upcall_callback(struct rpc_task *task) in gss_upcall_callback()
558 gss_refresh_upcall(struct rpc_task *task) in gss_refresh_upcall()
1212 struct rpc_task *task; in gss_destroying_context()
1476 gss_marshal(struct rpc_task *task, __be32 *p) in gss_marshal()
1531 static int gss_renew_cred(struct rpc_task *task) in gss_renew_cred()
1574 gss_refresh(struct rpc_task *task) in gss_refresh()
1598 gss_refresh_null(struct rpc_task *task) in gss_refresh_null()
1604 gss_validate(struct rpc_task *task, __be32 *p) in gss_validate()
1822 gss_wrap_req(struct rpc_task *task, in gss_wrap_req()
1934 gss_unwrap_resp(struct rpc_task *task, in gss_unwrap_resp()
/linux-4.4.14/net/sunrpc/xprtrdma/
Dtransport.c459 xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_rdma_connect()
489 xprt_rdma_allocate(struct rpc_task *task, size_t size) in xprt_rdma_allocate()
604 xprt_rdma_send_request(struct rpc_task *task) in xprt_rdma_send_request()
/linux-4.4.14/fs/nfs/blocklayout/
Dblocklayout.c203 struct rpc_task *task; in bl_read_cleanup()
206 task = container_of(work, struct rpc_task, u.tk_work); in bl_read_cleanup()
334 struct rpc_task *task = container_of(work, struct rpc_task, u.tk_work); in bl_write_cleanup()