diff options
| author | Simon Derr <simon.derr@bull.net> | 2013-06-21 09:32:43 -0400 |
|---|---|---|
| committer | Eric Van Hensbergen <ericvh@gmail.com> | 2013-07-07 23:18:18 -0400 |
| commit | 80b45261a0b263536b043c5ccfc4ba4fc27c2acc (patch) | |
| tree | b4d06110f4f121b8e2c26e521c164f5c668e2cc0 /include/net/9p | |
| parent | 1cff33069a4a1ac9ed080756113ecd17ad408282 (diff) | |
9P: Add cancelled() to the transport functions.
RDMA needs to post a buffer for each incoming reply.
Hence it needs to keep count of these and needs to be
aware of whether a flushed request has received a reply
or not.
This patch adds the cancelled() callback to the transport modules.
It is called when RFLUSH has been received and that the corresponding
request will never receive a reply.
Signed-off-by: Simon Derr <simon.derr@bull.net>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include/net/9p')
| -rw-r--r-- | include/net/9p/transport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/9p/transport.h b/include/net/9p/transport.h index 9a36d9297114..d9fa68f26c41 100644 --- a/include/net/9p/transport.h +++ b/include/net/9p/transport.h | |||
| @@ -40,6 +40,8 @@ | |||
| 40 | * @close: member function to discard a connection on this transport | 40 | * @close: member function to discard a connection on this transport |
| 41 | * @request: member function to issue a request to the transport | 41 | * @request: member function to issue a request to the transport |
| 42 | * @cancel: member function to cancel a request (if it hasn't been sent) | 42 | * @cancel: member function to cancel a request (if it hasn't been sent) |
| 43 | * @cancelled: member function to notify that a cancelled request will not | ||
| 44 | * not receive a reply | ||
| 43 | * | 45 | * |
| 44 | * This is the basic API for a transport module which is registered by the | 46 | * This is the basic API for a transport module which is registered by the |
| 45 | * transport module with the 9P core network module and used by the client | 47 | * transport module with the 9P core network module and used by the client |
| @@ -58,6 +60,7 @@ struct p9_trans_module { | |||
| 58 | void (*close) (struct p9_client *); | 60 | void (*close) (struct p9_client *); |
| 59 | int (*request) (struct p9_client *, struct p9_req_t *req); | 61 | int (*request) (struct p9_client *, struct p9_req_t *req); |
| 60 | int (*cancel) (struct p9_client *, struct p9_req_t *req); | 62 | int (*cancel) (struct p9_client *, struct p9_req_t *req); |
| 63 | int (*cancelled)(struct p9_client *, struct p9_req_t *req); | ||
| 61 | int (*zc_request)(struct p9_client *, struct p9_req_t *, | 64 | int (*zc_request)(struct p9_client *, struct p9_req_t *, |
| 62 | char *, char *, int , int, int, int); | 65 | char *, char *, int , int, int, int); |
| 63 | }; | 66 | }; |
