]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/kernel_stat.h
Merge tag 'fs.move_mount.move_mount_set_group.v5.15' of git://git.kernel.org/pub...
[mirror_ubuntu-jammy-kernel.git] / include / linux / kernel_stat.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_KERNEL_STAT_H
3#define _LINUX_KERNEL_STAT_H
4
1da177e4
LT
5#include <linux/smp.h>
6#include <linux/threads.h>
7#include <linux/percpu.h>
28ef3584 8#include <linux/cpumask.h>
aa0ce5bb 9#include <linux/interrupt.h>
3292beb3 10#include <linux/sched.h>
dcbf832e 11#include <linux/vtime.h>
6859a840 12#include <asm/irq.h>
1da177e4
LT
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
3292beb3
GC
20enum 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
34struct kernel_cpustat {
35 u64 cpustat[NR_STATS];
1da177e4
LT
36};
37
38struct kernel_stat {
f2c66cd8 39 unsigned long irqs_sum;
aa0ce5bb 40 unsigned int softirqs[NR_SOFTIRQS];
1da177e4
LT
41};
42
43DECLARE_PER_CPU(struct kernel_stat, kstat);
3292beb3 44DECLARE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
1da177e4 45
1da177e4 46/* Must have preemption disabled for this to be meaningful. */
4a32fea9
CL
47#define kstat_this_cpu this_cpu_ptr(&kstat)
48#define kcpustat_this_cpu this_cpu_ptr(&kernel_cpustat)
3292beb3
GC
49#define kstat_cpu(cpu) per_cpu(kstat, cpu)
50#define kcpustat_cpu(cpu) per_cpu(kernel_cpustat, cpu)
1da177e4
LT
51
52extern unsigned long long nr_context_switches(void);
53
0b8f1efa 54extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu);
792d0018 55extern void kstat_incr_irq_this_cpu(unsigned int irq);
d52a61c0 56
aa0ce5bb
KK
57static inline void kstat_incr_softirqs_this_cpu(unsigned int irq)
58{
6c9ae009 59 __this_cpu_inc(kstat.softirqs[irq]);
aa0ce5bb
KK
60}
61
62static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu)
63{
64 return kstat_cpu(cpu).softirqs[irq];
65}
66
1da177e4
LT
67/*
68 * Number of interrupts per specific IRQ source, since bootup
69 */
c291ee62 70extern unsigned int kstat_irqs_usr(unsigned int irq);
1da177e4 71
f2c66cd8
KH
72/*
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}
aa9c4c0f 79
64eea63c
FW
80#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
81extern u64 kcpustat_field(struct kernel_cpustat *kcpustat,
82 enum cpu_usage_stat usage, int cpu);
74722bb2 83extern void kcpustat_cpu_fetch(struct kernel_cpustat *dst, int cpu);
64eea63c
FW
84#else
85static inline u64 kcpustat_field(struct kernel_cpustat *kcpustat,
86 enum cpu_usage_stat usage, int cpu)
87{
88 return kcpustat->cpustat[usage];
89}
74722bb2
FW
90
91static inline void kcpustat_cpu_fetch(struct kernel_cpustat *dst, int cpu)
92{
93 *dst = kcpustat_cpu(cpu);
94}
95
64eea63c
FW
96#endif
97
23244a5c 98extern void account_user_time(struct task_struct *, u64);
fb8b049c
FW
99extern void account_guest_time(struct task_struct *, u64);
100extern void account_system_time(struct task_struct *, int, u64);
101extern void account_system_index_time(struct task_struct *, u64,
c31cc6a5 102 enum cpu_usage_stat);
be9095ed 103extern void account_steal_time(u64);
18b43a9b 104extern void account_idle_time(u64);
79741dd3 105
abf917cd 106#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
bcebdf84
FW
107static inline void account_process_tick(struct task_struct *tsk, int user)
108{
c8d7dabf 109 vtime_flush(tsk);
bcebdf84
FW
110}
111#else
79741dd3 112extern void account_process_tick(struct task_struct *, int user);
bcebdf84
FW
113#endif
114
79741dd3 115extern void account_idle_ticks(unsigned long ticks);
1da177e4
LT
116
117#endif /* _LINUX_KERNEL_STAT_H */