diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/kernel_stat.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h index 506fdabad412..88425e94cdc5 100644 --- a/include/linux/kernel_stat.h +++ b/include/linux/kernel_stat.h @@ -35,23 +35,16 @@ DECLARE_PER_CPU(struct kernel_stat, kstat); extern unsigned long nr_context_switches(void); -/* - * Maybe we need to smp-ify kernel_stat some day. It would be nice to do - * that without having to modify all the code that increments the stats. - */ -#define KERNEL_STAT_INC(x) kstat.x++ -#define KERNEL_STAT_ADD(x, y) kstat.x += y - #if !defined(CONFIG_ARCH_S390) /* * Number of interrupts per specific IRQ source, since bootup */ -static inline int kstat_irqs (int irq) +static inline int kstat_irqs(int irq) { int i, sum=0; - for (i = 0 ; i < NR_CPUS ; i++) - if (cpu_possible(i)) + for (i = 0; i < NR_CPUS; i++) + if (cpu_possible(i)) sum += kstat_cpu(i).irqs[irq]; return sum; |
