[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1526916033-4877-13-git-send-email-yehs2007@gmail.com>
Date: Mon, 21 May 2018 23:20:33 +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>,
Ingo Molnar <mingo@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>,
"x86@...nel.org" <x86@...nel.org>,
Philippe Ombredanne <pombredanne@...b.com>
Subject: [RFC PATCH v2 12/12] arch/x86/include/asm/page.h: 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: Thomas Gleixner <tglx@...utronix.de>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: "H. Peter Anvin" <hpa@...or.com>
Cc: Kate Stewart <kstewart@...uxfoundation.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: x86@...nel.org <x86@...nel.org>
Cc: Philippe Ombredanne <pombredanne@...b.com>
---
arch/x86/include/asm/page.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/page.h b/arch/x86/include/asm/page.h
index 7555b48..a47f42d 100644
--- a/arch/x86/include/asm/page.h
+++ b/arch/x86/include/asm/page.h
@@ -35,7 +35,8 @@ static inline void copy_user_page(void *to, void *from, unsigned long vaddr,
}
#define __alloc_zeroed_user_highpage(movableflags, vma, vaddr) \
- alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO | movableflags, vma, vaddr)
+ alloc_page_vma((movableflags ? GFP_HIGHUSER_MOVABLE : GFP_HIGHUSER) \
+ | __GFP_ZERO, vma, vaddr)
#define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
#ifndef __pa
--
1.8.3.1
Powered by blists - more mailing lists