mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
Also filter out NMI stack
This commit is contained in:
15
tracker.c
15
tracker.c
@ -729,6 +729,7 @@ get_kernel_symbols (void)
|
|||||||
|
|
||||||
static const char skip_kernel_symbols[][32] =
|
static const char skip_kernel_symbols[][32] =
|
||||||
{
|
{
|
||||||
|
/* IRQ stack */
|
||||||
"common_interrupt",
|
"common_interrupt",
|
||||||
"apic_timer_interrupt",
|
"apic_timer_interrupt",
|
||||||
"smp_apic_timer_interrupt",
|
"smp_apic_timer_interrupt",
|
||||||
@ -739,6 +740,20 @@ static const char skip_kernel_symbols[][32] =
|
|||||||
"__perf_event_overflow",
|
"__perf_event_overflow",
|
||||||
"perf_prepare_sample",
|
"perf_prepare_sample",
|
||||||
"perf_callchain",
|
"perf_callchain",
|
||||||
|
|
||||||
|
/* NMI stack */
|
||||||
|
"nmi_stack_correct",
|
||||||
|
"do_nmi",
|
||||||
|
"notify_die",
|
||||||
|
"atomic_notifier_call_chain",
|
||||||
|
"notifier_call_chain",
|
||||||
|
"perf_event_nmi_handler",
|
||||||
|
"intel_pmu_handle_irq",
|
||||||
|
"perf_event_overflow",
|
||||||
|
"__perf_event_overflow",
|
||||||
|
"perf_prepare_sample",
|
||||||
|
"perf_callchain",
|
||||||
|
|
||||||
""
|
""
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user