blob: 84c2f68244f916eecd46088a8bbd9eb438f37521 [file] [log] [blame]
Shailabh Nagarca74e922006-07-14 00:24:36 -07001/* delayacct.h - per-task delay accounting
2 *
3 * Copyright (C) Shailabh Nagar, IBM Corp. 2006
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 */
16
17#ifndef _LINUX_DELAYACCT_H
18#define _LINUX_DELAYACCT_H
19
20#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Shailabh Nagarca74e922006-07-14 00:24:36 -070022
Shailabh Nagar0ff92242006-07-14 00:24:37 -070023/*
24 * Per-task flags relevant to delay accounting
25 * maintained privately to avoid exhausting similar flags in sched.h:PF_*
26 * Used to set current->delays->flags
27 */
28#define DELAYACCT_PF_SWAPIN 0x00000001 /* I am doing a swapin */
Balbir Singh846c7bb2007-10-18 23:39:44 -070029#define DELAYACCT_PF_BLKIO 0x00000002 /* I am waiting on IO */
Shailabh Nagar0ff92242006-07-14 00:24:37 -070030
Shailabh Nagarca74e922006-07-14 00:24:36 -070031#ifdef CONFIG_TASK_DELAY_ACCT
Ingo Molnar0f3e95cb2017-02-01 18:00:26 +010032struct task_delay_info {
33 spinlock_t lock;
34 unsigned int flags; /* Private per-task flags */
Shailabh Nagarca74e922006-07-14 00:24:36 -070035
Ingo Molnar0f3e95cb2017-02-01 18:00:26 +010036 /* For each stat XXX, add following, aligned appropriately
37 *
38 * struct timespec XXX_start, XXX_end;
39 * u64 XXX_delay;
40 * u32 XXX_count;
41 *
42 * Atomicity of updates to XXX_delay, XXX_count protected by
43 * single lock above (split into XXX_lock if contention is an issue).
44 */
45
46 /*
47 * XXX_count is incremented on every XXX operation, the delay
48 * associated with the operation is added to XXX_delay.
49 * XXX_delay contains the accumulated delay time in nanoseconds.
50 */
51 u64 blkio_start; /* Shared by blkio, swapin */
52 u64 blkio_delay; /* wait for sync block io completion */
53 u64 swapin_delay; /* wait for swapin block io completion */
54 u32 blkio_count; /* total count of the number of sync block */
55 /* io operations performed */
56 u32 swapin_count; /* total count of the number of swapin block */
57 /* io operations performed */
58
59 u64 freepages_start;
60 u64 freepages_delay; /* wait for memory reclaim */
Johannes Weinerd6687a22018-10-26 15:06:08 -070061
62 u64 thrashing_start;
63 u64 thrashing_delay; /* wait for thrashing page */
64
Ingo Molnar0f3e95cb2017-02-01 18:00:26 +010065 u32 freepages_count; /* total count of memory reclaim */
Johannes Weinerd6687a22018-10-26 15:06:08 -070066 u32 thrashing_count; /* total count of thrash waits */
Ingo Molnar0f3e95cb2017-02-01 18:00:26 +010067};
68#endif
69
70#include <linux/sched.h>
71#include <linux/slab.h>
72
73#ifdef CONFIG_TASK_DELAY_ACCT
Shailabh Nagarca74e922006-07-14 00:24:36 -070074extern int delayacct_on; /* Delay accounting turned on/off */
Christoph Lametere18b8902006-12-06 20:33:20 -080075extern struct kmem_cache *delayacct_cache;
Shailabh Nagarca74e922006-07-14 00:24:36 -070076extern void delayacct_init(void);
77extern void __delayacct_tsk_init(struct task_struct *);
78extern void __delayacct_tsk_exit(struct task_struct *);
Shailabh Nagar0ff92242006-07-14 00:24:37 -070079extern void __delayacct_blkio_start(void);
80extern void __delayacct_blkio_end(void);
Shailabh Nagar6f449932006-07-14 00:24:41 -070081extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *);
Shailabh Nagar25890452006-07-14 00:24:43 -070082extern __u64 __delayacct_blkio_ticks(struct task_struct *);
Keika Kobayashi873b4772008-07-25 01:48:52 -070083extern void __delayacct_freepages_start(void);
84extern void __delayacct_freepages_end(void);
Johannes Weinerd6687a22018-10-26 15:06:08 -070085extern void __delayacct_thrashing_start(void);
86extern void __delayacct_thrashing_end(void);
Shailabh Nagarca74e922006-07-14 00:24:36 -070087
Balbir Singh846c7bb2007-10-18 23:39:44 -070088static inline int delayacct_is_task_waiting_on_io(struct task_struct *p)
89{
90 if (p->delays)
91 return (p->delays->flags & DELAYACCT_PF_BLKIO);
92 else
93 return 0;
94}
95
Shailabh Nagarca74e922006-07-14 00:24:36 -070096static inline void delayacct_set_flag(int flag)
97{
98 if (current->delays)
99 current->delays->flags |= flag;
100}
101
102static inline void delayacct_clear_flag(int flag)
103{
104 if (current->delays)
105 current->delays->flags &= ~flag;
106}
107
108static inline void delayacct_tsk_init(struct task_struct *tsk)
109{
110 /* reinitialize in case parent's non-null pointer was dup'ed*/
111 tsk->delays = NULL;
Shailabh Nagar163ecdf2006-07-30 03:03:11 -0700112 if (delayacct_on)
Shailabh Nagarca74e922006-07-14 00:24:36 -0700113 __delayacct_tsk_init(tsk);
114}
115
Shailabh Nagar35df17c2006-08-31 21:27:38 -0700116/* Free tsk->delays. Called from bad fork and __put_task_struct
117 * where there's no risk of tsk->delays being accessed elsewhere
118 */
119static inline void delayacct_tsk_free(struct task_struct *tsk)
Shailabh Nagarca74e922006-07-14 00:24:36 -0700120{
121 if (tsk->delays)
Shailabh Nagar35df17c2006-08-31 21:27:38 -0700122 kmem_cache_free(delayacct_cache, tsk->delays);
123 tsk->delays = NULL;
Shailabh Nagarca74e922006-07-14 00:24:36 -0700124}
125
Shailabh Nagar0ff92242006-07-14 00:24:37 -0700126static inline void delayacct_blkio_start(void)
127{
Balbir Singh846c7bb2007-10-18 23:39:44 -0700128 delayacct_set_flag(DELAYACCT_PF_BLKIO);
Shailabh Nagar0ff92242006-07-14 00:24:37 -0700129 if (current->delays)
130 __delayacct_blkio_start();
131}
132
133static inline void delayacct_blkio_end(void)
134{
135 if (current->delays)
136 __delayacct_blkio_end();
Balbir Singh846c7bb2007-10-18 23:39:44 -0700137 delayacct_clear_flag(DELAYACCT_PF_BLKIO);
Shailabh Nagar0ff92242006-07-14 00:24:37 -0700138}
139
Shailabh Nagar6f449932006-07-14 00:24:41 -0700140static inline int delayacct_add_tsk(struct taskstats *d,
141 struct task_struct *tsk)
142{
Shailabh Nagar163ecdf2006-07-30 03:03:11 -0700143 if (!delayacct_on || !tsk->delays)
Shailabh Nagar6f449932006-07-14 00:24:41 -0700144 return 0;
145 return __delayacct_add_tsk(d, tsk);
146}
147
Shailabh Nagar25890452006-07-14 00:24:43 -0700148static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk)
149{
150 if (tsk->delays)
151 return __delayacct_blkio_ticks(tsk);
152 return 0;
153}
154
Keika Kobayashi873b4772008-07-25 01:48:52 -0700155static inline void delayacct_freepages_start(void)
156{
157 if (current->delays)
158 __delayacct_freepages_start();
159}
160
161static inline void delayacct_freepages_end(void)
162{
163 if (current->delays)
164 __delayacct_freepages_end();
165}
166
Johannes Weinerd6687a22018-10-26 15:06:08 -0700167static inline void delayacct_thrashing_start(void)
168{
169 if (current->delays)
170 __delayacct_thrashing_start();
171}
172
173static inline void delayacct_thrashing_end(void)
174{
175 if (current->delays)
176 __delayacct_thrashing_end();
177}
178
Shailabh Nagarca74e922006-07-14 00:24:36 -0700179#else
180static inline void delayacct_set_flag(int flag)
181{}
182static inline void delayacct_clear_flag(int flag)
183{}
184static inline void delayacct_init(void)
185{}
186static inline void delayacct_tsk_init(struct task_struct *tsk)
187{}
Shailabh Nagar35df17c2006-08-31 21:27:38 -0700188static inline void delayacct_tsk_free(struct task_struct *tsk)
Shailabh Nagarca74e922006-07-14 00:24:36 -0700189{}
Shailabh Nagar0ff92242006-07-14 00:24:37 -0700190static inline void delayacct_blkio_start(void)
191{}
192static inline void delayacct_blkio_end(void)
193{}
Shailabh Nagar6f449932006-07-14 00:24:41 -0700194static inline int delayacct_add_tsk(struct taskstats *d,
195 struct task_struct *tsk)
196{ return 0; }
Shailabh Nagar25890452006-07-14 00:24:43 -0700197static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk)
198{ return 0; }
Balbir Singh846c7bb2007-10-18 23:39:44 -0700199static inline int delayacct_is_task_waiting_on_io(struct task_struct *p)
200{ return 0; }
Keika Kobayashi873b4772008-07-25 01:48:52 -0700201static inline void delayacct_freepages_start(void)
202{}
203static inline void delayacct_freepages_end(void)
204{}
Johannes Weinerd6687a22018-10-26 15:06:08 -0700205static inline void delayacct_thrashing_start(void)
206{}
207static inline void delayacct_thrashing_end(void)
208{}
Keika Kobayashi873b4772008-07-25 01:48:52 -0700209
Shailabh Nagarca74e922006-07-14 00:24:36 -0700210#endif /* CONFIG_TASK_DELAY_ACCT */
211
212#endif