diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-02-11 05:30:27 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-11 08:04:21 -0500 |
commit | 4da94d49b2ecb0a26e716a8811c3ecc542c2a65d (patch) | |
tree | a87980822b2499021f080c2b0235f441b30413cc | |
parent | 3fccfd67df79c6351a156eb25a7a514e5f39c4d9 (diff) |
timers: fix TIMER_ABSTIME for process wide cpu timers
The POSIX timer interface allows for absolute time expiry values through the
TIMER_ABSTIME flag, therefore we have to synchronize the timer to the clock
every time we start it.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | include/linux/sched.h | 13 | ||||
-rw-r--r-- | kernel/posix-cpu-timers.c | 34 |
2 files changed, 35 insertions, 12 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 5d10fa0b6002..8981e52c714f 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -2201,18 +2201,7 @@ static inline int spin_needbreak(spinlock_t *lock) | |||
2201 | * Thread group CPU time accounting. | 2201 | * Thread group CPU time accounting. |
2202 | */ | 2202 | */ |
2203 | void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times); | 2203 | void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times); |
2204 | 2204 | void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times); | |
2205 | static inline | ||
2206 | void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times) | ||
2207 | { | ||
2208 | struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; | ||
2209 | unsigned long flags; | ||
2210 | |||
2211 | spin_lock_irqsave(&cputimer->lock, flags); | ||
2212 | cputimer->running = 1; | ||
2213 | *times = cputimer->cputime; | ||
2214 | spin_unlock_irqrestore(&cputimer->lock, flags); | ||
2215 | } | ||
2216 | 2205 | ||
2217 | static inline void thread_group_cputime_init(struct signal_struct *sig) | 2206 | static inline void thread_group_cputime_init(struct signal_struct *sig) |
2218 | { | 2207 | { |
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c index e5d7bfdfa7d4..2313a4cc14ea 100644 --- a/kernel/posix-cpu-timers.c +++ b/kernel/posix-cpu-timers.c | |||
@@ -261,6 +261,40 @@ out: | |||
261 | rcu_read_unlock(); | 261 | rcu_read_unlock(); |
262 | } | 262 | } |
263 | 263 | ||
264 | static void update_gt_cputime(struct task_cputime *a, struct task_cputime *b) | ||
265 | { | ||
266 | if (cputime_gt(b->utime, a->utime)) | ||
267 | a->utime = b->utime; | ||
268 | |||
269 | if (cputime_gt(b->stime, a->stime)) | ||
270 | a->stime = b->stime; | ||
271 | |||
272 | if (b->sum_exec_runtime > a->sum_exec_runtime) | ||
273 | a->sum_exec_runtime = b->sum_exec_runtime; | ||
274 | } | ||
275 | |||
276 | void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times) | ||
277 | { | ||
278 | struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; | ||
279 | struct task_cputime sum; | ||
280 | unsigned long flags; | ||
281 | |||
282 | spin_lock_irqsave(&cputimer->lock, flags); | ||
283 | if (!cputimer->running) { | ||
284 | cputimer->running = 1; | ||
285 | /* | ||
286 | * The POSIX timer interface allows for absolute time expiry | ||
287 | * values through the TIMER_ABSTIME flag, therefore we have | ||
288 | * to synchronize the timer to the clock every time we start | ||
289 | * it. | ||
290 | */ | ||
291 | thread_group_cputime(tsk, &sum); | ||
292 | update_gt_cputime(&cputimer->cputime, &sum); | ||
293 | } | ||
294 | *times = cputimer->cputime; | ||
295 | spin_unlock_irqrestore(&cputimer->lock, flags); | ||
296 | } | ||
297 | |||
264 | /* | 298 | /* |
265 | * Sample a process (thread group) clock for the given group_leader task. | 299 | * Sample a process (thread group) clock for the given group_leader task. |
266 | * Must be called with tasklist_lock held for reading. | 300 | * Must be called with tasklist_lock held for reading. |