I am using perf to record both kernel and user data. This worked with perf 4.18. With perf 4.19, I noticed that kernel module symbols were no longer being resolved. They appear as [unknown] in `perf report` and have a hexadecimal address. The modules I am interested in are ext4 and xfs, but I've noticed this happening for every module. I bisected this bug to the following commit: commit edeb0c90df3581b821a764052d185df985f8b8dc Author: Arnaldo Carvalho de Melo <acme@redhat.com> Date: Tue Oct 16 17:08:29 2018 -0300 perf tools: Stop fallbacking to kallsyms for vdso symbols lookup
Can you try with 'perf script' to see if the backtraces are ok? I've reproduced the problem with 'perf report --stdio' and I'm debugging this now.
It looks like `perf script` is ok. It's able to resolve addresses to symbols+offsets. The command I am using is: perf record --all-kernel -g --call-graph dwarf [workload]