diff options
Diffstat (limited to 'include/linux/sunrpc/xprt.h')
-rw-r--r-- | include/linux/sunrpc/xprt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 951cb9b7d02b..30834be03011 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
@@ -117,12 +117,12 @@ struct rpc_xprt_ops { | |||
117 | void (*alloc_slot)(struct rpc_xprt *xprt, struct rpc_task *task); | 117 | void (*alloc_slot)(struct rpc_xprt *xprt, struct rpc_task *task); |
118 | void (*rpcbind)(struct rpc_task *task); | 118 | void (*rpcbind)(struct rpc_task *task); |
119 | void (*set_port)(struct rpc_xprt *xprt, unsigned short port); | 119 | void (*set_port)(struct rpc_xprt *xprt, unsigned short port); |
120 | void (*connect)(struct rpc_task *task); | 120 | void (*connect)(struct rpc_xprt *xprt, struct rpc_task *task); |
121 | void * (*buf_alloc)(struct rpc_task *task, size_t size); | 121 | void * (*buf_alloc)(struct rpc_task *task, size_t size); |
122 | void (*buf_free)(void *buffer); | 122 | void (*buf_free)(void *buffer); |
123 | int (*send_request)(struct rpc_task *task); | 123 | int (*send_request)(struct rpc_task *task); |
124 | void (*set_retrans_timeout)(struct rpc_task *task); | 124 | void (*set_retrans_timeout)(struct rpc_task *task); |
125 | void (*timer)(struct rpc_task *task); | 125 | void (*timer)(struct rpc_xprt *xprt, struct rpc_task *task); |
126 | void (*release_request)(struct rpc_task *task); | 126 | void (*release_request)(struct rpc_task *task); |
127 | void (*close)(struct rpc_xprt *xprt); | 127 | void (*close)(struct rpc_xprt *xprt); |
128 | void (*destroy)(struct rpc_xprt *xprt); | 128 | void (*destroy)(struct rpc_xprt *xprt); |
@@ -313,7 +313,7 @@ void xprt_set_retrans_timeout_rtt(struct rpc_task *task); | |||
313 | void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status); | 313 | void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status); |
314 | void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action); | 314 | void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action); |
315 | void xprt_write_space(struct rpc_xprt *xprt); | 315 | void xprt_write_space(struct rpc_xprt *xprt); |
316 | void xprt_adjust_cwnd(struct rpc_task *task, int result); | 316 | void xprt_adjust_cwnd(struct rpc_xprt *xprt, struct rpc_task *task, int result); |
317 | struct rpc_rqst * xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid); | 317 | struct rpc_rqst * xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid); |
318 | void xprt_complete_rqst(struct rpc_task *task, int copied); | 318 | void xprt_complete_rqst(struct rpc_task *task, int copied); |
319 | void xprt_release_rqst_cong(struct rpc_task *task); | 319 | void xprt_release_rqst_cong(struct rpc_task *task); |