diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2023-01-24 15:40:22 -0500 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-02-20 09:20:55 -0500 |
commit | 319951eba0fc412a78a8fe3d2ee5e143cc318c14 (patch) | |
tree | fd7f1efbcc0ab0a1a8f07f75beddae22707c4a92 /include/linux/sunrpc | |
parent | fcebda5a5d0d53f5603e7b9c04b5b63abe4bac03 (diff) | |
download | lwn-319951eba0fc412a78a8fe3d2ee5e143cc318c14.tar.gz lwn-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 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index d42a75b3be10..775368802762 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h @@ -26,7 +26,6 @@ struct svc_xprt_ops { void (*xpo_release_rqst)(struct svc_rqst *); void (*xpo_detach)(struct svc_xprt *); void (*xpo_free)(struct svc_xprt *); - void (*xpo_secure_port)(struct svc_rqst *rqstp); void (*xpo_kill_temp_xprt)(struct svc_xprt *); void (*xpo_start_tls)(struct svc_xprt *); }; |