Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
perf record: Add a fallback to the reference relocation symbol

+3
+3
tools/perf/builtin-record.c
··· 563 563 564 564 err = event__synthesize_kernel_mmap(process_synthesized_event, 565 565 session, "_text"); 566 + if (err < 0) 567 + err = event__synthesize_kernel_mmap(process_synthesized_event, 568 + session, "_stext"); 566 569 if (err < 0) { 567 570 pr_err("Couldn't record kernel reference relocation symbol.\n"); 568 571 return err;