blob: 348fa8874b528990177ecaaf1a5b685b90e347d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KERNEL_STAT_H
2#define _LINUX_KERNEL_STAT_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/smp.h>
5#include <linux/threads.h>
6#include <linux/percpu.h>
Ingo Molnar28ef3582005-11-07 00:59:29 -08007#include <linux/cpumask.h>
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -07008#include <linux/interrupt.h>
Alan Mayer6859a842008-03-26 16:11:31 -05009#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/cputime.h>
11
12/*
13 * 'kernel_stat.h' contains the definitions needed for doing
14 * some kernel statistics (CPU usage, context switches ...),
15 * used by rstatd/perfmeter
16 */
17
18struct cpu_usage_stat {
19 cputime64_t user;
20 cputime64_t nice;
21 cputime64_t system;
22 cputime64_t softirq;
23 cputime64_t irq;
24 cputime64_t idle;
25 cputime64_t iowait;
26 cputime64_t steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +020027 cputime64_t guest;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
30struct kernel_stat {
31 struct cpu_usage_stat cpustat;
Yinghai Lud7e51e62009-01-07 15:03:13 -080032#ifndef CONFIG_GENERIC_HARDIRQS
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080033 unsigned int irqs[NR_IRQS];
34#endif
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -070035 unsigned int softirqs[NR_SOFTIRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
38DECLARE_PER_CPU(struct kernel_stat, kstat);
39
40#define kstat_cpu(cpu) per_cpu(kstat, cpu)
41/* Must have preemption disabled for this to be meaningful. */
42#define kstat_this_cpu __get_cpu_var(kstat)
43
44extern unsigned long long nr_context_switches(void);
45
Yinghai Lud7e51e62009-01-07 15:03:13 -080046#ifndef CONFIG_GENERIC_HARDIRQS
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080047#define kstat_irqs_this_cpu(irq) \
48 (kstat_this_cpu.irqs[irq])
49
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020050struct irq_desc;
Yinghai Lu8c464a42008-08-25 12:41:19 -070051
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020052static inline void kstat_incr_irqs_this_cpu(unsigned int irq,
53 struct irq_desc *desc)
54{
55 kstat_this_cpu.irqs[irq]++;
56}
Yinghai Lu8c464a42008-08-25 12:41:19 -070057
Yinghai Lu7f95ec92008-08-19 20:50:09 -070058static inline unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
59{
60 return kstat_cpu(cpu).irqs[irq];
61}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080062#else
Yinghai Lud52a61c2009-01-22 00:38:56 -080063#include <linux/irq.h>
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080064extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu);
Yinghai Lud52a61c2009-01-22 00:38:56 -080065#define kstat_irqs_this_cpu(DESC) \
66 ((DESC)->kstat_irqs[smp_processor_id()])
67#define kstat_incr_irqs_this_cpu(irqno, DESC) \
68 ((DESC)->kstat_irqs[smp_processor_id()]++)
69
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080070#endif
Yinghai Lu7f95ec92008-08-19 20:50:09 -070071
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -070072static inline void kstat_incr_softirqs_this_cpu(unsigned int irq)
73{
74 kstat_this_cpu.softirqs[irq]++;
75}
76
77static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu)
78{
79 return kstat_cpu(cpu).softirqs[irq];
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Number of interrupts per specific IRQ source, since bootup
84 */
Yinghai Lu7f95ec92008-08-19 20:50:09 -070085static inline unsigned int kstat_irqs(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Yinghai Lu7f95ec92008-08-19 20:50:09 -070087 unsigned int sum = 0;
88 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -080090 for_each_possible_cpu(cpu)
Yinghai Lu7f95ec92008-08-19 20:50:09 -070091 sum += kstat_irqs_cpu(irq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return sum;
94}
95
Ingo Molnaraa9c4c02008-12-17 14:10:57 +010096
97/*
98 * Lock/unlock the current runqueue - to extract task statistics:
99 */
Frank Mayharbb34d922008-09-12 09:54:39 -0700100extern unsigned long long task_delta_exec(struct task_struct *);
Ingo Molnaraa9c4c02008-12-17 14:10:57 +0100101
Martin Schwidefsky457533a2008-12-31 15:11:37 +0100102extern void account_user_time(struct task_struct *, cputime_t, cputime_t);
103extern void account_system_time(struct task_struct *, int, cputime_t, cputime_t);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +0100104extern void account_steal_time(cputime_t);
105extern void account_idle_time(cputime_t);
106
107extern void account_process_tick(struct task_struct *, int user);
108extern void account_steal_ticks(unsigned long ticks);
109extern void account_idle_ticks(unsigned long ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#endif /* _LINUX_KERNEL_STAT_H */