Matteo Facci
Matteo Facci
Thanks for your help, indeed you're right. To give you a brief overview of how I am profiling stack traces, this is the structure of the current BPF program I'm...
`stack_trace_t` is defined as follows: ```c #define MAX_STACK_RAWTP 100 struct stack_trace_t { int pid; int kern_stack_size; int user_stack_size; __u64 kern_stack[MAX_STACK_RAWTP]; __u64 user_stack[MAX_STACK_RAWTP]; }; ``` in an external header. However, I...
Hi Daniel, I can confirm you that in [247c4c5](https://github.com/libbpf/blazesym/commit/247c4c512ac784a99fbffde6ce07e85db9e15991) now it works as expected 🎉 Indeed, tracing Dialer app, one of the backtraces I can get is the following: ```c...