Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c219b7dd authored by Steven Rostedt's avatar Steven Rostedt Committed by Ingo Molnar
Browse files

sched/deadline: Fix trivial typo in printk() message



It's "too much" not "to much".

Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
Acked-by: default avatarJuri Lelli <juri.lelli@arm.com>
Cc: Jiri Kosina <trivial@kernel.org>
Cc: Juri Lelli <juri.lelli@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20160210120422.4ca77e68@gandalf.local.home


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 65c23c65
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -420,7 +420,7 @@ static void replenish_dl_entity(struct sched_dl_entity *dl_se,
	 * entity.
	 * entity.
	 */
	 */
	if (dl_time_before(dl_se->deadline, rq_clock(rq))) {
	if (dl_time_before(dl_se->deadline, rq_clock(rq))) {
		printk_deferred_once("sched: DL replenish lagged to much\n");
		printk_deferred_once("sched: DL replenish lagged too much\n");
		dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
		dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
		dl_se->runtime = pi_se->dl_runtime;
		dl_se->runtime = pi_se->dl_runtime;
	}
	}