summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorVandana Salve <vsalve@nvidia.com>2014-06-10 15:06:34 +0530
committerRiham Haidar <rhaidar@nvidia.com>2014-06-11 17:09:54 -0700
commit0e7370ef6597150986099c837b26ccb526f1ac4a (patch)
tree606e79ccf2b8972793a9d895d36e3cb0bdb70e3e /include/linux
parentde6afd3c6591b73bc81d8ebd77edc74e884c22d0 (diff)
mm: get_user_pages: use NON-MOVABLE pages when FOLL_DURABLE flag is set
Ensure that newly allocated pages, which are faulted in in FOLL_DURABLE mode comes from non-movalbe pageblocks, to workaround migration failures with CMA Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> bug 1517584 Change-Id: I76d2185cc7e77992db585a71efaa06a5c0105a76 Signed-off-by: Vandana Salve <vsalve@nvidia.com> Reviewed-on: http://git-master/r/421677 Reviewed-by: Riham Haidar <rhaidar@nvidia.com> Tested-by: Riham Haidar <rhaidar@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/highmem.h12
-rw-r--r--include/linux/mm.h2
2 files changed, 12 insertions, 2 deletions
diff --git a/include/linux/highmem.h b/include/linux/highmem.h
index 7fb31da45d03..cf0b9d8f3de9 100644
--- a/include/linux/highmem.h
+++ b/include/linux/highmem.h
@@ -168,7 +168,8 @@ __alloc_zeroed_user_highpage(gfp_t movableflags,
#endif
/**
- * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
+ * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for
+ * a VMA that the caller knows can move
* @vma: The VMA the page is to be allocated for
* @vaddr: The virtual address the page will be inserted into
*
@@ -177,11 +178,18 @@ __alloc_zeroed_user_highpage(gfp_t movableflags,
*/
static inline struct page *
alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
- unsigned long vaddr)
+ unsigned long vaddr)
{
return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
}
+static inline struct page *
+alloc_zeroed_user_highpage(gfp_t gfp, struct vm_area_struct *vma,
+ unsigned long vaddr)
+{
+ return __alloc_zeroed_user_highpage(gfp, vma, vaddr);
+}
+
static inline void clear_highpage(struct page *page)
{
void *kaddr = kmap_atomic(page);
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 58872b931c89..a23bb6b1f449 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -168,6 +168,7 @@ extern pgprot_t protection_map[16];
#define FAULT_FLAG_KILLABLE 0x20 /* The fault task is in SIGKILL killable region */
#define FAULT_FLAG_TRIED 0x40 /* second try */
#define FAULT_FLAG_USER 0x80 /* The fault originated in userspace */
+#define FAULT_FLAG_NO_CMA 0x100 /* don't use CMA pages */
/*
* vm_fault is filled by the the pagefault handler and passed to the vma's
@@ -1712,6 +1713,7 @@ static inline struct page *follow_page(struct vm_area_struct *vma,
#define FOLL_HWPOISON 0x100 /* check page is hwpoisoned */
#define FOLL_NUMA 0x200 /* force NUMA hinting page fault */
#define FOLL_MIGRATION 0x400 /* wait for page to replace migration entry */
+#define FOLL_DURABLE 0x800 /* get the page reference for a long time */
typedef int (*pte_fn_t)(pte_t *pte, pgtable_t token, unsigned long addr,
void *data);