aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mm.h
diff options
context:
space:
mode:
authorLee Schermerhorn <lee.schermerhorn@hp.com>2012-10-25 08:16:32 -0400
committerMel Gorman <mgorman@suse.de>2012-12-11 09:42:43 -0500
commitb24f53a0bea38b266d219ee651b22dba727c44ae (patch)
treef85431707b44913a412efb5483dc366c310aab5e /include/linux/mm.h
parent4daae3b4b9e49b7e0935499a352f1c59d90287d2 (diff)
mm: mempolicy: Add MPOL_MF_LAZY
NOTE: Once again there is a lot of patch stealing and the end result is sufficiently different that I had to drop the signed-offs. Will re-add if the original authors are ok with that. This patch adds another mbind() flag to request "lazy migration". The flag, MPOL_MF_LAZY, modifies MPOL_MF_MOVE* such that the selected pages are marked PROT_NONE. The pages will be migrated in the fault path on "first touch", if the policy dictates at that time. "Lazy Migration" will allow testing of migrate-on-fault via mbind(). Also allows applications to specify that only subsequently touched pages be migrated to obey new policy, instead of all pages in range. This can be useful for multi-threaded applications working on a large shared data area that is initialized by an initial thread resulting in all pages on one [or a few, if overflowed] nodes. After PROT_NONE, the pages in regions assigned to the worker threads will be automatically migrated local to the threads on 1st touch. Signed-off-by: Mel Gorman <mgorman@suse.de> Reviewed-by: Rik van Riel <riel@redhat.com>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r--include/linux/mm.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index fa1615211159..471185e29bab 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1551,6 +1551,11 @@ static inline pgprot_t vm_get_page_prot(unsigned long vm_flags)
1551} 1551}
1552#endif 1552#endif
1553 1553
1554#ifdef CONFIG_ARCH_USES_NUMA_PROT_NONE
1555void change_prot_numa(struct vm_area_struct *vma,
1556 unsigned long start, unsigned long end);
1557#endif
1558
1554struct vm_area_struct *find_extend_vma(struct mm_struct *, unsigned long addr); 1559struct vm_area_struct *find_extend_vma(struct mm_struct *, unsigned long addr);
1555int remap_pfn_range(struct vm_area_struct *, unsigned long addr, 1560int remap_pfn_range(struct vm_area_struct *, unsigned long addr,
1556 unsigned long pfn, unsigned long size, pgprot_t); 1561 unsigned long pfn, unsigned long size, pgprot_t);