diff options
author | Tom Tucker <tom@opengridcomputing.com> | 2008-05-07 16:47:42 -0400 |
---|---|---|
committer | Tom Tucker <tom@opengridcomputing.com> | 2008-05-19 08:34:01 -0400 |
commit | 008fdbc57164b0ac237ad6ee2766944f02ac9c28 (patch) | |
tree | e1637f39b6454a6ae94a00e90bd047d47bdfdf7e /net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | |
parent | af261af4db14230fb35bcdc0ba9ef78ed6cf7bc1 (diff) |
svcrdma: Change svc_rdma_send_error return type to void
The svc_rdma_send_error function is called when an RPCRDMA protocol
error is detected. This function attempts to post an error reply message.
Since an error posting to a transport in error is ignored, change
the return type to void.
Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
Diffstat (limited to 'net/sunrpc/xprtrdma/svc_rdma_recvfrom.c')
-rw-r--r-- | net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c index c016f5ca0ce5..6b16d8cd5682 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | |||
@@ -497,7 +497,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp) | |||
497 | /* If the request is invalid, reply with an error */ | 497 | /* If the request is invalid, reply with an error */ |
498 | if (len < 0) { | 498 | if (len < 0) { |
499 | if (len == -ENOSYS) | 499 | if (len == -ENOSYS) |
500 | (void)svc_rdma_send_error(rdma_xprt, rmsgp, ERR_VERS); | 500 | svc_rdma_send_error(rdma_xprt, rmsgp, ERR_VERS); |
501 | goto close_out; | 501 | goto close_out; |
502 | } | 502 | } |
503 | 503 | ||