[patch] kernel_stat cleanup

From: Dipankar Sarma (dipankar@gamebox.net)
Date: Tue Nov 05 2002 - 14:41:00 EST


This is a trivial cleanup removing two old unused macros from
kernel_stat.h that made no sense with the new per-CPU kstat.
Also included a few finicky coding style changes. Please apply.

Thanks
Dipankar

diff -urN linux-2.5.46-base/include/linux/kernel_stat.h linux-2.5.46-misc/include/linux/kernel_stat.h
--- linux-2.5.46-base/include/linux/kernel_stat.h Tue Nov 5 21:58:28 2002
+++ linux-2.5.46-misc/include/linux/kernel_stat.h Tue Nov 5 23:22:05 2002
@@ -35,23 +35,16 @@
 
 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;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Nov 07 2002 - 22:00:39 EST