We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0830f commit 62cf20bCopy full SHA for 62cf20b
kernel/time/tick-sched.c
@@ -816,6 +816,14 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
816
817
static int sched_skew_tick;
818
819
+static int __init skew_tick(char *str)
820
+{
821
+ get_option(&str, &sched_skew_tick);
822
+
823
+ return 0;
824
+}
825
+early_param("skew_tick", skew_tick);
826
827
/**
828
* tick_setup_sched_timer - setup the tick emulation timer
829
*/
@@ -920,11 +928,3 @@ int tick_check_oneshot_change(int allow_nohz)
920
928
tick_nohz_switch_to_nohz();
921
929
return 0;
922
930
}
923
-
924
-static int __init skew_tick(char *str)
925
-{
926
- get_option(&str, &sched_skew_tick);
927
- return 0;
-}
-early_param("skew_tick", skew_tick);
0 commit comments