由于令人讨厌的错误,我正在系统上运行oprofile:

$ sudo opcontrol --setup --vmlinux=/usr/lib/debug/lib/modules/`uname -r`/vmlinux
$ sudo opcontrol --start
ATTENTION: Use of opcontrol is discouraged.  Please see the man page for operf.
Using default event: CPU_CLK_UNHALTED:100000:0:1:1
Using 2.6+ OProfile kernel interface.
Reading module info.
Failed to open profile device: Device or resource busy
Couldn't start oprofiled.
Check the log file "/var/lib/oprofile/samples/oprofiled.log" and kernel syslog

任何熟悉Oprofile的人都会注意到我正在使用正确的命令序列来调用服务。这直接来自Fedora documentation。还安装了内核调试信息以生成适当的vmlinux文件。但是即使将此文件的位置传递给了oprofile之后,也没有任何变化:
$ sudo opcontrol --setup --vmlinux=/usr/lib/debug/lib/modules/3.12.11-201.fc19.x86_64/vmlinux
$ sudo opcontrol --start
ATTENTION: Use of opcontrol is discouraged.  Please see the man page for operf.
Using default event: CPU_CLK_UNHALTED:100000:0:1:1
Using 2.6+ OProfile kernel interface.
Reading module info.
Failed to open profile device: Device or resource busy
Couldn't start oprofiled.
Check the log file "/var/lib/oprofile/samples/oprofiled.log" and kernel syslog

更重要的是,指定位置没有日志文件。我尝试了其他几种解决方案,包括重新安装,删除守护程序以及在不对内核进行概要分析的情况下运行。
  • 没有oprofile进程运行时,为什么设备忙?
  • 为什么没有写入日志文件?
  • 我应该做什么更改才能运行oprofile?
  • 最佳答案

    在运行oprofile之前,应检查系统是否存在看门狗。 watchdog/nmi_watchdog向perf子系统注册,这将阻止oprofile工作。
    您可能必须使用以下命令停止看门狗/NMI看门狗以释放计数器0:
    echo "0" | sudo tee /proc/sys/kernel/watchdog
    要么
    echo "0" | sudo tee/proc/sys/kernel/nmi_watchdog

    08-04 21:22