diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2023-04-18 05:15:28 +0300 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-04-28 01:49:24 +0300 |
commit | 695bc1f32c6bc806218b322096b23dfd601e59ca (patch) | |
tree | ed2913f19b04f22a4500ca8ef85185b5f8ca7a30 /net/sunrpc/svc_xprt.c | |
parent | 5e052dda121e2870dd87181783da4a95d7d2927b (diff) | |
download | linux-695bc1f32c6bc806218b322096b23dfd601e59ca.tar.xz |
SUNRPC: Clear rq_xid when receiving a new RPC Call
This is an eye-catcher for tracepoints that record the XID: it means
svc_rqst() has not received a full RPC Call with an XID yet.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'net/sunrpc/svc_xprt.c')
-rw-r--r-- | net/sunrpc/svc_xprt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c index e3952b690f54..3b9708b39e35 100644 --- a/net/sunrpc/svc_xprt.c +++ b/net/sunrpc/svc_xprt.c @@ -701,6 +701,8 @@ static int svc_alloc_arg(struct svc_rqst *rqstp) arg->page_len = (pages-2)*PAGE_SIZE; arg->len = (pages-1)*PAGE_SIZE; arg->tail[0].iov_len = 0; + + rqstp->rq_xid = xdr_zero; return 0; } |