diff options
author | Shailabh Nagar <nagar@watson.ibm.com> | 2006-07-14 03:24:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-15 00:53:56 -0400 |
commit | 0ff922452df86f3e9a2c6f705c4588ec62d096a7 (patch) | |
tree | ac84041bfb63f12d0e2db733c46b2cd2438b4882 /include/linux/delayacct.h | |
parent | ca74e92b4698276b6696f15a801759f50944f387 (diff) |
[PATCH] per-task-delay-accounting: sync block I/O and swapin delay collection
Unlike earlier iterations of the delay accounting patches, now delays are only
collected for the actual I/O waits rather than try and cover the delays seen
in I/O submission paths.
Account separately for block I/O delays incurred as a result of swapin page
faults whose frequency can be affected by the task/process' rss limit. Hence
swapin delays can act as feedback for rss limit changes independent of I/O
priority changes.
Signed-off-by: Shailabh Nagar <nagar@watson.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 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/delayacct.h b/include/linux/delayacct.h index 9572cfa1f129..0ecbf9aad8e1 100644 --- a/include/linux/delayacct.h +++ b/include/linux/delayacct.h | |||
@@ -19,6 +19,13 @@ | |||
19 | 19 | ||
20 | #include <linux/sched.h> | 20 | #include <linux/sched.h> |
21 | 21 | ||
22 | /* | ||
23 | * Per-task flags relevant to delay accounting | ||
24 | * maintained privately to avoid exhausting similar flags in sched.h:PF_* | ||
25 | * Used to set current->delays->flags | ||
26 | */ | ||
27 | #define DELAYACCT_PF_SWAPIN 0x00000001 /* I am doing a swapin */ | ||
28 | |||
22 | #ifdef CONFIG_TASK_DELAY_ACCT | 29 | #ifdef CONFIG_TASK_DELAY_ACCT |
23 | 30 | ||
24 | extern int delayacct_on; /* Delay accounting turned on/off */ | 31 | extern int delayacct_on; /* Delay accounting turned on/off */ |
@@ -26,6 +33,8 @@ extern kmem_cache_t *delayacct_cache; | |||
26 | extern void delayacct_init(void); | 33 | extern void delayacct_init(void); |
27 | extern void __delayacct_tsk_init(struct task_struct *); | 34 | extern void __delayacct_tsk_init(struct task_struct *); |
28 | extern void __delayacct_tsk_exit(struct task_struct *); | 35 | extern void __delayacct_tsk_exit(struct task_struct *); |
36 | extern void __delayacct_blkio_start(void); | ||
37 | extern void __delayacct_blkio_end(void); | ||
29 | 38 | ||
30 | static inline void delayacct_set_flag(int flag) | 39 | static inline void delayacct_set_flag(int flag) |
31 | { | 40 | { |
@@ -53,6 +62,18 @@ static inline void delayacct_tsk_exit(struct task_struct *tsk) | |||
53 | __delayacct_tsk_exit(tsk); | 62 | __delayacct_tsk_exit(tsk); |
54 | } | 63 | } |
55 | 64 | ||
65 | static inline void delayacct_blkio_start(void) | ||
66 | { | ||
67 | if (current->delays) | ||
68 | __delayacct_blkio_start(); | ||
69 | } | ||
70 | |||
71 | static inline void delayacct_blkio_end(void) | ||
72 | { | ||
73 | if (current->delays) | ||
74 | __delayacct_blkio_end(); | ||
75 | } | ||
76 | |||
56 | #else | 77 | #else |
57 | static inline void delayacct_set_flag(int flag) | 78 | static inline void delayacct_set_flag(int flag) |
58 | {} | 79 | {} |
@@ -64,6 +85,10 @@ static inline void delayacct_tsk_init(struct task_struct *tsk) | |||
64 | {} | 85 | {} |
65 | static inline void delayacct_tsk_exit(struct task_struct *tsk) | 86 | static inline void delayacct_tsk_exit(struct task_struct *tsk) |
66 | {} | 87 | {} |
88 | static inline void delayacct_blkio_start(void) | ||
89 | {} | ||
90 | static inline void delayacct_blkio_end(void) | ||
91 | {} | ||
67 | #endif /* CONFIG_TASK_DELAY_ACCT */ | 92 | #endif /* CONFIG_TASK_DELAY_ACCT */ |
68 | 93 | ||
69 | #endif | 94 | #endif |