mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
x86: make /proc/stat account for all interrupts
LAPIC interrupts, which don't go through the generic interrupt handling code, aren't accounted for in /proc/stat. Hence this patch adds a mechanism architectures can use to accordingly adjust the statistics. Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
75d3bce2fc
commit
a2eddfa959
4 changed files with 81 additions and 0 deletions
|
@ -313,16 +313,20 @@ skip:
|
||||||
per_cpu(irq_stat,j).irq_tlb_count);
|
per_cpu(irq_stat,j).irq_tlb_count);
|
||||||
seq_printf(p, " TLB shootdowns\n");
|
seq_printf(p, " TLB shootdowns\n");
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_X86_MCE
|
||||||
seq_printf(p, "TRM: ");
|
seq_printf(p, "TRM: ");
|
||||||
for_each_online_cpu(j)
|
for_each_online_cpu(j)
|
||||||
seq_printf(p, "%10u ",
|
seq_printf(p, "%10u ",
|
||||||
per_cpu(irq_stat,j).irq_thermal_count);
|
per_cpu(irq_stat,j).irq_thermal_count);
|
||||||
seq_printf(p, " Thermal event interrupts\n");
|
seq_printf(p, " Thermal event interrupts\n");
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_X86_LOCAL_APIC
|
||||||
seq_printf(p, "SPU: ");
|
seq_printf(p, "SPU: ");
|
||||||
for_each_online_cpu(j)
|
for_each_online_cpu(j)
|
||||||
seq_printf(p, "%10u ",
|
seq_printf(p, "%10u ",
|
||||||
per_cpu(irq_stat,j).irq_spurious_count);
|
per_cpu(irq_stat,j).irq_spurious_count);
|
||||||
seq_printf(p, " Spurious interrupts\n");
|
seq_printf(p, " Spurious interrupts\n");
|
||||||
|
#endif
|
||||||
seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
|
seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
|
||||||
#if defined(CONFIG_X86_IO_APIC)
|
#if defined(CONFIG_X86_IO_APIC)
|
||||||
seq_printf(p, "MIS: %10u\n", atomic_read(&irq_mis_count));
|
seq_printf(p, "MIS: %10u\n", atomic_read(&irq_mis_count));
|
||||||
|
@ -331,6 +335,40 @@ skip:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* /proc/stat helpers
|
||||||
|
*/
|
||||||
|
u64 arch_irq_stat_cpu(unsigned int cpu)
|
||||||
|
{
|
||||||
|
u64 sum = nmi_count(cpu);
|
||||||
|
|
||||||
|
#ifdef CONFIG_X86_LOCAL_APIC
|
||||||
|
sum += per_cpu(irq_stat, cpu).apic_timer_irqs;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
sum += per_cpu(irq_stat, cpu).irq_resched_count;
|
||||||
|
sum += per_cpu(irq_stat, cpu).irq_call_count;
|
||||||
|
sum += per_cpu(irq_stat, cpu).irq_tlb_count;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_X86_MCE
|
||||||
|
sum += per_cpu(irq_stat, cpu).irq_thermal_count;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_X86_LOCAL_APIC
|
||||||
|
sum += per_cpu(irq_stat, cpu).irq_spurious_count;
|
||||||
|
#endif
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
|
u64 arch_irq_stat(void)
|
||||||
|
{
|
||||||
|
u64 sum = atomic_read(&irq_err_count);
|
||||||
|
|
||||||
|
#ifdef CONFIG_X86_IO_APIC
|
||||||
|
sum += atomic_read(&irq_mis_count);
|
||||||
|
#endif
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_HOTPLUG_CPU
|
#ifdef CONFIG_HOTPLUG_CPU
|
||||||
#include <mach_apic.h>
|
#include <mach_apic.h>
|
||||||
|
|
||||||
|
|
|
@ -135,6 +135,7 @@ skip:
|
||||||
seq_printf(p, "%10u ", cpu_pda(j)->irq_tlb_count);
|
seq_printf(p, "%10u ", cpu_pda(j)->irq_tlb_count);
|
||||||
seq_printf(p, " TLB shootdowns\n");
|
seq_printf(p, " TLB shootdowns\n");
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_X86_MCE
|
||||||
seq_printf(p, "TRM: ");
|
seq_printf(p, "TRM: ");
|
||||||
for_each_online_cpu(j)
|
for_each_online_cpu(j)
|
||||||
seq_printf(p, "%10u ", cpu_pda(j)->irq_thermal_count);
|
seq_printf(p, "%10u ", cpu_pda(j)->irq_thermal_count);
|
||||||
|
@ -143,6 +144,7 @@ skip:
|
||||||
for_each_online_cpu(j)
|
for_each_online_cpu(j)
|
||||||
seq_printf(p, "%10u ", cpu_pda(j)->irq_threshold_count);
|
seq_printf(p, "%10u ", cpu_pda(j)->irq_threshold_count);
|
||||||
seq_printf(p, " Threshold APIC interrupts\n");
|
seq_printf(p, " Threshold APIC interrupts\n");
|
||||||
|
#endif
|
||||||
seq_printf(p, "SPU: ");
|
seq_printf(p, "SPU: ");
|
||||||
for_each_online_cpu(j)
|
for_each_online_cpu(j)
|
||||||
seq_printf(p, "%10u ", cpu_pda(j)->irq_spurious_count);
|
seq_printf(p, "%10u ", cpu_pda(j)->irq_spurious_count);
|
||||||
|
@ -152,6 +154,32 @@ skip:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* /proc/stat helpers
|
||||||
|
*/
|
||||||
|
u64 arch_irq_stat_cpu(unsigned int cpu)
|
||||||
|
{
|
||||||
|
u64 sum = cpu_pda(cpu)->__nmi_count;
|
||||||
|
|
||||||
|
sum += cpu_pda(cpu)->apic_timer_irqs;
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
sum += cpu_pda(cpu)->irq_resched_count;
|
||||||
|
sum += cpu_pda(cpu)->irq_call_count;
|
||||||
|
sum += cpu_pda(cpu)->irq_tlb_count;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_X86_MCE
|
||||||
|
sum += cpu_pda(cpu)->irq_thermal_count;
|
||||||
|
sum += cpu_pda(cpu)->irq_threshold_count;
|
||||||
|
#endif
|
||||||
|
sum += cpu_pda(cpu)->irq_spurious_count;
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
|
u64 arch_irq_stat(void)
|
||||||
|
{
|
||||||
|
return atomic_read(&irq_err_count);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* do_IRQ handles all normal device IRQ's (the special
|
* do_IRQ handles all normal device IRQ's (the special
|
||||||
* SMP cross-CPU interrupts have their own specific
|
* SMP cross-CPU interrupts have their own specific
|
||||||
|
|
|
@ -472,6 +472,13 @@ static const struct file_operations proc_vmalloc_operations = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef arch_irq_stat_cpu
|
||||||
|
#define arch_irq_stat_cpu(cpu) 0
|
||||||
|
#endif
|
||||||
|
#ifndef arch_irq_stat
|
||||||
|
#define arch_irq_stat() 0
|
||||||
|
#endif
|
||||||
|
|
||||||
static int show_stat(struct seq_file *p, void *v)
|
static int show_stat(struct seq_file *p, void *v)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -509,7 +516,9 @@ static int show_stat(struct seq_file *p, void *v)
|
||||||
sum += temp;
|
sum += temp;
|
||||||
per_irq_sum[j] += temp;
|
per_irq_sum[j] += temp;
|
||||||
}
|
}
|
||||||
|
sum += arch_irq_stat_cpu(i);
|
||||||
}
|
}
|
||||||
|
sum += arch_irq_stat();
|
||||||
|
|
||||||
seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
|
seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
|
||||||
(unsigned long long)cputime64_to_clock_t(user),
|
(unsigned long long)cputime64_to_clock_t(user),
|
||||||
|
|
|
@ -3,3 +3,9 @@
|
||||||
#else
|
#else
|
||||||
# include "hardirq_64.h"
|
# include "hardirq_64.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern u64 arch_irq_stat_cpu(unsigned int cpu);
|
||||||
|
#define arch_irq_stat_cpu arch_irq_stat_cpu
|
||||||
|
|
||||||
|
extern u64 arch_irq_stat(void);
|
||||||
|
#define arch_irq_stat arch_irq_stat
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue