Skip to content

Commit

Permalink
regenerate sources from PR #1294 (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomac authored Oct 31, 2024
1 parent 307a1db commit f01d008
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions bpf/trace_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ static __always_inline unsigned char *bpf_strstr_tp_loop(unsigned char *buf, int
bpf_loop(nr_loops, tp_match, &data, 0);

if (data.pos) {
return (data.pos > (TRACE_BUF_SIZE - TRACE_PARENT_HEADER_LEN)) ? 0 : &(buf[data.pos]);
return (data.pos > (TRACE_BUF_SIZE - TRACE_PARENT_HEADER_LEN)) ? NULL : &(buf[data.pos]);
}

return 0;
return NULL;
}
#endif

Expand Down
2 changes: 1 addition & 1 deletion pkg/internal/ebpf/generictracer/bpf_arm64_bpfel.o
Git LFS file not shown
2 changes: 1 addition & 1 deletion pkg/internal/ebpf/generictracer/bpf_debug_arm64_bpfel.o
Git LFS file not shown
2 changes: 1 addition & 1 deletion pkg/internal/ebpf/generictracer/bpf_debug_x86_bpfel.o
Git LFS file not shown
4 changes: 2 additions & 2 deletions pkg/internal/ebpf/generictracer/bpf_tp_arm64_bpfel.o
Git LFS file not shown
4 changes: 2 additions & 2 deletions pkg/internal/ebpf/generictracer/bpf_tp_debug_arm64_bpfel.o
Git LFS file not shown
4 changes: 2 additions & 2 deletions pkg/internal/ebpf/generictracer/bpf_tp_debug_x86_bpfel.o
Git LFS file not shown
4 changes: 2 additions & 2 deletions pkg/internal/ebpf/generictracer/bpf_tp_x86_bpfel.o
Git LFS file not shown
2 changes: 1 addition & 1 deletion pkg/internal/ebpf/generictracer/bpf_x86_bpfel.o
Git LFS file not shown
2 changes: 1 addition & 1 deletion pkg/internal/netolly/ebpf/netsk_x86_bpfel.o
Git LFS file not shown

0 comments on commit f01d008

Please sign in to comment.