linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [Part3 PATCH v2 0/4] Support hot-remove local pagetable pages.
@ 2013-06-13 13:03 Tang Chen
  2013-06-13 13:03 ` [Part3 PATCH v2 1/4] bootmem, mem-hotplug: Register local pagetable pages with LOCAL_NODE_DATA when freeing bootmem Tang Chen
                   ` (5 more replies)
  0 siblings, 6 replies; 18+ messages in thread
From: Tang Chen @ 2013-06-13 13:03 UTC (permalink / raw)
  To: tglx, mingo, hpa, akpm, tj, trenn, yinghai, jiang.liu, wency,
	laijs, isimatu.yasuaki, mgorman, minchan, mina86, gong.chen,
	vasilis.liaskovitis, lwoodman, riel, jweiner, prarit
  Cc: x86, linux-doc, linux-kernel, linux-mm

The following patch-set from Yinghai allocates pagetables to local nodes.
v1: https://lkml.org/lkml/2013/3/7/642
v2: https://lkml.org/lkml/2013/3/10/47
v3: https://lkml.org/lkml/2013/4/4/639
v4: https://lkml.org/lkml/2013/4/11/829

Since pagetable pages are used by the kernel, they cannot be offlined.
As a result, they cannot be hot-remove.

This patch fix this problem with the following solution:

     1.   Introduce a new bootmem type LOCAL_NODE_DATAL, and register local
          pagetable pages as LOCAL_NODE_DATAL by setting page->lru.next to
          LOCAL_NODE_DATAL, just like we register SECTION_INFO pages.

     2.   Skip LOCAL_NODE_DATAL pages in offline/online procedures. When the
          whole memory block they reside in is offlined, the kernel can
          still access the pagetables.
          (This changes the semantics of offline/online a little bit.)

     3.   Do not free LOCAL_NODE_DATAL pages to buddy system because they
          were skipped when in offline/online procedures. The memory block
          they reside in could have been offlined.

Anyway, this problem should be fixed. Any better idea is welcome.

Change log:
v1 -> v2:
        patch2: As suggested by Wu Jianguo, define a macro to check if a page
                cantains local node data.
        patch4: As suggested by Wu Jianguo, prevent freeing LOCAL_NODE_DATA
                pages in free_pagetable() instead of in put_page_bootmem().

Tang Chen (4):
  bootmem, mem-hotplug: Register local pagetable pages with
    LOCAL_NODE_DATA when freeing bootmem.
  mem-hotplug: Skip LOCAL_NODE_DATA pages in memory offline procedure.
  mem-hotplug: Skip LOCAL_NODE_DATA pages in memory online procedure.
  mem-hotplug: Do not free LOCAL_NODE_DATA pages to buddy system in
    hot-remove procedure.

 arch/x86/mm/init_64.c          |   10 +++++++-
 include/linux/memblock.h       |   22 +++++++++++++++++
 include/linux/memory_hotplug.h |   20 +++++++++++++--
 mm/memblock.c                  |   52 ++++++++++++++++++++++++++++++++++++++++
 mm/memory_hotplug.c            |   31 +++++++++++++++++++++++
 mm/page_alloc.c                |   15 ++++++++++-
 mm/page_isolation.c            |    5 ++++
 7 files changed, 149 insertions(+), 6 deletions(-)

--
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>

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-06-19 15:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-13 13:03 [Part3 PATCH v2 0/4] Support hot-remove local pagetable pages Tang Chen
2013-06-13 13:03 ` [Part3 PATCH v2 1/4] bootmem, mem-hotplug: Register local pagetable pages with LOCAL_NODE_DATA when freeing bootmem Tang Chen
2013-06-13 14:16   ` Michal Nazarewicz
2013-06-14  5:37     ` Tang Chen
2013-06-13 13:03 ` [Part3 PATCH v2 2/4] mem-hotplug: Skip LOCAL_NODE_DATA pages in memory offline procedure Tang Chen
2013-06-13 17:17   ` Dave Hansen
2013-06-14  5:45     ` Tang Chen
2013-06-13 13:03 ` [Part3 PATCH v2 3/4] mem-hotplug: Skip LOCAL_NODE_DATA pages in memory online procedure Tang Chen
2013-06-13 13:03 ` [Part3 PATCH v2 4/4] mem-hotplug: Do not free LOCAL_NODE_DATA pages to buddy system in hot-remove procedure Tang Chen
2013-06-17  1:58 ` [Part3 PATCH v2 0/4] Support hot-remove local pagetable pages Jianguo Wu
2013-06-17  2:07   ` Tang Chen
2013-06-18 17:05 ` Vasilis Liaskovitis
2013-06-18 23:59   ` Toshi Kani
2013-06-19  2:58     ` Yasuaki Ishimatsu
2013-06-19 15:32       ` Toshi Kani
2013-06-19  7:29   ` Tang Chen
2013-06-19 10:00     ` Vasilis Liaskovitis
2013-06-19 15:18     ` Toshi Kani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox