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> |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 9 | #include <linux/sched.h> |
Frederic Weisbecker | dcbf832 | 2012-10-05 23:07:19 +0200 | [diff] [blame] | 10 | #include <linux/vtime.h> |
Alan Mayer | 6859a84 | 2008-03-26 16:11:31 -0500 | [diff] [blame] | 11 | #include <asm/irq.h> |
Frederic Weisbecker | bfc3f02 | 2014-03-05 16:33:42 +0100 | [diff] [blame] | 12 | #include <linux/cputime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | /* |
| 15 | * 'kernel_stat.h' contains the definitions needed for doing |
| 16 | * some kernel statistics (CPU usage, context switches ...), |
| 17 | * used by rstatd/perfmeter |
| 18 | */ |
| 19 | |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 20 | enum cpu_usage_stat { |
| 21 | CPUTIME_USER, |
| 22 | CPUTIME_NICE, |
| 23 | CPUTIME_SYSTEM, |
| 24 | CPUTIME_SOFTIRQ, |
| 25 | CPUTIME_IRQ, |
| 26 | CPUTIME_IDLE, |
| 27 | CPUTIME_IOWAIT, |
| 28 | CPUTIME_STEAL, |
| 29 | CPUTIME_GUEST, |
| 30 | CPUTIME_GUEST_NICE, |
| 31 | NR_STATS, |
| 32 | }; |
| 33 | |
| 34 | struct kernel_cpustat { |
| 35 | u64 cpustat[NR_STATS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | struct kernel_stat { |
KAMEZAWA Hiroyuki | f2c66cd | 2010-10-27 15:34:13 -0700 | [diff] [blame] | 39 | unsigned long irqs_sum; |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 40 | unsigned int softirqs[NR_SOFTIRQS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | DECLARE_PER_CPU(struct kernel_stat, kstat); |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 44 | DECLARE_PER_CPU(struct kernel_cpustat, kernel_cpustat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* Must have preemption disabled for this to be meaningful. */ |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 47 | #define kstat_this_cpu this_cpu_ptr(&kstat) |
| 48 | #define kcpustat_this_cpu this_cpu_ptr(&kernel_cpustat) |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 49 | #define kstat_cpu(cpu) per_cpu(kstat, cpu) |
| 50 | #define kcpustat_cpu(cpu) per_cpu(kernel_cpustat, cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | extern unsigned long long nr_context_switches(void); |
| 53 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 54 | extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu); |
Thomas Gleixner | 792d001 | 2014-02-23 21:40:14 +0000 | [diff] [blame] | 55 | extern void kstat_incr_irq_this_cpu(unsigned int irq); |
Yinghai Lu | d52a61c | 2009-01-22 00:38:56 -0800 | [diff] [blame] | 56 | |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 57 | static inline void kstat_incr_softirqs_this_cpu(unsigned int irq) |
| 58 | { |
Eric Dumazet | 6c9ae00 | 2011-01-13 15:45:38 -0800 | [diff] [blame] | 59 | __this_cpu_inc(kstat.softirqs[irq]); |
Keika Kobayashi | aa0ce5b | 2009-06-17 16:25:52 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu) |
| 63 | { |
| 64 | return kstat_cpu(cpu).softirqs[irq]; |
| 65 | } |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* |
| 68 | * Number of interrupts per specific IRQ source, since bootup |
| 69 | */ |
KAMEZAWA Hiroyuki | 478735e3 | 2010-10-27 15:34:15 -0700 | [diff] [blame] | 70 | extern unsigned int kstat_irqs(unsigned int irq); |
Thomas Gleixner | c291ee6 | 2014-12-11 23:01:41 +0100 | [diff] [blame] | 71 | extern unsigned int kstat_irqs_usr(unsigned int irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
KAMEZAWA Hiroyuki | f2c66cd | 2010-10-27 15:34:13 -0700 | [diff] [blame] | 73 | /* |
| 74 | * Number of interrupts per cpu, since bootup |
| 75 | */ |
| 76 | static inline unsigned int kstat_cpu_irqs_sum(unsigned int cpu) |
| 77 | { |
| 78 | return kstat_cpu(cpu).irqs_sum; |
| 79 | } |
Ingo Molnar | aa9c4c0 | 2008-12-17 14:10:57 +0100 | [diff] [blame] | 80 | |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 81 | extern void account_user_time(struct task_struct *, cputime_t, cputime_t); |
| 82 | 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] | 83 | extern void account_steal_time(cputime_t); |
| 84 | extern void account_idle_time(cputime_t); |
| 85 | |
Frederic Weisbecker | abf917c | 2012-07-25 07:56:04 +0200 | [diff] [blame] | 86 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE |
Frederic Weisbecker | bcebdf8 | 2012-11-13 23:51:06 +0100 | [diff] [blame] | 87 | static inline void account_process_tick(struct task_struct *tsk, int user) |
| 88 | { |
| 89 | vtime_account_user(tsk); |
| 90 | } |
| 91 | #else |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 92 | extern void account_process_tick(struct task_struct *, int user); |
Frederic Weisbecker | bcebdf8 | 2012-11-13 23:51:06 +0100 | [diff] [blame] | 93 | #endif |
| 94 | |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 95 | extern void account_steal_ticks(unsigned long ticks); |
| 96 | extern void account_idle_ticks(unsigned long ticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | #endif /* _LINUX_KERNEL_STAT_H */ |