diff options
-rw-r--r-- | kernel/sched/deadline.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c index 9594c128ff17..e5db8c6feebd 100644 --- a/kernel/sched/deadline.c +++ b/kernel/sched/deadline.c | |||
@@ -1013,6 +1013,10 @@ static void start_hrtick_dl(struct rq *rq, struct task_struct *p) | |||
1013 | { | 1013 | { |
1014 | hrtick_start(rq, p->dl.runtime); | 1014 | hrtick_start(rq, p->dl.runtime); |
1015 | } | 1015 | } |
1016 | #else /* !CONFIG_SCHED_HRTICK */ | ||
1017 | static void start_hrtick_dl(struct rq *rq, struct task_struct *p) | ||
1018 | { | ||
1019 | } | ||
1016 | #endif | 1020 | #endif |
1017 | 1021 | ||
1018 | static struct sched_dl_entity *pick_next_dl_entity(struct rq *rq, | 1022 | static struct sched_dl_entity *pick_next_dl_entity(struct rq *rq, |
@@ -1066,10 +1070,8 @@ struct task_struct *pick_next_task_dl(struct rq *rq, struct task_struct *prev) | |||
1066 | /* Running task will never be pushed. */ | 1070 | /* Running task will never be pushed. */ |
1067 | dequeue_pushable_dl_task(rq, p); | 1071 | dequeue_pushable_dl_task(rq, p); |
1068 | 1072 | ||
1069 | #ifdef CONFIG_SCHED_HRTICK | ||
1070 | if (hrtick_enabled(rq)) | 1073 | if (hrtick_enabled(rq)) |
1071 | start_hrtick_dl(rq, p); | 1074 | start_hrtick_dl(rq, p); |
1072 | #endif | ||
1073 | 1075 | ||
1074 | set_post_schedule(rq); | 1076 | set_post_schedule(rq); |
1075 | 1077 | ||
@@ -1088,10 +1090,8 @@ static void task_tick_dl(struct rq *rq, struct task_struct *p, int queued) | |||
1088 | { | 1090 | { |
1089 | update_curr_dl(rq); | 1091 | update_curr_dl(rq); |
1090 | 1092 | ||
1091 | #ifdef CONFIG_SCHED_HRTICK | ||
1092 | if (hrtick_enabled(rq) && queued && p->dl.runtime > 0) | 1093 | if (hrtick_enabled(rq) && queued && p->dl.runtime > 0) |
1093 | start_hrtick_dl(rq, p); | 1094 | start_hrtick_dl(rq, p); |
1094 | #endif | ||
1095 | } | 1095 | } |
1096 | 1096 | ||
1097 | static void task_fork_dl(struct task_struct *p) | 1097 | static void task_fork_dl(struct task_struct *p) |