blob: d955078a1441109289e45b492d6bafac069757c7 [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>
Shailabh Nagar6f449932006-07-14 00:24:41 -070021#include <linux/taskstats_kern.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 */
29
Shailabh Nagarca74e922006-07-14 00:24:36 -070030#ifdef CONFIG_TASK_DELAY_ACCT
31
32extern int delayacct_on; /* Delay accounting turned on/off */
33extern kmem_cache_t *delayacct_cache;
34extern void delayacct_init(void);
35extern void __delayacct_tsk_init(struct task_struct *);
36extern void __delayacct_tsk_exit(struct task_struct *);
Shailabh Nagar0ff92242006-07-14 00:24:37 -070037extern void __delayacct_blkio_start(void);
38extern void __delayacct_blkio_end(void);
Shailabh Nagar6f449932006-07-14 00:24:41 -070039extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *);
Shailabh Nagarca74e922006-07-14 00:24:36 -070040
41static inline void delayacct_set_flag(int flag)
42{
43 if (current->delays)
44 current->delays->flags |= flag;
45}
46
47static inline void delayacct_clear_flag(int flag)
48{
49 if (current->delays)
50 current->delays->flags &= ~flag;
51}
52
53static inline void delayacct_tsk_init(struct task_struct *tsk)
54{
55 /* reinitialize in case parent's non-null pointer was dup'ed*/
56 tsk->delays = NULL;
57 if (unlikely(delayacct_on))
58 __delayacct_tsk_init(tsk);
59}
60
61static inline void delayacct_tsk_exit(struct task_struct *tsk)
62{
63 if (tsk->delays)
64 __delayacct_tsk_exit(tsk);
65}
66
Shailabh Nagar0ff92242006-07-14 00:24:37 -070067static inline void delayacct_blkio_start(void)
68{
69 if (current->delays)
70 __delayacct_blkio_start();
71}
72
73static inline void delayacct_blkio_end(void)
74{
75 if (current->delays)
76 __delayacct_blkio_end();
77}
78
Shailabh Nagar6f449932006-07-14 00:24:41 -070079static inline int delayacct_add_tsk(struct taskstats *d,
80 struct task_struct *tsk)
81{
82 if (likely(!delayacct_on))
83 return -EINVAL;
84 if (!tsk->delays)
85 return 0;
86 return __delayacct_add_tsk(d, tsk);
87}
88
Shailabh Nagarca74e922006-07-14 00:24:36 -070089#else
90static inline void delayacct_set_flag(int flag)
91{}
92static inline void delayacct_clear_flag(int flag)
93{}
94static inline void delayacct_init(void)
95{}
96static inline void delayacct_tsk_init(struct task_struct *tsk)
97{}
98static inline void delayacct_tsk_exit(struct task_struct *tsk)
99{}
Shailabh Nagar0ff92242006-07-14 00:24:37 -0700100static inline void delayacct_blkio_start(void)
101{}
102static inline void delayacct_blkio_end(void)
103{}
Shailabh Nagar6f449932006-07-14 00:24:41 -0700104static inline int delayacct_add_tsk(struct taskstats *d,
105 struct task_struct *tsk)
106{ return 0; }
Shailabh Nagarca74e922006-07-14 00:24:36 -0700107#endif /* CONFIG_TASK_DELAY_ACCT */
108
109#endif