diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-10-06 21:09:30 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-07 09:58:27 -0400 |
commit | 4de30a8d58c90e18140342cdcb74903d2e4fbb62 (patch) | |
tree | 4f40a67fdceaf1d22f75fc3874606bdb482d90c5 /include/net/tls.h | |
parent | 34ef1ed198cd647bb1cffff79f63814dfaae7c93 (diff) | |
download | linux-4de30a8d58c90e18140342cdcb74903d2e4fbb62.tar.gz linux-4de30a8d58c90e18140342cdcb74903d2e4fbb62.tar.bz2 linux-4de30a8d58c90e18140342cdcb74903d2e4fbb62.zip |
net/tls: pass context to tls_device_decrypted()
Avoid unnecessary pointer chasing and calculations, callers already
have most of the state tls_device_decrypted() needs.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tls.h')
-rw-r--r-- | include/net/tls.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/net/tls.h b/include/net/tls.h index 24c37bffc961..b809f2362049 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -641,7 +641,8 @@ int tls_set_device_offload_rx(struct sock *sk, struct tls_context *ctx); void tls_device_offload_cleanup_rx(struct sock *sk); void tls_device_rx_resync_new_rec(struct sock *sk, u32 rcd_len, u32 seq); void tls_offload_tx_resync_request(struct sock *sk, u32 got_seq, u32 exp_seq); -int tls_device_decrypted(struct sock *sk, struct sk_buff *skb); +int tls_device_decrypted(struct sock *sk, struct tls_context *tls_ctx, + struct sk_buff *skb, struct strp_msg *rxm); #else static inline void tls_device_init(void) {} static inline void tls_device_cleanup(void) {} @@ -664,7 +665,9 @@ static inline void tls_device_offload_cleanup_rx(struct sock *sk) {} static inline void tls_device_rx_resync_new_rec(struct sock *sk, u32 rcd_len, u32 seq) {} -static inline int tls_device_decrypted(struct sock *sk, struct sk_buff *skb) +static inline int +tls_device_decrypted(struct sock *sk, struct tls_context *tls_ctx, + struct sk_buff *skb, struct strp_msg *rxm) { return 0; } |