Debugging Linux Kernel using ftrace Part16- Disabling interrupts info in function graph
The function graph tracer also traces the interrupts. You can tell the function graph tracer to disable tracing of interrupts by writing 0 in 'options/funcgraph-irqs' file.
$ echo 0 > options/funcgraph-irqs
The below screenshot is before disabling interrupts.
$ echo 0 > options/funcgraph-irqs
The below screenshot is before disabling interrupts.
After I disable interrupts, there is no tracing information related to interrupts (e.g. smp_apic_timer_interrupt).
Comments
Post a Comment