oprofile 未对 LLC_MISSES 缓存事件进行采样

Posted

技术标签:

【中文标题】oprofile 未对 LLC_MISSES 缓存事件进行采样【英文标题】:oprofile isn't sampling LLC_MISSES cache events 【发布时间】:2011-11-03 21:11:28 【问题描述】:

我正在尝试使用oprofile 记录大型实时应用程序中的缓存未命中:

$ sudo opcontrol --no-vmlinux --event=LLC_MISSES:100000 --session-dir=/var/tmp/oprofile -c=5 --start

但是当我查看报告时,它并没有提到缓存未命中。它只采样 CPU_CLK_UNHALTED:

$ sudo opreport -l --session-dir=/var/tmp/oprofile 

CPU: Intel Architectural Perfmon, speed 1596 MHz (estimated)
Counted CPU_CLK_UNHALTED events (Clock cycles when not halted) with a unit mask of 0x00 (No unit mask) count 100000
samples  %        image name               app name                 symbol name
63243    92.2946  no-vmlinux               no-vmlinux               /no-vmlinux
564       0.8231  libc-2.13.so             libc-2.13.so             /lib32/libc-2.13.so
 (etc)

但 --status 声称 oprofile 采样 L2 未命中:

$ sudo opcontrol --status

Daemon running: pid 3220
Event 0: LLC_MISSES:500000:65:1:1
Separate options: library
vmlinux file: none
Image filter: none
Call-graph depth: 5

我做错了什么?我也无法对ophelp 中列出的任何其他计数器进行采样。

这是 Ubuntu 上的 oprofile 0.9.6,内核版本 2.6.38。

【问题讨论】:

【参考方案1】:

原来你需要真正杀死并重新启动 oprofile 守护进程

sudo opcontrol --stop
sudo opcontrol --reset
sudo opcontrol --shutdown
sudo opcontrol --start-daemon
sudo opcontrol --start

更改采样事件时。仅仅停止和启动配置文件是不够的。并不是说这在任何地方都有记录。

【讨论】:

以上是关于oprofile 未对 LLC_MISSES 缓存事件进行采样的主要内容,如果未能解决你的问题,请参考以下文章

多核和 OProfile

安卓上的OProfile

在专有内核上设置 OProfile

使用 perf_events/oprofile 在 Linux 上分析 JIT 的输出?

在虚拟机中运行的 Linux 上的 oprofile

Oprofile中的基本疑问