The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [patch] kernel_stat cleanup
@ 2002-11-05 19:41 Dipankar Sarma
  0 siblings, 0 replies; only message in thread
From: Dipankar Sarma @ 2002-11-05 19:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

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;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-11-05 19:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-05 19:41 [patch] kernel_stat cleanup Dipankar Sarma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox