aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/9p/transport.h
diff options
context:
space:
mode:
authorAndi Shyti <andi@etezian.org>2013-07-25 10:54:24 +0200
committerDavid S. Miller <davem@davemloft.net>2013-07-30 15:54:28 -0700
commit60ff779c4abba37a31bd8624ef45026f7fb1b70c (patch)
treeeb0cec51eb8c3a9885a7014cd46333973ec5b988 /include/net/9p/transport.h
parentbe2net: don't use dev_err when AER enabling fails (diff)
downloadlinux-dev-60ff779c4abba37a31bd8624ef45026f7fb1b70c.tar.xz
linux-dev-60ff779c4abba37a31bd8624ef45026f7fb1b70c.zip
9p: client: remove unused code and any reference to "cancelled" function
This patch reverts commit 80b45261a0b263536b043c5ccfc4ba4fc27c2acc which was implementing a 'cancelled' functionality to notify that a cancelled request will not be replied. This implementation was not used anywhere and therefore removed. Signed-off-by: Andi Shyti <andi@etezian.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/9p/transport.h')
-rw-r--r--include/net/9p/transport.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/9p/transport.h b/include/net/9p/transport.h
index d9fa68f26c41..9a36d9297114 100644
--- a/include/net/9p/transport.h
+++ b/include/net/9p/transport.h
@@ -40,8 +40,6 @@
* @close: member function to discard a connection on this transport
* @request: member function to issue a request to the transport
* @cancel: member function to cancel a request (if it hasn't been sent)
- * @cancelled: member function to notify that a cancelled request will not
- * not receive a reply
*
* This is the basic API for a transport module which is registered by the
* transport module with the 9P core network module and used by the client
@@ -60,7 +58,6 @@ struct p9_trans_module {
void (*close) (struct p9_client *);
int (*request) (struct p9_client *, struct p9_req_t *req);
int (*cancel) (struct p9_client *, struct p9_req_t *req);
- int (*cancelled)(struct p9_client *, struct p9_req_t *req);
int (*zc_request)(struct p9_client *, struct p9_req_t *,
char *, char *, int , int, int, int);
};