summaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2010-10-23 11:23:46 -0400
committerJ. Bruce Fields <bfields@redhat.com>2010-10-25 17:59:33 -0400
commit01dba075d571f5a8b7dcb153fdfd14e981c4cee3 (patch)
treeb443dff71fd4addcd11b873f356bbd247cadaa43 /net/sunrpc
parentac9303eb74471bc2567960b47497a8bfbe1e5a03 (diff)
downloadop-kernel-dev-01dba075d571f5a8b7dcb153fdfd14e981c4cee3.zip
op-kernel-dev-01dba075d571f5a8b7dcb153fdfd14e981c4cee3.tar.gz
svcrpc: no need for XPT_DEAD check in svc_xprt_enqueue
If any xprt marked DEAD is also left BUSY for the rest of its life, then the XPT_DEAD check here is superfluous--we'll get the same result from the XPT_BUSY check just after. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/svc_xprt.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index c65a472..c82fe73 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -330,12 +330,6 @@ void svc_xprt_enqueue(struct svc_xprt *xprt)
"svc_xprt_enqueue: "
"threads and transports both waiting??\n");
- if (test_bit(XPT_DEAD, &xprt->xpt_flags)) {
- /* Don't enqueue dead transports */
- dprintk("svc: transport %p is dead, not enqueued\n", xprt);
- goto out_unlock;
- }
-
pool->sp_stats.packets++;
/* Mark transport as busy. It will remain in this state until
OpenPOWER on IntegriCloud