Skip to content
Commit 922d0e4d authored by Vladimir Nikulichev's avatar Vladimir Nikulichev Committed by Jiri Olsa
Browse files

perf tools: Adjust symbols in VDSO



pert-report doesn't resolve function names in VDSO:

$ perf report --stdio -g flat,0.0,15,callee --sort pid
...
            8.76%
               0x7fff6b1fe861
               __gettimeofday
               ACE_OS::gettimeofday()
...

In this case symbol values should be adjusted the same way as for executables,
relocatable objects and prelinked libraries.

After fix:

$ perf report --stdio -g flat,0.0,15,callee --sort pid
...
            8.76%
               __vdso_gettimeofday
               __gettimeofday
               ACE_OS::gettimeofday()

Signed-off-by: default avatarVladimir Nikulichev <nvs@tbricks.com>
Tested-by: default avatarNamhyung Kim <namhyung@kernel.org>
Reviewed-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Link: http://lkml.kernel.org/r/969812.163009436-sendEmail@nvs


Signed-off-by: default avatarJiri Olsa <jolsa@redhat.com>
parent acb61fc8
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment