aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time/tick-sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/time/tick-sched.c')
-rw-r--r--kernel/time/tick-sched.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index 4eddbb5ea9c5..efd386667536 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -816,6 +816,14 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
816 816
817static int sched_skew_tick; 817static int sched_skew_tick;
818 818
819static int __init skew_tick(char *str)
820{
821 get_option(&str, &sched_skew_tick);
822
823 return 0;
824}
825early_param("skew_tick", skew_tick);
826
819/** 827/**
820 * tick_setup_sched_timer - setup the tick emulation timer 828 * tick_setup_sched_timer - setup the tick emulation timer
821 */ 829 */
@@ -920,11 +928,3 @@ int tick_check_oneshot_change(int allow_nohz)
920 tick_nohz_switch_to_nohz(); 928 tick_nohz_switch_to_nohz();
921 return 0; 929 return 0;
922} 930}
923
924static int __init skew_tick(char *str)
925{
926 get_option(&str, &sched_skew_tick);
927
928 return 0;
929}
930early_param("skew_tick", skew_tick);