diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-24 10:59:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-24 10:59:17 -0400 |
commit | c3ed9ea4ab460080dea9449c709be9316c670c72 (patch) | |
tree | 8330e32353e132b090472751161325baf4e27133 /kernel/timer.c | |
parent | 0fed2b5cb4c04336b26b0cbf6f9a8c07081f79a6 (diff) | |
parent | f00e047efdf9d31c8a7dd7875b411f97cfa7d8e5 (diff) |
Merge branch 'timers-for-linus-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers-for-linus-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
timers: Fix slack calculation for expired timers
timekeeping: Fix timezone update
Diffstat (limited to 'kernel/timer.c')
-rw-r--r-- | kernel/timer.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/timer.c b/kernel/timer.c index 9199f3c52215..be394af5bc22 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -750,13 +750,14 @@ unsigned long apply_slack(struct timer_list *timer, unsigned long expires) | |||
750 | unsigned long expires_limit, mask; | 750 | unsigned long expires_limit, mask; |
751 | int bit; | 751 | int bit; |
752 | 752 | ||
753 | expires_limit = expires + timer->slack; | 753 | expires_limit = expires; |
754 | 754 | ||
755 | if (timer->slack < 0) /* auto slack: use 0.4% */ | 755 | if (timer->slack > -1) |
756 | expires_limit = expires + timer->slack; | ||
757 | else if (time_after(expires, jiffies)) /* auto slack: use 0.4% */ | ||
756 | expires_limit = expires + (expires - jiffies)/256; | 758 | expires_limit = expires + (expires - jiffies)/256; |
757 | 759 | ||
758 | mask = expires ^ expires_limit; | 760 | mask = expires ^ expires_limit; |
759 | |||
760 | if (mask == 0) | 761 | if (mask == 0) |
761 | return expires; | 762 | return expires; |
762 | 763 | ||