Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'sched_urgent_for_v5.19_rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull scheduler fix from Borislav Petkov:
"A single fix to correct a wrong BUG_ON() condition for deboosted
tasks"

* tag 'sched_urgent_for_v5.19_rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched/deadline: Fix BUG_ON condition for deboosted tasks

+4 -1
+4 -1
kernel/sched/deadline.c
··· 1701 1701 * the throttle. 1702 1702 */ 1703 1703 p->dl.dl_throttled = 0; 1704 - BUG_ON(!is_dl_boosted(&p->dl) || flags != ENQUEUE_REPLENISH); 1704 + if (!(flags & ENQUEUE_REPLENISH)) 1705 + printk_deferred_once("sched: DL de-boosted task PID %d: REPLENISH flag missing\n", 1706 + task_pid_nr(p)); 1707 + 1705 1708 return; 1706 1709 } 1707 1710