opreport的“%”列始终显示0.0000

时间:2012-04-17 09:02:09

标签: profiling oprofile

我正在使用oprofile调整应用程序的性能。 以下是我收集分析数据的方法:

platform info: virtual machine (KVM-based), linux kernel 2.6.21, x86 64bit, 

1. opcontrol --init
2. opcontrol --no-vmlinux -p library -c 100
3. opcontrol --status

Separate options: library
vmlinux file: none
Image filter: none
Call-graph depth: 100

4. opcontrol -s
5. /*running my application*/
6. opcontrol -h
7. opreport -l my_application

20136     0.0000  no-vmlinux               no-vmlinux               /no-vmlinux
1311      0.0000  libcrypto.so.0.9.8       lighttpd                 /opt/ccnsr/lib64/libcrypto.so.0.9.8
455       0.0000  libxml2.so.2.6.26        my_application                     /opt/ccnsr/lib64/libxml2.so.2.6.26
350       0.0000  libc-2.5.90.so           my_application           _int_malloc
195       0.0000  libpython2.4.so.1.0      python                   PyEval_EvalFrame
142       0.0000  libc-2.5.90.so           my_application           vfprintf
79        0.0000  libc-2.5.90.so           my_application           _IO_default_xsputn

opreport的“%”列始终显示0.0000!

1 个答案:

答案 0 :(得分:0)

如果您编写一个主要执行I / O的小应用程序,并在挂钟(而不是CPU)时间上进行采样,并显示独占百分比,您将看到每个百分比都非常接近零。

原因是该程序几乎花费了所有时间等待先前启动的IO完成。 因此,与任何例程中花费的时间相比,它花费的时间与其等待的时间相比几乎没有。