MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / include / linux / kernel_stat.h
blob4594ccc4a7c1f73b414aeaca89e201f9b11c306c
1 #ifndef _LINUX_KERNEL_STAT_H
2 #define _LINUX_KERNEL_STAT_H
4 #include <linux/config.h>
5 #include <asm/irq.h>
6 #include <linux/smp.h>
7 #include <linux/threads.h>
8 #include <linux/percpu.h>
11 * 'kernel_stat.h' contains the definitions needed for doing
12 * some kernel statistics (CPU usage, context switches ...),
13 * used by rstatd/perfmeter
16 struct cpu_usage_stat {
17 u64 user;
18 u64 nice;
19 u64 system;
20 u64 softirq;
21 u64 irq;
22 u64 idle;
23 u64 iowait;
26 struct kernel_stat {
27 struct cpu_usage_stat cpustat;
28 unsigned int irqs[NR_IRQS];
31 DECLARE_PER_CPU(struct kernel_stat, kstat);
33 #define kstat_cpu(cpu) per_cpu(kstat, cpu)
34 /* Must have preemption disabled for this to be meaningful. */
35 #define kstat_this_cpu __get_cpu_var(kstat)
37 extern unsigned long long nr_context_switches(void);
40 * Number of interrupts per specific IRQ source, since bootup
42 static inline int kstat_irqs(int irq)
44 int i, sum=0;
46 for (i = 0; i < NR_CPUS; i++)
47 if (cpu_possible(i))
48 sum += kstat_cpu(i).irqs[irq];
50 return sum;
53 #endif /* _LINUX_KERNEL_STAT_H */