All of lore.kernel.org
 help / color / mirror / Atom feed
* + mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target.patch added to -mm tree
@ 2016-07-15 23:05 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2016-07-15 23:05 UTC (permalink / raw)
  To: qiuxishi, iamjoonsoo.kim, n-horiguchi, rientjes, vbabka, mm-commits


The patch titled
     Subject: mem-hotplug: use GFP_HIGHUSER_MOVABLE in, alloc_migrate_target()
has been added to the -mm tree.  Its filename is
     mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Xishi Qiu <qiuxishi@huawei.com>
Subject: mem-hotplug: use GFP_HIGHUSER_MOVABLE in, alloc_migrate_target()

alloc_migrate_target() is called from migrate_pages(), and the page is
always from user space, so we can add __GFP_HIGHMEM directly.

Link: http://lkml.kernel.org/r/57884EAA.9030603@huawei.com
Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/page_isolation.c |    9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff -puN mm/page_isolation.c~mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target mm/page_isolation.c
--- a/mm/page_isolation.c~mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target
+++ a/mm/page_isolation.c
@@ -283,8 +283,6 @@ int test_pages_isolated(unsigned long st
 struct page *alloc_migrate_target(struct page *page, unsigned long private,
 				  int **resultp)
 {
-	gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
-
 	/*
 	 * TODO: allocate a destination hugepage from a nearest neighbor node,
 	 * accordance with memory policy of the user process if possible. For
@@ -294,9 +292,6 @@ struct page *alloc_migrate_target(struct
 		return alloc_huge_page_node(page_hstate(compound_head(page)),
 					    next_node_in(page_to_nid(page),
 							 node_online_map));
-
-	if (PageHighMem(page))
-		gfp_mask |= __GFP_HIGHMEM;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-07-15 23:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-15 23:05 + mem-hotplug-use-gfp_highuser_movable-in-alloc_migrate_target.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.