aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/sched/core.c5
-rw-r--r--kernel/sched/fair.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index f12225f26b70..091e089063be 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -5851,11 +5851,14 @@ void __init sched_init_smp(void)
5851 /* 5851 /*
5852 * There's no userspace yet to cause hotplug operations; hence all the 5852 * There's no userspace yet to cause hotplug operations; hence all the
5853 * CPU masks are stable and all blatant races in the below code cannot 5853 * CPU masks are stable and all blatant races in the below code cannot
5854 * happen. 5854 * happen. The hotplug lock is nevertheless taken to satisfy lockdep,
5855 * but there won't be any contention on it.
5855 */ 5856 */
5857 cpus_read_lock();
5856 mutex_lock(&sched_domains_mutex); 5858 mutex_lock(&sched_domains_mutex);
5857 sched_init_domains(cpu_active_mask); 5859 sched_init_domains(cpu_active_mask);
5858 mutex_unlock(&sched_domains_mutex); 5860 mutex_unlock(&sched_domains_mutex);
5861 cpus_read_unlock();
5859 5862
5860 /* Move init over to a non-isolated CPU */ 5863 /* Move init over to a non-isolated CPU */
5861 if (set_cpus_allowed_ptr(current, housekeeping_cpumask(HK_FLAG_DOMAIN)) < 0) 5864 if (set_cpus_allowed_ptr(current, housekeeping_cpumask(HK_FLAG_DOMAIN)) < 0)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index ee271bb661cc..3648d0300fdf 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -2400,8 +2400,8 @@ void task_numa_fault(int last_cpupid, int mem_node, int pages, int flags)
2400 local = 1; 2400 local = 1;
2401 2401
2402 /* 2402 /*
2403 * Retry task to preferred node migration periodically, in case it 2403 * Retry to migrate task to preferred node periodically, in case it
2404 * case it previously failed, or the scheduler moved us. 2404 * previously failed, or the scheduler moved us.
2405 */ 2405 */
2406 if (time_after(jiffies, p->numa_migrate_retry)) { 2406 if (time_after(jiffies, p->numa_migrate_retry)) {
2407 task_numa_placement(p); 2407 task_numa_placement(p);