diff options
author | Shailabh Nagar <nagar@watson.ibm.com> | 2006-07-14 03:24:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-15 00:53:56 -0400 |
commit | 6f44993fe1d7b2b097f6ac60cd5835c6f5ca0874 (patch) | |
tree | 0f349f4e6c28cc5d11b7083273543a294c437216 /include/linux/delayacct.h | |
parent | c757249af152c59fd74b85e52e8c090acb33d9c0 (diff) |
[PATCH] per-task-delay-accounting: delay accounting usage of taskstats interface
Usage of taskstats interface by delay accounting.
Signed-off-by: Shailabh Nagar <nagar@us.ibm.com>
Signed-off-by: Balbir Singh <balbir@in.ibm.com>
Cc: Jes Sorensen <jes@sgi.com>
Cc: Peter Chubb <peterc@gelato.unsw.edu.au>
Cc: Erich Focht <efocht@ess.nec.de>
Cc: Levent Serinol <lserinol@gmail.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/delayacct.h')
-rw-r--r-- | include/linux/delayacct.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/delayacct.h b/include/linux/delayacct.h index 0ecbf9aad8e1..d955078a1441 100644 --- a/include/linux/delayacct.h +++ b/include/linux/delayacct.h | |||
@@ -18,6 +18,7 @@ | |||
18 | #define _LINUX_DELAYACCT_H | 18 | #define _LINUX_DELAYACCT_H |
19 | 19 | ||
20 | #include <linux/sched.h> | 20 | #include <linux/sched.h> |
21 | #include <linux/taskstats_kern.h> | ||
21 | 22 | ||
22 | /* | 23 | /* |
23 | * Per-task flags relevant to delay accounting | 24 | * Per-task flags relevant to delay accounting |
@@ -35,6 +36,7 @@ extern void __delayacct_tsk_init(struct task_struct *); | |||
35 | extern void __delayacct_tsk_exit(struct task_struct *); | 36 | extern void __delayacct_tsk_exit(struct task_struct *); |
36 | extern void __delayacct_blkio_start(void); | 37 | extern void __delayacct_blkio_start(void); |
37 | extern void __delayacct_blkio_end(void); | 38 | extern void __delayacct_blkio_end(void); |
39 | extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *); | ||
38 | 40 | ||
39 | static inline void delayacct_set_flag(int flag) | 41 | static inline void delayacct_set_flag(int flag) |
40 | { | 42 | { |
@@ -74,6 +76,16 @@ static inline void delayacct_blkio_end(void) | |||
74 | __delayacct_blkio_end(); | 76 | __delayacct_blkio_end(); |
75 | } | 77 | } |
76 | 78 | ||
79 | static 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 | |||
77 | #else | 89 | #else |
78 | static inline void delayacct_set_flag(int flag) | 90 | static inline void delayacct_set_flag(int flag) |
79 | {} | 91 | {} |
@@ -89,6 +101,9 @@ static inline void delayacct_blkio_start(void) | |||
89 | {} | 101 | {} |
90 | static inline void delayacct_blkio_end(void) | 102 | static inline void delayacct_blkio_end(void) |
91 | {} | 103 | {} |
104 | static inline int delayacct_add_tsk(struct taskstats *d, | ||
105 | struct task_struct *tsk) | ||
106 | { return 0; } | ||
92 | #endif /* CONFIG_TASK_DELAY_ACCT */ | 107 | #endif /* CONFIG_TASK_DELAY_ACCT */ |
93 | 108 | ||
94 | #endif | 109 | #endif |