diff options
author | Ricardo Labiaga <Ricardo.Labiaga@netapp.com> | 2009-04-01 09:23:28 -0400 |
---|---|---|
committer | Benny Halevy <bhalevy@panasas.com> | 2009-06-17 17:11:40 -0400 |
commit | dd2b63d049480979016b959abc2d141cdddb1389 (patch) | |
tree | 3b1f9a59b5c0a7c6027ec102a034a4236b41ebd6 /net/sunrpc/backchannel_rqst.c | |
parent | 281fe15dc1d6ad46992f18b7a6644269ec5f7138 (diff) |
nfs41: Rename rq_received to rq_reply_bytes_recvd
The 'rq_received' member of 'struct rpc_rqst' is used to track when we
have received a reply to our request. With v4.1, the backchannel
can now accept callback requests over the existing connection. Rename
this field to make it clear that it is only used for tracking reply bytes
and not all bytes received on the connection.
Signed-off-by: Ricardo Labiaga <Ricardo.Labiaga@netapp.com>
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Diffstat (limited to 'net/sunrpc/backchannel_rqst.c')
-rw-r--r-- | net/sunrpc/backchannel_rqst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/backchannel_rqst.c b/net/sunrpc/backchannel_rqst.c index f56e18a23498..5a7d342e3087 100644 --- a/net/sunrpc/backchannel_rqst.c +++ b/net/sunrpc/backchannel_rqst.c | |||
@@ -230,7 +230,7 @@ struct rpc_rqst *xprt_alloc_bc_request(struct rpc_xprt *xprt) | |||
230 | 230 | ||
231 | if (req != NULL) { | 231 | if (req != NULL) { |
232 | set_bit(RPC_BC_PA_IN_USE, &req->rq_bc_pa_state); | 232 | set_bit(RPC_BC_PA_IN_USE, &req->rq_bc_pa_state); |
233 | req->rq_received = 0; | 233 | req->rq_reply_bytes_recvd = 0; |
234 | req->rq_bytes_sent = 0; | 234 | req->rq_bytes_sent = 0; |
235 | memcpy(&req->rq_private_buf, &req->rq_rcv_buf, | 235 | memcpy(&req->rq_private_buf, &req->rq_rcv_buf, |
236 | sizeof(req->rq_private_buf)); | 236 | sizeof(req->rq_private_buf)); |