You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently kernel is built with flags (+ CONFIG_IKHEADERS) specified in check_kernel_features.sh except CONFIG_BPF_JIT, CONFIG_UPROBES and CONFIG_UPROBE_EVENTS.
Could you please suggest what can be a reason of such behavior if you've faced with the similar problem? Or what steps can be done to troubleshot it?
Thanks!
The text was updated successfully, but these errors were encountered:
@pkropachev: that trace looks correct -- first few bpf syscalls are from bpftrace checking which features are available, and then finally the generated BPF code is successfully loaded (if you also trace ioctl calls you should see that program getting attached to a kprobe).
Perhaps do_nanosleep() just isn't firing? Running e.g. sleep 1 in another shell should trigger it. Any issues attaching to other kernel functions?
Hi!
I've built bpftools (including bpftrace) for aach64.
Tracepoints are caught fine, but I can't get any output for kernel probes (kprobes).
Currently kernel is built with flags (+
CONFIG_IKHEADERS
) specified in check_kernel_features.sh exceptCONFIG_BPF_JIT
,CONFIG_UPROBES
andCONFIG_UPROBE_EVENTS
.Could you please suggest what can be a reason of such behavior if you've faced with the similar problem? Or what steps can be done to troubleshot it?
Thanks!
The text was updated successfully, but these errors were encountered: