diff options
| -rw-r--r-- | arch/x86/include/asm/hardirq.h | 4 | ||||
| -rw-r--r-- | arch/x86/kernel/irq.c | 4 | ||||
| -rw-r--r-- | arch/x86/mm/tlb.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/arch/x86/include/asm/hardirq.h b/arch/x86/include/asm/hardirq.h index d3895dbf4ddb..81f04cee5f74 100644 --- a/arch/x86/include/asm/hardirq.h +++ b/arch/x86/include/asm/hardirq.h | |||
| @@ -18,6 +18,10 @@ typedef struct { | |||
| 18 | #ifdef CONFIG_SMP | 18 | #ifdef CONFIG_SMP |
| 19 | unsigned int irq_resched_count; | 19 | unsigned int irq_resched_count; |
| 20 | unsigned int irq_call_count; | 20 | unsigned int irq_call_count; |
| 21 | /* | ||
| 22 | * irq_tlb_count is double-counted in irq_call_count, so it must be | ||
| 23 | * subtracted from irq_call_count when displaying irq_call_count | ||
| 24 | */ | ||
| 21 | unsigned int irq_tlb_count; | 25 | unsigned int irq_tlb_count; |
| 22 | #endif | 26 | #endif |
| 23 | #ifdef CONFIG_X86_THERMAL_VECTOR | 27 | #ifdef CONFIG_X86_THERMAL_VECTOR |
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index 1f5f1d5d2a02..355b13f6de8d 100644 --- a/arch/x86/kernel/irq.c +++ b/arch/x86/kernel/irq.c | |||
| @@ -92,7 +92,8 @@ int arch_show_interrupts(struct seq_file *p, int prec) | |||
| 92 | seq_printf(p, " Rescheduling interrupts\n"); | 92 | seq_printf(p, " Rescheduling interrupts\n"); |
| 93 | seq_printf(p, "%*s: ", prec, "CAL"); | 93 | seq_printf(p, "%*s: ", prec, "CAL"); |
| 94 | for_each_online_cpu(j) | 94 | for_each_online_cpu(j) |
| 95 | seq_printf(p, "%10u ", irq_stats(j)->irq_call_count); | 95 | seq_printf(p, "%10u ", irq_stats(j)->irq_call_count - |
| 96 | irq_stats(j)->irq_tlb_count); | ||
| 96 | seq_printf(p, " Function call interrupts\n"); | 97 | seq_printf(p, " Function call interrupts\n"); |
| 97 | seq_printf(p, "%*s: ", prec, "TLB"); | 98 | seq_printf(p, "%*s: ", prec, "TLB"); |
| 98 | for_each_online_cpu(j) | 99 | for_each_online_cpu(j) |
| @@ -147,7 +148,6 @@ u64 arch_irq_stat_cpu(unsigned int cpu) | |||
| 147 | #ifdef CONFIG_SMP | 148 | #ifdef CONFIG_SMP |
| 148 | sum += irq_stats(cpu)->irq_resched_count; | 149 | sum += irq_stats(cpu)->irq_resched_count; |
| 149 | sum += irq_stats(cpu)->irq_call_count; | 150 | sum += irq_stats(cpu)->irq_call_count; |
| 150 | sum += irq_stats(cpu)->irq_tlb_count; | ||
| 151 | #endif | 151 | #endif |
| 152 | #ifdef CONFIG_X86_THERMAL_VECTOR | 152 | #ifdef CONFIG_X86_THERMAL_VECTOR |
| 153 | sum += irq_stats(cpu)->irq_thermal_count; | 153 | sum += irq_stats(cpu)->irq_thermal_count; |
diff --git a/arch/x86/mm/tlb.c b/arch/x86/mm/tlb.c index a085c560b4a5..0777f042e400 100644 --- a/arch/x86/mm/tlb.c +++ b/arch/x86/mm/tlb.c | |||
| @@ -98,6 +98,8 @@ static void flush_tlb_func(void *info) | |||
| 98 | { | 98 | { |
| 99 | struct flush_tlb_info *f = info; | 99 | struct flush_tlb_info *f = info; |
| 100 | 100 | ||
| 101 | inc_irq_stat(irq_tlb_count); | ||
| 102 | |||
| 101 | if (f->flush_mm != this_cpu_read(cpu_tlbstate.active_mm)) | 103 | if (f->flush_mm != this_cpu_read(cpu_tlbstate.active_mm)) |
| 102 | return; | 104 | return; |
| 103 | 105 | ||
