Hi all! If I can I would like to ask one question about the `libbpf_probe_bpf_prog_type` API. The idea is to use `fentry/fexit` bpf progs only if they are available and fall back to simple `kprobes` when they are not. Is there a way to probe `BPF_TRACE_FENTRY` support with `libbpf` APIs? I was looking at `libbpf_probe_bpf_prog_type` API but it seems to check the `prog_type` rather than the `attach_type`, when I call it `libbpf_probe_bpf_prog_type(BPF_PROG_TYPE_TRACING, NULL);` it returns `1` even if `fentry/fexit` progs are not supported on my machine. Is there a way to probe this feature with other `libbpf` APIs? Thank you in advance for your time, Andrea