linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Lai Jiangshan <laijs@cn.fujitsu.com>
To: Mel Gorman <mel@csn.ul.ie>
Cc: Chris Metcalf <cmetcalf@tilera.com>,
	--@kvack.org, Len Brown <lenb@kernel.org>--@kvack.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>--@kvack.org,
	Andi Kleen <andi@firstfloor.org>--@kvack.org,
	Julia Lawall <julia@diku.dk>--@kvack.org,
	David Howells <dhowells@redhat.com>--@kvack.org,
	Lai Jiangshan <laijs@cn.fujitsu.com>--@kvack.org,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>--@kvack.org,
	Kay Sievers <kay.sievers@vrfy.org>--@kvack.org,
	Ingo Molnar <mingo@elte.hu>--@kvack.org,
	Paul Gortmaker <paul.gortmaker@windriver.com>--@kvack.org,
	Daniel Kiper <dkiper@net-space.pl>--@kvack.org,
	Andrew Morton <akpm@linux-foundation.org>--@kvack.org,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>--@kvack.org,
	Michal Hocko <mhocko@suse.cz>--@kvack.org,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>--@kvack.org,
	Minchan Kim <minchan@kernel.org>--@kvack.org,
	Michal Nazarewicz <mina86@mina86.com>--@kvack.org,
	Marek Szyprowski <m.szyprowski@samsung.com>--@kvack.org,
	Rik van Riel <riel@redhat.com>--@kvack.org,
	Bjorn Helgaas <bhelgaas@google.com>--@kvack.org,
	Christoph Lameter <cl@linux.com>--@kvack.org,
	David Rientjes <rientjes@google.com>--@kvack.org,
	linux-kernel@vger.kernel.org--, linux-acpi@vger.kernel.org--,
	linux-mm@kvack.org
Subject: [RFC PATCH 0/3 V1] mm: add new migrate type and online_movable for hotplug
Date: Wed, 4 Jul 2012 15:26:15 +0800	[thread overview]
Message-ID: <1341386778-8002-1-git-send-email-laijs@cn.fujitsu.com> (raw)

The 1st patch fixes the allocation of CMA and prepares for movable-like types.

The 2nd patch add a new migrate type which stands for the movable types which
pages will not be changed to the other type.

I chose the name MIGRATE_HOTREMOVE from MIGRATE_HOTREMOVE
and MIGRATE_MOVABLE_STABLE, it just because the first usecase of this new type
is for hotremove.

The 3th path introduces online_movable. When a memoryblock is onlined
by "online_movable", the kernel will not have directly reference to the page
of the memoryblock, thus we can remove that memory any time when needed.

Different from ZONE_MOVABLE: it can be used for any given memroyblock.

Lai Jiangshan (3):
  use __rmqueue_smallest when borrow memory from MIGRATE_CMA
  add MIGRATE_HOTREMOVE type
  add online_movable

 arch/tile/mm/init.c            |    2 +-
 drivers/acpi/acpi_memhotplug.c |    3 +-
 drivers/base/memory.c          |   24 +++++++----
 include/linux/memory.h         |    1 +
 include/linux/memory_hotplug.h |    4 +-
 include/linux/mmzone.h         |   37 +++++++++++++++++
 include/linux/page-isolation.h |    2 +-
 mm/compaction.c                |    6 +-
 mm/memory-failure.c            |    8 +++-
 mm/memory_hotplug.c            |   36 +++++++++++++---
 mm/page_alloc.c                |   86 ++++++++++++++++-----------------------
 mm/vmstat.c                    |    3 +
 12 files changed, 136 insertions(+), 76 deletions(-)

-- 
1.7.4.4

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

             reply	other threads:[~2012-07-04  7:25 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-04  7:26 Lai Jiangshan [this message]
2012-07-04  7:26 ` [RFC PATCH 1/3 V1] mm, page_alloc: use __rmqueue_smallest when borrow memory from MIGRATE_CMA Lai Jiangshan
2012-07-04 10:17   ` Mel Gorman
2012-07-04 10:43     ` Lai Jiangshan
2012-07-04 11:19       ` Mel Gorman
2012-07-05  1:36         ` Lai Jiangshan
2012-07-05  8:38           ` Mel Gorman
2012-07-04  7:26 ` [RFC PATCH 2/3 V1] mm, page migrate: add MIGRATE_HOTREMOVE type Lai Jiangshan
2012-07-04 10:19   ` Mel Gorman
2012-07-04 10:50     ` Lai Jiangshan
2012-07-04  7:26 ` [RFC PATCH 3/3 V1] mm, memory-hotplug: add online_movable Lai Jiangshan
2012-07-04 14:58   ` Greg Kroah-Hartman
2012-07-04  7:35 ` [RFC PATCH 0/3 V1] mm: add new migrate type and online_movable for hotplug Minchan Kim
2012-07-04  8:23   ` Lai Jiangshan
2012-07-04  8:43     ` Lai Jiangshan
2012-07-05  9:05 ` Mel Gorman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1341386778-8002-1-git-send-email-laijs@cn.fujitsu.com \
    --to=laijs@cn.fujitsu.com \
    --cc=--@kvack.org \
    --cc=cmetcalf@tilera.com \
    --cc=lenb@kernel.org \
    --cc=mel@csn.ul.ie \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).