This is an automated email from the ASF dual-hosted git repository.
liuhan pushed a commit to branch reduce-handle-connect-time
in repository https://gitbox.apache.org/repos/asf/skywalking-rover.git
The following commit(s) were added to refs/heads/reduce-handle-connect-time by
this push:
new 2059933 fix
2059933 is described below
commit 2059933281eaa20284e009ac5b78b36bfa995ddd
Author: mrproliu <[email protected]>
AuthorDate: Fri Dec 27 22:37:52 2024 +0800
fix
---
bpf/accesslog/syscalls/connect.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bpf/accesslog/syscalls/connect.c b/bpf/accesslog/syscalls/connect.c
index d918ab1..d3db9c8 100644
--- a/bpf/accesslog/syscalls/connect.c
+++ b/bpf/accesslog/syscalls/connect.c
@@ -68,7 +68,7 @@ int tracepoint_exit_connect(struct syscall_trace_exit *ctx) {
connect_args = bpf_map_lookup_elem(&conecting_args, &id);
if (connect_args) {
process_connect(ctx, id, connect_args, ctx->ret);
- bpf_printk("--finish sys connect: %lld, %lld", id,
connect_args.randomid);
+ bpf_printk("--finish sys connect: %lld, %lld", id,
connect_args->randomid);
}
bpf_map_delete_elem(&conecting_args, &id);