aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kernel_stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kernel_stat.h')
-rw-r--r--include/linux/kernel_stat.h22
1 files changed, 15 insertions, 7 deletions
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h
index fe1f7fe534b4..f10616712de5 100644
--- a/include/linux/kernel_stat.h
+++ b/include/linux/kernel_stat.h
@@ -28,10 +28,8 @@ struct cpu_usage_stat {
28 28
29struct kernel_stat { 29struct kernel_stat {
30 struct cpu_usage_stat cpustat; 30 struct cpu_usage_stat cpustat;
31#ifdef CONFIG_HAVE_DYN_ARRAY 31#ifndef CONFIG_GENERIC_HARDIRQS
32 unsigned int *irqs; 32 unsigned int irqs[NR_IRQS];
33#else
34 unsigned int irqs[NR_IRQS];
35#endif 33#endif
36}; 34};
37 35
@@ -43,15 +41,25 @@ DECLARE_PER_CPU(struct kernel_stat, kstat);
43 41
44extern unsigned long long nr_context_switches(void); 42extern unsigned long long nr_context_switches(void);
45 43
44#ifndef CONFIG_GENERIC_HARDIRQS
45static inline unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
46{
47 return kstat_cpu(cpu).irqs[irq];
48}
49#else
50extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu);
51#endif
52
46/* 53/*
47 * Number of interrupts per specific IRQ source, since bootup 54 * Number of interrupts per specific IRQ source, since bootup
48 */ 55 */
49static inline int kstat_irqs(int irq) 56static inline unsigned int kstat_irqs(unsigned int irq)
50{ 57{
51 int cpu, sum = 0; 58 unsigned int sum = 0;
59 int cpu;
52 60
53 for_each_possible_cpu(cpu) 61 for_each_possible_cpu(cpu)
54 sum += kstat_cpu(cpu).irqs[irq]; 62 sum += kstat_irqs_cpu(irq, cpu);
55 63
56 return sum; 64 return sum;
57} 65}