Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_KERNEL_STAT_H |
| 2 | #define _LINUX_KERNEL_STAT_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/smp.h> |
| 5 | #include <linux/threads.h> |
| 6 | #include <linux/percpu.h> |
Ingo Molnar | 28ef358 | 2005-11-07 00:59:29 -0800 | [diff] [blame] | 7 | #include <linux/cpumask.h> |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 8 | #include <linux/interrupt.h> |
Alan Mayer | 6859a84 | 2008-03-26 16:11:31 -0500 | [diff] [blame] | 9 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #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 | |
| 18 | struct 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 Vivier | 5e84cfd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 27 | cputime64_t guest; |
Ryota Ozaki | ce0e7b2 | 2009-10-24 01:20:10 +0900 | [diff] [blame] | 28 | cputime64_t guest_nice; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | struct kernel_stat { |
| 32 | struct cpu_usage_stat cpustat; |
Yinghai Lu | d7e51e6 | 2009-01-07 15:03:13 -0800 | [diff] [blame] | 33 | #ifndef CONFIG_GENERIC_HARDIRQS |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 34 | unsigned int irqs[NR_IRQS]; |
| 35 | #endif |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 36 | unsigned int softirqs[NR_SOFTIRQS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | DECLARE_PER_CPU(struct kernel_stat, kstat); |
| 40 | |
| 41 | #define kstat_cpu(cpu) per_cpu(kstat, cpu) |
| 42 | /* Must have preemption disabled for this to be meaningful. */ |
| 43 | #define kstat_this_cpu __get_cpu_var(kstat) |
| 44 | |
| 45 | extern unsigned long long nr_context_switches(void); |
| 46 | |
Yinghai Lu | d7e51e6 | 2009-01-07 15:03:13 -0800 | [diff] [blame] | 47 | #ifndef CONFIG_GENERIC_HARDIRQS |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 48 | #define kstat_irqs_this_cpu(irq) \ |
| 49 | (kstat_this_cpu.irqs[irq]) |
| 50 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 51 | struct irq_desc; |
Yinghai Lu | 8c464a4 | 2008-08-25 12:41:19 -0700 | [diff] [blame] | 52 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 53 | static inline void kstat_incr_irqs_this_cpu(unsigned int irq, |
| 54 | struct irq_desc *desc) |
| 55 | { |
| 56 | kstat_this_cpu.irqs[irq]++; |
| 57 | } |
Yinghai Lu | 8c464a4 | 2008-08-25 12:41:19 -0700 | [diff] [blame] | 58 | |
Yinghai Lu | 7f95ec9 | 2008-08-19 20:50:09 -0700 | [diff] [blame] | 59 | static inline unsigned int kstat_irqs_cpu(unsigned int irq, int cpu) |
| 60 | { |
| 61 | return kstat_cpu(cpu).irqs[irq]; |
| 62 | } |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 63 | #else |
Yinghai Lu | d52a61c | 2009-01-22 00:38:56 -0800 | [diff] [blame] | 64 | #include <linux/irq.h> |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 65 | extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu); |
Yinghai Lu | d52a61c | 2009-01-22 00:38:56 -0800 | [diff] [blame] | 66 | #define kstat_irqs_this_cpu(DESC) \ |
| 67 | ((DESC)->kstat_irqs[smp_processor_id()]) |
| 68 | #define kstat_incr_irqs_this_cpu(irqno, DESC) \ |
| 69 | ((DESC)->kstat_irqs[smp_processor_id()]++) |
| 70 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 71 | #endif |
Yinghai Lu | 7f95ec9 | 2008-08-19 20:50:09 -0700 | [diff] [blame] | 72 | |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 73 | static inline void kstat_incr_softirqs_this_cpu(unsigned int irq) |
| 74 | { |
| 75 | kstat_this_cpu.softirqs[irq]++; |
| 76 | } |
| 77 | |
| 78 | static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu) |
| 79 | { |
| 80 | return kstat_cpu(cpu).softirqs[irq]; |
| 81 | } |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | /* |
| 84 | * Number of interrupts per specific IRQ source, since bootup |
| 85 | */ |
Yinghai Lu | 7f95ec9 | 2008-08-19 20:50:09 -0700 | [diff] [blame] | 86 | static inline unsigned int kstat_irqs(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Yinghai Lu | 7f95ec9 | 2008-08-19 20:50:09 -0700 | [diff] [blame] | 88 | unsigned int sum = 0; |
| 89 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 91 | for_each_possible_cpu(cpu) |
Yinghai Lu | 7f95ec9 | 2008-08-19 20:50:09 -0700 | [diff] [blame] | 92 | sum += kstat_irqs_cpu(irq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | return sum; |
| 95 | } |
| 96 | |
Ingo Molnar | aa9c4c0 | 2008-12-17 14:10:57 +0100 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * Lock/unlock the current runqueue - to extract task statistics: |
| 100 | */ |
Frank Mayhar | bb34d92 | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 101 | extern unsigned long long task_delta_exec(struct task_struct *); |
Ingo Molnar | aa9c4c0 | 2008-12-17 14:10:57 +0100 | [diff] [blame] | 102 | |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 103 | extern void account_user_time(struct task_struct *, cputime_t, cputime_t); |
| 104 | extern void account_system_time(struct task_struct *, int, cputime_t, cputime_t); |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 105 | extern void account_steal_time(cputime_t); |
| 106 | extern void account_idle_time(cputime_t); |
| 107 | |
| 108 | extern void account_process_tick(struct task_struct *, int user); |
| 109 | extern void account_steal_ticks(unsigned long ticks); |
| 110 | extern void account_idle_ticks(unsigned long ticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | #endif /* _LINUX_KERNEL_STAT_H */ |