Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / delayacct.h
blob7e8b6011b8f3e0c5b7b0ff6ab459a4aa158ab64b
1 /* delayacct.h - per-task delay accounting
3 * Copyright (C) Shailabh Nagar, IBM Corp. 2006
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.
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.
17 #ifndef _LINUX_DELAYACCT_H
18 #define _LINUX_DELAYACCT_H
20 #include <linux/sched.h>
21 #include <linux/taskstats_kern.h>
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
28 #define DELAYACCT_PF_SWAPIN 0x00000001 /* I am doing a swapin */
30 #ifdef CONFIG_TASK_DELAY_ACCT
32 extern int delayacct_on; /* Delay accounting turned on/off */
33 extern kmem_cache_t *delayacct_cache;
34 extern void delayacct_init(void);
35 extern void __delayacct_tsk_init(struct task_struct *);
36 extern void __delayacct_tsk_exit(struct task_struct *);
37 extern void __delayacct_blkio_start(void);
38 extern void __delayacct_blkio_end(void);
39 extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *);
40 extern __u64 __delayacct_blkio_ticks(struct task_struct *);
42 static inline void delayacct_set_flag(int flag)
44 if (current->delays)
45 current->delays->flags |= flag;
48 static inline void delayacct_clear_flag(int flag)
50 if (current->delays)
51 current->delays->flags &= ~flag;
54 static inline void delayacct_tsk_init(struct task_struct *tsk)
56 /* reinitialize in case parent's non-null pointer was dup'ed*/
57 tsk->delays = NULL;
58 if (unlikely(delayacct_on))
59 __delayacct_tsk_init(tsk);
62 static inline void delayacct_tsk_exit(struct task_struct *tsk)
64 if (tsk->delays)
65 __delayacct_tsk_exit(tsk);
68 static inline void delayacct_blkio_start(void)
70 if (current->delays)
71 __delayacct_blkio_start();
74 static inline void delayacct_blkio_end(void)
76 if (current->delays)
77 __delayacct_blkio_end();
80 static inline int delayacct_add_tsk(struct taskstats *d,
81 struct task_struct *tsk)
83 if (likely(!delayacct_on))
84 return -EINVAL;
85 if (!tsk->delays)
86 return 0;
87 return __delayacct_add_tsk(d, tsk);
90 static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk)
92 if (tsk->delays)
93 return __delayacct_blkio_ticks(tsk);
94 return 0;
97 #else
98 static inline void delayacct_set_flag(int flag)
100 static inline void delayacct_clear_flag(int flag)
102 static inline void delayacct_init(void)
104 static inline void delayacct_tsk_init(struct task_struct *tsk)
106 static inline void delayacct_tsk_exit(struct task_struct *tsk)
108 static inline void delayacct_blkio_start(void)
110 static inline void delayacct_blkio_end(void)
112 static inline int delayacct_add_tsk(struct taskstats *d,
113 struct task_struct *tsk)
114 { return 0; }
115 static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk)
116 { return 0; }
117 #endif /* CONFIG_TASK_DELAY_ACCT */
119 #endif