diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-10-05 02:19:22 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-06 02:29:00 +0300 |
commit | 8538d29cea9530f114159e06bfa31b2358161493 (patch) | |
tree | 3e48fce47f0103d9597997d4a46fb5c913371911 /net/tls/Makefile | |
parent | 6f4c930e02355664d89c976eccea5d999a90de16 (diff) | |
download | linux-8538d29cea9530f114159e06bfa31b2358161493.tar.xz |
net/tls: add tracing for device/offload events
Add tracing of device-related interaction to aid performance
analysis, especially around resync:
tls:tls_device_offload_set
tls:tls_device_rx_resync_send
tls:tls_device_rx_resync_nh_schedule
tls:tls_device_rx_resync_nh_delay
tls:tls_device_tx_resync_req
tls:tls_device_tx_resync_send
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tls/Makefile')
-rw-r--r-- | net/tls/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/tls/Makefile b/net/tls/Makefile index 95d8c06a14b9..0606d43d7582 100644 --- a/net/tls/Makefile +++ b/net/tls/Makefile @@ -3,9 +3,11 @@ # Makefile for the TLS subsystem. # +CFLAGS_trace.o := -I$(src) + obj-$(CONFIG_TLS) += tls.o -tls-y := tls_main.o tls_sw.o +tls-y := tls_main.o tls_sw.o trace.o tls-$(CONFIG_TLS_TOE) += tls_toe.o tls-$(CONFIG_TLS_DEVICE) += tls_device.o tls_device_fallback.o |