From: Andi Kleen <ak@xxxxxxxxxxxxxxx> We had some problems with pages getting unmapped in single threaded affinitized processes. It was tracked down to NUMA scanning. In this case it doesn't make any sense to unmap pages if the process is single threaded and the page is already on the node the process is running on. Add a check for this case into the numa protection code, and skip unmapping if true. In theory the process could be migrated later, but we will eventually rescan and unmap and migrate then. In theory this could be made more fancy: remembering this state per process or even whole mm. However that would need extra tracking and be more complicated, and the simple check seems to work fine so far. Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx> --- mm/mprotect.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mm/mprotect.c b/mm/mprotect.c index a4830f0325fe..e8028658e817 100644 --- a/mm/mprotect.c +++ b/mm/mprotect.c @@ -94,6 +94,14 @@ static unsigned long change_pte_range(struct vm_area_struct *vma, pmd_t *pmd, /* Avoid TLB flush if possible */ if (pte_protnone(oldpte)) continue; + + /* + * Don't mess with PTEs if page is already on the node + * a single-threaded process is running on. + */ + if (atomic_read(&vma->vm_mm->mm_users) == 1 && + cpu_to_node(raw_smp_processor_id()) == page_to_nid(page)) + continue; } ptent = ptep_modify_prot_start(mm, addr, pte); -- 2.5.5 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>