[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1526916033-4877-12-git-send-email-yehs2007@gmail.com>
Date: Mon, 21 May 2018 23:20:32 +0800
From: Huaisheng Ye <yehs2007@...il.com>
To: akpm@...ux-foundation.org, linux-mm@...ck.org
Cc: mhocko@...e.com, willy@...radead.org, vbabka@...e.cz,
mgorman@...hsingularity.net, kstewart@...uxfoundation.org,
alexander.levin@...izon.com, gregkh@...uxfoundation.org,
colyli@...e.de, chengnt@...ovo.com, hehy1@...ovo.com,
linux-kernel@...r.kernel.org, iommu@...ts.linux-foundation.org,
xen-devel@...ts.xenproject.org, linux-btrfs@...r.kernel.org,
Huaisheng Ye <yehs1@...ovo.com>,
Thomas Gleixner <tglx@...utronix.de>,
Philippe Ombredanne <pombredanne@...b.com>
Subject: [RFC PATCH v2 11/12] include/linux/highmem: update usage of movableflags
From: Huaisheng Ye <yehs1@...ovo.com>
GFP_HIGHUSER_MOVABLE doesn't equal to GFP_HIGHUSER | __GFP_MOVABLE,
modify it to adapt patch of getting rid of GFP_ZONE_TABLE/BAD.
Signed-off-by: Huaisheng Ye <yehs1@...ovo.com>
Cc: Kate Stewart <kstewart@...uxfoundation.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Philippe Ombredanne <pombredanne@...b.com>
---
include/linux/highmem.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/highmem.h b/include/linux/highmem.h
index 776f90f..da34260 100644
--- a/include/linux/highmem.h
+++ b/include/linux/highmem.h
@@ -159,8 +159,8 @@ static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
struct vm_area_struct *vma,
unsigned long vaddr)
{
- struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
- vma, vaddr);
+ struct page *page = alloc_page_vma(movableflags ?
+ GFP_HIGHUSER_MOVABLE : GFP_HIGHUSER, vma, vaddr);
if (page)
clear_user_highpage(page, vaddr);
--
1.8.3.1
Powered by blists - more mailing lists