From: Tom Tucker Date: Fri, 25 Apr 2008 16:07:10 +0000 (-0500) Subject: svc: Remove extra check for XPT_DEAD bit in svc_xprt_enqueue X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fc63a050861a53ba99a6222229cda555796d669e;p=linux-beck.git svc: Remove extra check for XPT_DEAD bit in svc_xprt_enqueue Remove a redundant check for the XPT_DEAD bit in the svc_xprt_enqueue function. This same bit is checked below while holding the pool lock and prints a debug message if found to be dead. Signed-off-by: Tom Tucker --- diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c index d8e8d79a8451..cac3f82fca61 100644 --- a/net/sunrpc/svc_xprt.c +++ b/net/sunrpc/svc_xprt.c @@ -296,8 +296,6 @@ void svc_xprt_enqueue(struct svc_xprt *xprt) if (!(xprt->xpt_flags & ((1<xpt_flags)) - return; cpu = get_cpu(); pool = svc_pool_for_cpu(xprt->xpt_server, cpu);