aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorShailabh Nagar <nagar@watson.ibm.com>2006-07-14 03:24:41 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-15 00:53:56 -0400
commit6f44993fe1d7b2b097f6ac60cd5835c6f5ca0874 (patch)
tree0f349f4e6c28cc5d11b7083273543a294c437216 /include/linux
parentc757249af152c59fd74b85e52e8c090acb33d9c0 (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')
-rw-r--r--include/linux/delayacct.h15
-rw-r--r--include/linux/sched.h1
-rw-r--r--include/linux/taskstats.h55
-rw-r--r--include/linux/taskstats_kern.h1
4 files changed, 71 insertions, 1 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 *);
35extern void __delayacct_tsk_exit(struct task_struct *); 36extern void __delayacct_tsk_exit(struct task_struct *);
36extern void __delayacct_blkio_start(void); 37extern void __delayacct_blkio_start(void);
37extern void __delayacct_blkio_end(void); 38extern void __delayacct_blkio_end(void);
39extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *);
38 40
39static inline void delayacct_set_flag(int flag) 41static 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
79static 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
78static inline void delayacct_set_flag(int flag) 90static inline void delayacct_set_flag(int flag)
79{} 91{}
@@ -89,6 +101,9 @@ static inline void delayacct_blkio_start(void)
89{} 101{}
90static inline void delayacct_blkio_end(void) 102static inline void delayacct_blkio_end(void)
91{} 103{}
104static 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
diff --git a/include/linux/sched.h b/include/linux/sched.h
index f751062d89a2..3c5610ca0c92 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -990,6 +990,7 @@ struct task_struct {
990 */ 990 */
991 struct pipe_inode_info *splice_pipe; 991 struct pipe_inode_info *splice_pipe;
992#ifdef CONFIG_TASK_DELAY_ACCT 992#ifdef CONFIG_TASK_DELAY_ACCT
993 spinlock_t delays_lock;
993 struct task_delay_info *delays; 994 struct task_delay_info *delays;
994#endif 995#endif
995}; 996};
diff --git a/include/linux/taskstats.h b/include/linux/taskstats.h
index 51f62759bea9..c6aeca32348e 100644
--- a/include/linux/taskstats.h
+++ b/include/linux/taskstats.h
@@ -34,7 +34,60 @@
34struct taskstats { 34struct taskstats {
35 35
36 /* Version 1 */ 36 /* Version 1 */
37 __u64 version; 37 __u16 version;
38 __u16 padding[3]; /* Userspace should not interpret the padding
39 * field which can be replaced by useful
40 * fields if struct taskstats is extended.
41 */
42
43 /* Delay accounting fields start
44 *
45 * All values, until comment "Delay accounting fields end" are
46 * available only if delay accounting is enabled, even though the last
47 * few fields are not delays
48 *
49 * xxx_count is the number of delay values recorded
50 * xxx_delay_total is the corresponding cumulative delay in nanoseconds
51 *
52 * xxx_delay_total wraps around to zero on overflow
53 * xxx_count incremented regardless of overflow
54 */
55
56 /* Delay waiting for cpu, while runnable
57 * count, delay_total NOT updated atomically
58 */
59 __u64 cpu_count;
60 __u64 cpu_delay_total;
61
62 /* Following four fields atomically updated using task->delays->lock */
63
64 /* Delay waiting for synchronous block I/O to complete
65 * does not account for delays in I/O submission
66 */
67 __u64 blkio_count;
68 __u64 blkio_delay_total;
69
70 /* Delay waiting for page fault I/O (swap in only) */
71 __u64 swapin_count;
72 __u64 swapin_delay_total;
73
74 /* cpu "wall-clock" running time
75 * On some architectures, value will adjust for cpu time stolen
76 * from the kernel in involuntary waits due to virtualization.
77 * Value is cumulative, in nanoseconds, without a corresponding count
78 * and wraps around to zero silently on overflow
79 */
80 __u64 cpu_run_real_total;
81
82 /* cpu "virtual" running time
83 * Uses time intervals seen by the kernel i.e. no adjustment
84 * for kernel's involuntary waits due to virtualization.
85 * Value is cumulative, in nanoseconds, without a corresponding count
86 * and wraps around to zero silently on overflow
87 */
88 __u64 cpu_run_virtual_total;
89 /* Delay accounting fields end */
90 /* version 1 ends here */
38}; 91};
39 92
40 93
diff --git a/include/linux/taskstats_kern.h b/include/linux/taskstats_kern.h
index bd0ecb969c26..fc9da2e26443 100644
--- a/include/linux/taskstats_kern.h
+++ b/include/linux/taskstats_kern.h
@@ -17,6 +17,7 @@ enum {
17 17
18#ifdef CONFIG_TASKSTATS 18#ifdef CONFIG_TASKSTATS
19extern kmem_cache_t *taskstats_cache; 19extern kmem_cache_t *taskstats_cache;
20extern struct mutex taskstats_exit_mutex;
20 21
21static inline void taskstats_exit_alloc(struct taskstats **ptidstats, 22static inline void taskstats_exit_alloc(struct taskstats **ptidstats,
22 struct taskstats **ptgidstats) 23 struct taskstats **ptgidstats)