From 2482c1cd9ef9a0c859f4a273c84bf86cd77ff9bf Mon Sep 17 00:00:00 2001 From: Brendan Gregg Date: Fri, 19 Feb 2016 16:14:01 -0800 Subject: [PATCH] typo, and improve comment --- tools/tcpconnlat.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tcpconnlat.py b/tools/tcpconnlat.py index f9ac4ec23e4b..5d323c80bffb 100755 --- a/tools/tcpconnlat.py +++ b/tools/tcpconnlat.py @@ -93,7 +93,8 @@ // See tcp_v4_do_rcv() and tcp_v6_do_rcv(). So TCP_ESTBALISHED and TCP_LISTEN // are fast path and processed elsewhere, and leftovers are processed by -// tcp_rcv_state_process(). We can trace this for handshack completion. +// tcp_rcv_state_process(). We can trace this for handshake completion. +// This should all be switched to static tracepoints when available. int trace_tcp_rcv_state_process(struct pt_regs *ctx, struct sock *sk) { u32 pid = bpf_get_current_pid_tgid();