aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/9p/transport.h3
-rw-r--r--net/9p/client.c12
-rw-r--r--net/9p/trans_rdma.c11
3 files changed, 23 insertions, 3 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};
diff --git a/net/9p/client.c b/net/9p/client.c
index d18a0b22f62c..8b93cae2d11d 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -658,12 +658,18 @@ static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
658 658
659 /* 659 /*
660 * if we haven't received a response for oldreq, 660 * if we haven't received a response for oldreq,
661 * remove it from the list. 661 * remove it from the list, and notify the transport
662 * layer that the reply will never arrive.
662 */ 663 */
663 spin_lock(&c->lock); 664 spin_lock(&c->lock);
664 if (oldreq->status == REQ_STATUS_FLSH) 665 if (oldreq->status == REQ_STATUS_FLSH) {
665 list_del(&oldreq->req_list); 666 list_del(&oldreq->req_list);
666 spin_unlock(&c->lock); 667 spin_unlock(&c->lock);
668 if (c->trans_mod->cancelled)
669 c->trans_mod->cancelled(c, req);
670 } else {
671 spin_unlock(&c->lock);
672 }
667 673
668 p9_free_req(c, req); 674 p9_free_req(c, req);
669 return 0; 675 return 0;
diff --git a/net/9p/trans_rdma.c b/net/9p/trans_rdma.c
index 8f68df5d2973..928f2bb9bf8d 100644
--- a/net/9p/trans_rdma.c
+++ b/net/9p/trans_rdma.c
@@ -588,6 +588,17 @@ static int rdma_cancel(struct p9_client *client, struct p9_req_t *req)
588 return 1; 588 return 1;
589} 589}
590 590
591/* A request has been fully flushed without a reply.
592 * That means we have posted one buffer in excess.
593 */
594static int rdma_cancelled(struct p9_client *client, struct p9_req_t *req)
595{
596 struct p9_trans_rdma *rdma = client->trans;
597
598 atomic_inc(&rdma->excess_rc);
599 return 0;
600}
601
591/** 602/**
592 * trans_create_rdma - Transport method for creating atransport instance 603 * trans_create_rdma - Transport method for creating atransport instance
593 * @client: client instance 604 * @client: client instance