blob: 66be8b6becebec1d8a79d65f925a3f3096d22427 [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>
Glauber Costa3292beb2011-11-28 14:45:17 -02009#include <linux/sched.h>
Frederic Weisbeckerdcbf8322012-10-05 23:07:19 +020010#include <linux/vtime.h>
Alan Mayer6859a842008-03-26 16:11:31 -050011#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13/*
14 * 'kernel_stat.h' contains the definitions needed for doing
15 * some kernel statistics (CPU usage, context switches ...),
16 * used by rstatd/perfmeter
17 */
18
Glauber Costa3292beb2011-11-28 14:45:17 -020019enum cpu_usage_stat {
20 CPUTIME_USER,
21 CPUTIME_NICE,
22 CPUTIME_SYSTEM,
23 CPUTIME_SOFTIRQ,
24 CPUTIME_IRQ,
25 CPUTIME_IDLE,
26 CPUTIME_IOWAIT,
27 CPUTIME_STEAL,
28 CPUTIME_GUEST,
29 CPUTIME_GUEST_NICE,
30 NR_STATS,
31};
32
33struct kernel_cpustat {
34 u64 cpustat[NR_STATS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
37struct kernel_stat {
KAMEZAWA Hiroyukif2c66cd2010-10-27 15:34:13 -070038 unsigned long irqs_sum;
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -070039 unsigned int softirqs[NR_SOFTIRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42DECLARE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -020043DECLARE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* Must have preemption disabled for this to be meaningful. */
Christoph Lameter4a32fea2014-08-17 12:30:27 -050046#define kstat_this_cpu this_cpu_ptr(&kstat)
47#define kcpustat_this_cpu this_cpu_ptr(&kernel_cpustat)
Glauber Costa3292beb2011-11-28 14:45:17 -020048#define kstat_cpu(cpu) per_cpu(kstat, cpu)
49#define kcpustat_cpu(cpu) per_cpu(kernel_cpustat, cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51extern unsigned long long nr_context_switches(void);
52
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080053extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu);
Thomas Gleixner792d0012014-02-23 21:40:14 +000054extern void kstat_incr_irq_this_cpu(unsigned int irq);
Yinghai Lud52a61c2009-01-22 00:38:56 -080055
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -070056static inline void kstat_incr_softirqs_this_cpu(unsigned int irq)
57{
Eric Dumazet6c9ae002011-01-13 15:45:38 -080058 __this_cpu_inc(kstat.softirqs[irq]);
Keika Kobayashiaa0ce5b2009-06-17 16:25:52 -070059}
60
61static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu)
62{
63 return kstat_cpu(cpu).softirqs[irq];
64}
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Number of interrupts per specific IRQ source, since bootup
68 */
KAMEZAWA Hiroyuki478735e32010-10-27 15:34:15 -070069extern unsigned int kstat_irqs(unsigned int irq);
Thomas Gleixnerc291ee62014-12-11 23:01:41 +010070extern unsigned int kstat_irqs_usr(unsigned int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
KAMEZAWA Hiroyukif2c66cd2010-10-27 15:34:13 -070072/*
73 * Number of interrupts per cpu, since bootup
74 */
75static inline unsigned int kstat_cpu_irqs_sum(unsigned int cpu)
76{
77 return kstat_cpu(cpu).irqs_sum;
78}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +010079
Frederic Weisbecker23244a52017-01-31 04:09:37 +010080extern void account_user_time(struct task_struct *, u64);
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +010081extern void account_guest_time(struct task_struct *, u64);
82extern void account_system_time(struct task_struct *, int, u64);
83extern void account_system_index_time(struct task_struct *, u64,
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +010084 enum cpu_usage_stat);
Frederic Weisbeckerbe9095e2017-01-31 04:09:38 +010085extern void account_steal_time(u64);
Frederic Weisbecker18b43a92017-01-31 04:09:39 +010086extern void account_idle_time(u64);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010087
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +020088#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Frederic Weisbeckerbcebdf82012-11-13 23:51:06 +010089static inline void account_process_tick(struct task_struct *tsk, int user)
90{
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +010091 vtime_flush(tsk);
Frederic Weisbeckerbcebdf82012-11-13 23:51:06 +010092}
93#else
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010094extern void account_process_tick(struct task_struct *, int user);
Frederic Weisbeckerbcebdf82012-11-13 23:51:06 +010095#endif
96
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010097extern void account_idle_ticks(unsigned long ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif /* _LINUX_KERNEL_STAT_H */