diff options
author | Andi Shyti <andi@etezian.org> | 2013-07-25 04:54:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-07-30 18:54:28 -0400 |
commit | 60ff779c4abba37a31bd8624ef45026f7fb1b70c (patch) | |
tree | eb0cec51eb8c3a9885a7014cd46333973ec5b988 /net/9p | |
parent | 4ce1fd6110e1fb1747194d830a3f85952ad06172 (diff) |
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 'net/9p')
-rw-r--r-- | net/9p/client.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index 8b93cae2d11d..ba93bdab2701 100644 --- a/net/9p/client.c +++ b/net/9p/client.c | |||
@@ -658,17 +658,12 @@ 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, and notify the transport | 661 | * remove it from the list |
662 | * layer that the reply will never arrive. | ||
663 | */ | 662 | */ |
664 | spin_lock(&c->lock); | ||
665 | if (oldreq->status == REQ_STATUS_FLSH) { | 663 | if (oldreq->status == REQ_STATUS_FLSH) { |
664 | spin_lock(&c->lock); | ||
666 | list_del(&oldreq->req_list); | 665 | list_del(&oldreq->req_list); |
667 | spin_unlock(&c->lock); | 666 | 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 | ||
674 | p9_free_req(c, req); | 669 | p9_free_req(c, req); |