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 branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull scheduler fixes from Thomas Gleixner:
"Two small fixes for the schedulre core:

- Use the proper switch_mm() variant in idle_task_exit() because that
code is not called with interrupts disabled.

- Fix a confusing typo in a printk"

* 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched/core: Idle_task_exit() shouldn't use switch_mm_irqs_off()
sched/fair: Fix typo in printk message

+2 -2
+1 -1
kernel/sched/core.c
··· 5605 5605 BUG_ON(cpu_online(smp_processor_id())); 5606 5606 5607 5607 if (mm != &init_mm) { 5608 - switch_mm_irqs_off(mm, &init_mm, current); 5608 + switch_mm(mm, &init_mm, current); 5609 5609 finish_arch_post_lock_switch(); 5610 5610 } 5611 5611 mmdrop(mm);
+1 -1
kernel/sched/fair.c
··· 3563 3563 trace_sched_stat_runtime_enabled()) { 3564 3564 printk_deferred_once("Scheduler tracepoints stat_sleep, stat_iowait, " 3565 3565 "stat_blocked and stat_runtime require the " 3566 - "kernel parameter schedstats=enabled or " 3566 + "kernel parameter schedstats=enable or " 3567 3567 "kernel.sched_schedstats=1\n"); 3568 3568 } 3569 3569 #endif