我正在尝试使用奔腾D处理器(Dell OptiPlex-GX620桌面)上运行的Ubuntu12.10下的oprofile 0.9.8。当我尝试一些简单的东西比如“operf ls”时

perf_event_open failed with Invalid argument
Caught runtime_error: Internal Error.  Perf event setup failed.
Error running profiler

通过安装timer=1的模块,我在sudo下成功地使用opcontrol命令在传统模式下运行了oprofile(见下文)。
似乎operf在这个配置中不满意-这是新的首选方法。
我已经确认所有依赖包都已加载。
在oprofile网站上,他们没有将奔腾D作为一个独立的体系结构,因此不确定它是否使用了常规的奔腾体系结构。
我到处找了,找不到这样的报道。如果您能帮助我们找出问题所在,我们将不胜感激。
P.S.当我使用opcontrol以传统模式运行时,我取得了一些成功:
denham@denham-OptiPlex-GX620:~$ sudo opcontrol --start
ATTENTION: Use of opcontrol is discouraged.  Please see the man page for operf.
Using default event: GLOBAL_POWER_EVENTS:100000:1:1:1
Error: counter 0 not available nmi_watchdog using this resource ? Try:
opcontrol --deinit
echo 0 > /proc/sys/kernel/nmi_watchdog

**When I force the module to be installed with timer=1**

denham@denham-OptiPlex-GX620:~$ sudo opcontrol --deinit
Unloading oprofile module
denham@denham-OptiPlex-GX620:~$ sudo modprobe oprofile timer=1
denham@denham-OptiPlex-GX620:~$ sudo opcontrol --no-vmlinux
denham@denham-OptiPlex-GX620:~$ sudo opcontrol --start
ATTENTION: Use of opcontrol is discouraged.  Please see the man page for operf.
Using 2.6+ OProfile kernel interface.
Using log file /var/lib/oprofile/samples/oprofiled.log
Daemon started.
Profiler running.
denham@denham-OptiPlex-GX620:~$ ./a
^C
denham@denham-OptiPlex-GX620:~$ sudo opcontrol --shutdown

Stopping profiling.
Killing daemon.
denham@denham-OptiPlex-GX620:~$ opreport --callgraph
Using /var/lib/oprofile/samples/ for samples directory.
warning: /no-vmlinux could not be found.
warning: [vdso] (tgid:1697 range:0xb77ab000-0xb77ac000) could not be found.
warning: [vdso] (tgid:1728 range:0xb77b6000-0xb77b7000) could not be found.
warning: [vdso] (tgid:3310 range:0xb7702000-0xb7703000) could not be found.
CPU: CPU with timer interrupt, speed 2992.41 MHz (estimated)
Profiling through timer interrupt
samples  %        image name               app name                 symbol name
-------------------------------------------------------------------------------
31878    81.1868  no-vmlinux               no-vmlinux               /no-vmlinux
  31878    100.000  no-vmlinux               no-vmlinux               /no-vmlinux [self]
-------------------------------------------------------------------------------
2820      7.1820  a                        a                        main
  2820     100.000  a                        a                        main [self]
-------------------------------------------------------------------------------
1065      2.7123  vino-server              vino-server              /usr/lib/vino/vino-server
  1065     100.000  vino-server              vino-server              /usr/lib/vino/vino-server [self]
-------------------------------------------------------------------------------
1056      2.6894  a                        a                        b
  1056     100.000  a                        a                        b [self]
-------------------------------------------------------------------------------
1013      2.5799  a                        a                        c
  1013     100.000  a                        a                        c [self]
-------------------------------------------------------------------------------
968       2.4653  a                        a                        d
  968      100.000  a                        a                        d [self]
-------------------------------------------------------------------------------
264       0.6724  libc-2.15.so             libc-2.15.so             /lib/i386-linux-gnu/libc-2.15.so
 . . . . .

最佳答案

不知道这是否是主要问题,但错误信息显示-
“错误:计数器0不可用使用此资源的nmi\U监视器。
尝试:opcontrol--deinit echo 0>/proc/sys/kernel/nmi_watchdog”。
要消除这个问题,必须禁用NMI watchdog kernel参数。在Ubuntu上是通过grub-
编辑/etc/default/grub并将“nmi_watchdog=0”添加到GRUB_CMDLINE_LINUX中。
然后运行sudo update-grub并用
cat /proc/sys/kernel/nmi_watchdog(应为“0”)。如果需要,重新启动以安装新配置。

09-11 11:21