Skip to content

Commit

Permalink
Merge branch 'timers-for-linus-urgent' of git://git.kernel.org/pub/sc…
Browse files Browse the repository at this point in the history
…m/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
  • Loading branch information
Linus Torvalds committed May 24, 2010
2 parents 0fed2b5 + f00e047 commit c3ed9ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ SYSCALL_DEFINE2(gettimeofday, struct timeval __user *, tv,
*/
static inline void warp_clock(void)
{
struct timespec delta, adjust;
delta.tv_sec = sys_tz.tz_minuteswest * 60;
delta.tv_nsec = 0;
adjust = timespec_add_safe(current_kernel_time(), delta);
struct timespec adjust;

adjust = current_kernel_time();
adjust.tv_sec += sys_tz.tz_minuteswest * 60;
do_settimeofday(&adjust);
}

Expand Down
7 changes: 4 additions & 3 deletions kernel/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,13 +750,14 @@ unsigned long apply_slack(struct timer_list *timer, unsigned long expires)
unsigned long expires_limit, mask;
int bit;

expires_limit = expires + timer->slack;
expires_limit = expires;

if (timer->slack < 0) /* auto slack: use 0.4% */
if (timer->slack > -1)
expires_limit = expires + timer->slack;
else if (time_after(expires, jiffies)) /* auto slack: use 0.4% */
expires_limit = expires + (expires - jiffies)/256;

mask = expires ^ expires_limit;

if (mask == 0)
return expires;

Expand Down

0 comments on commit c3ed9ea

Please sign in to comment.