diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2023-01-24 21:40:22 +0100 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-02-20 15:20:55 +0100 |
commit | 319951eba0fc412a78a8fe3d2ee5e143cc318c14 (patch) | |
tree | fd7f1efbcc0ab0a1a8f07f75beddae22707c4a92 /net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | |
parent | SUNRPC: Clean up the svc_xprt_flags() macro (diff) | |
download | linux-319951eba0fc412a78a8fe3d2ee5e143cc318c14.tar.xz linux-319951eba0fc412a78a8fe3d2ee5e143cc318c14.zip |
SUNRPC: Remove ->xpo_secure_port()
There's no need for the cost of this extra virtual function call
during every RPC transaction: the RQ_SECURE bit can be set properly
in ->xpo_recvfrom() instead.
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'net/sunrpc/xprtrdma/svc_rdma_recvfrom.c')
-rw-r--r-- | net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c index 5242ad121450..1c658fa43063 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c @@ -847,6 +847,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp) rqstp->rq_xprt_ctxt = ctxt; rqstp->rq_prot = IPPROTO_MAX; svc_xprt_copy_addrs(rqstp, xprt); + set_bit(RQ_SECURE, &rqstp->rq_flags); return rqstp->rq_arg.len; out_err: |