diff options
author | J. Bruce Fields <bfields@redhat.com> | 2010-10-23 11:55:53 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-25 17:59:34 -0400 |
commit | 42d7ba3d6d56a6cbc773284896108b1e2ebcee81 (patch) | |
tree | 3d0d908c39ae228e4b51c3bec8d5bd5188397637 /net/sunrpc | |
parent | 01dba075d571f5a8b7dcb153fdfd14e981c4cee3 (diff) | |
download | op-kernel-dev-42d7ba3d6d56a6cbc773284896108b1e2ebcee81.zip op-kernel-dev-42d7ba3d6d56a6cbc773284896108b1e2ebcee81.tar.gz |
svcrpc: svc_tcp_sendto XPT_DEAD check is redundant
The only caller (svc_send) has already checked XPT_DEAD.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/svcsock.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index 1454739b..07919e1 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c @@ -1135,9 +1135,6 @@ static int svc_tcp_sendto(struct svc_rqst *rqstp) reclen = htonl(0x80000000|((xbufp->len ) - 4)); memcpy(xbufp->head[0].iov_base, &reclen, 4); - if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags)) - return -ENOTCONN; - sent = svc_sendto(rqstp, &rqstp->rq_res); if (sent != xbufp->len) { printk(KERN_NOTICE |