On Fri, Aug 22, 2014 at 03:10:50PM -0400, Chuck Lever wrote: > xprt_lookup_rqst() and bc_send_request() display a byte-swapped XID, > but receive_cb_reply() does not. Thanks, applying.--b. > > Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> > --- > > net/sunrpc/svcsock.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c > index c24a8ff..6ed8729 100644 > --- a/net/sunrpc/svcsock.c > +++ b/net/sunrpc/svcsock.c > @@ -1036,7 +1036,7 @@ static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp) > "%s: Got unrecognized reply: " > "calldir 0x%x xpt_bc_xprt %p xid %08x\n", > __func__, ntohl(calldir), > - bc_xprt, xid); > + bc_xprt, ntohl(xid)); > return -EAGAIN; > } > > -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html