From: Rik van Riel Date: Tue, 18 Feb 2014 22:12:44 +0000 (-0500) Subject: sched,numa: add cond_resched to task_numa_work X-Git-Tag: v3.14-rc4~10^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3cf1962cdbf6b3a9e3ef21116d215bbab350ea37;p=platform%2Fkernel%2Flinux-exynos.git sched,numa: add cond_resched to task_numa_work Normally task_numa_work scans over a fairly small amount of memory, but it is possible to run into a large unpopulated part of virtual memory, with no pages mapped. In that case, task_numa_work can run for a while, and it may make sense to reschedule as required. Cc: akpm@linux-foundation.org Cc: Andrea Arcangeli Signed-off-by: Rik van Riel Reported-by: Xing Gang Tested-by: Chegu Vinod Signed-off-by: Peter Zijlstra Link: http://lkml.kernel.org/r/1392761566-24834-2-git-send-email-riel@redhat.com Signed-off-by: Thomas Gleixner --- diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 966cc2b..7815709 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -1757,6 +1757,8 @@ void task_numa_work(struct callback_head *work) start = end; if (pages <= 0) goto out; + + cond_resched(); } while (end != vma->vm_end); }