perf-events 在 debian 8 jessie 上不显示 StackTraces

perf-events 在 debian 8 jessie 上不显示 StackTraces

我正在尝试使用 debian 8 jessie 上的 perf-events 分析一个简单的 C 程序。我可以看到符号,但无法获取堆栈跟踪。同样的过程在 ubuntu 16.04 上生成了良好的堆栈跟踪。

我已经安装了linux-image-amd64-dbglibc6-dbg我已确认内核配置参数包括CONFIG_KALLSYMS=y

我已经编译了该程序以gcc -g3 -O0 hello.c启用调试符号。

我使用以下命令开始进行分析。 sudo perf record -g ./a.out

我使用以下命令生成火焰图

sudo perf script | ~/code/FlameGraph/stackcollapse-perf.pl | \
~/code/FlameGraph/flamegraph.pl > perf-kernel.svg

这是我正在尝试分析的 hello.c 的列表

#include <stdio.h>
#include <unistd.h>


void do2() {
    int fd = fileno(f);
    char buf[100];
    while(1) {
        read(fd, buf, sizeof(buf)/sizeof(buf[0]));
    }
}

int main(void)
{
    do2();
    return 0;
}

这是 debian jessie 的火焰图

这是 ubuntu 的火焰图

为什么 debian jessie 中缺少堆栈跟踪?

谢谢 Sharath

相关内容