• A
    perf symbols: Rebuild rbtree when adjusting symbols for kcore · 866548dd
    Adrian Hunter 提交于
    Normally symbols are read from the DSO and adjusted, if need be, so that
    the symbol start matches the file offset in the DSO file (we want the
    file offset because that is what we know from MMAP events). That is done
    by dso__load_sym() which inserts the symbols *after* adjusting them.
    
    In the case of kcore, the symbols have been read from kallsyms and the
    symbol start is the memory address. The symbols have to be adjusted to
    match the kcore file offsets. dso__split_kallsyms_for_kcore() does that,
    but now the adjustment is being done *after* the symbols have been
    inserted. It appears dso__split_kallsyms_for_kcore() was assuming that
    changing the symbol start would not change the order in the rbtree -
    which is, of course, not guaranteed.
    Signed-off-by: NAdrian Hunter <adrian.hunter@intel.com>
    Tested-by: NWang Nan <wangnan0@huawei.com>
    Cc: Jiri Olsa <jolsa@kernel.org>
    Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
    Cc: Namhyung Kim <namhyung@kernel.org>
    Cc: Zefan Li <lizefan@huawei.com>
    Cc: pi3orama@163.com
    Link: http://lkml.kernel.org/r/563CB241.2090701@intel.comSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
    866548dd
symbol.c 45.8 KB