diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-10-03 11:18:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-04 14:07:07 -0700 |
commit | 0eb8745e03c9ed2a7412c7a844ebc4f0e4f80de4 (patch) | |
tree | 153494c5892017e5043bfc0e9f37d3dd464d5eeb /include/net/tls_toe.h | |
parent | 08700dab816847d5e600ef263155fb04ea4b312d (diff) | |
download | linux-0eb8745e03c9ed2a7412c7a844ebc4f0e4f80de4.tar.bz2 |
net/tls: rename tls_hw_* functions tls_toe_*
The tls_hw_* functions are quite confusingly named, since they
are related to the TOE-offload, not TLS_HW offload which doesn't
require TOE. Rename them.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: John Hurley <john.hurley@netronome.com>
Reviewed-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tls_toe.h')
-rw-r--r-- | include/net/tls_toe.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/tls_toe.h b/include/net/tls_toe.h index 3bb39c795aed..b3aa7593ce2c 100644 --- a/include/net/tls_toe.h +++ b/include/net/tls_toe.h @@ -69,9 +69,9 @@ struct tls_toe_device { struct kref kref; }; -int tls_hw_prot(struct sock *sk); -int tls_hw_hash(struct sock *sk); -void tls_hw_unhash(struct sock *sk); +int tls_toe_bypass(struct sock *sk); +int tls_toe_hash(struct sock *sk); +void tls_toe_unhash(struct sock *sk); void tls_toe_register_device(struct tls_toe_device *device); void tls_toe_unregister_device(struct tls_toe_device *device); |