Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310444
b: refs/heads/master
c: 62cf20b
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed May 25, 2012
1 parent 4b45bee commit 34ee11b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fc0830fe017d02b7b4995b5c402b484b65d9dfc6
refs/heads/master: 62cf20b32aee4ae889a2eb40fd41c0eab73de970
16 changes: 8 additions & 8 deletions trunk/kernel/time/tick-sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,14 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)

static int sched_skew_tick;

static int __init skew_tick(char *str)
{
get_option(&str, &sched_skew_tick);

return 0;
}
early_param("skew_tick", skew_tick);

/**
* tick_setup_sched_timer - setup the tick emulation timer
*/
Expand Down Expand Up @@ -920,11 +928,3 @@ int tick_check_oneshot_change(int allow_nohz)
tick_nohz_switch_to_nohz();
return 0;
}

static int __init skew_tick(char *str)
{
get_option(&str, &sched_skew_tick);

return 0;
}
early_param("skew_tick", skew_tick);

0 comments on commit 34ee11b

Please sign in to comment.