All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] arm64/mm: Enable memory hot remove and ZONE_DEVICE
@ 2019-04-03  4:30 ` Anshuman Khandual
  0 siblings, 0 replies; 87+ messages in thread
From: Anshuman Khandual @ 2019-04-03  4:30 UTC (permalink / raw)
  To: linux-kernel, linux-arm-kernel, linux-mm, akpm, will.deacon,
	catalin.marinas
  Cc: mhocko, mgorman, james.morse, mark.rutland, robin.murphy,
	cpandya, arunks, dan.j.williams, osalvador, logang,
	pasha.tatashin, david, cai

This series enables memory hot remove on arm64, fixes a memblock removal
ordering problem in generic __remove_memory(), enables sysfs memory probe
interface on arm64. It also enables ZONE_DEVICE with struct vmem_altmap
support.

Testing:

Tested hot remove on arm64 for all 4K, 16K, 64K page config options with
all possible VA_BITS and PGTABLE_LEVELS combinations. Tested ZONE_DEVICE
with ARM64_4K_PAGES through a dummy driver.

Build tested on non arm64 platforms. I will appreciate if folks can test
arch_remove_memory() re-ordering in __remove_memory() on other platforms.

Dependency:

V5 series in the thread (https://lkml.org/lkml/2019/2/14/1096) will make
kernel linear mapping loose pgtable_page_ctor() init. When this happens
the proposed functions free_pte|pmd|pud_table() in [PATCH 2/6] will have
to stop calling pgtable_page_dtor().

Anshuman Khandual (5):
  arm64/mm: Enable sysfs based memory hot add interface
  arm64/mm: Enable memory hot remove
  arm64/mm: Enable struct page allocation from device memory
  mm/hotplug: Reorder arch_remove_memory() call in __remove_memory()
  arm64/mm: Enable ZONE_DEVICE

Robin Murphy (1):
  mm/memremap: Rename and consolidate SECTION_SIZE

 arch/arm64/Kconfig               |  13 +++
 arch/arm64/include/asm/pgtable.h |  14 +++
 arch/arm64/mm/mmu.c              | 242 ++++++++++++++++++++++++++++++++++++++-
 include/linux/mmzone.h           |   1 +
 kernel/memremap.c                |  10 +-
 mm/hmm.c                         |   2 -
 mm/memory_hotplug.c              |   3 +-
 7 files changed, 271 insertions(+), 14 deletions(-)

-- 
2.7.4


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

end of thread, other threads:[~2019-04-08  6:03 UTC | newest]

Thread overview: 87+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-03  4:30 [PATCH 0/6] arm64/mm: Enable memory hot remove and ZONE_DEVICE Anshuman Khandual
2019-04-03  4:30 ` Anshuman Khandual
2019-04-03  4:30 ` [PATCH 1/6] arm64/mm: Enable sysfs based memory hot add interface Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03  8:20   ` David Hildenbrand
2019-04-03  8:20     ` David Hildenbrand
2019-04-03 13:12     ` Robin Murphy
2019-04-03 13:12       ` Robin Murphy
2019-04-04  5:21       ` Anshuman Khandual
2019-04-04  5:21         ` Anshuman Khandual
2019-04-04  5:25     ` Anshuman Khandual
2019-04-04  5:25       ` Anshuman Khandual
2019-04-04  8:49       ` David Hildenbrand
2019-04-04  8:49         ` David Hildenbrand
2019-04-03  4:30 ` [PATCH 2/6] arm64/mm: Enable memory hot remove Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03 12:37   ` Robin Murphy
2019-04-03 12:37     ` Robin Murphy
2019-04-03 13:15     ` Steven Price
2019-04-03 13:15       ` Steven Price
2019-04-04  6:51       ` Anshuman Khandual
2019-04-04  6:51         ` Anshuman Khandual
2019-04-04  5:39     ` Anshuman Khandual
2019-04-04  5:39       ` Anshuman Khandual
2019-04-04 11:58       ` Oscar Salvador
2019-04-04 11:58         ` Oscar Salvador
2019-04-04 13:03         ` Anshuman Khandual
2019-04-04 13:03           ` Anshuman Khandual
2019-04-04 15:19           ` Oscar Salvador
2019-04-04 15:19             ` Oscar Salvador
2019-04-03 17:32   ` Logan Gunthorpe
2019-04-03 17:32     ` Logan Gunthorpe
2019-04-03 17:57     ` Robin Murphy
2019-04-03 17:57       ` Robin Murphy
2019-04-04  8:23       ` Anshuman Khandual
2019-04-04  8:23         ` Anshuman Khandual
2019-04-04  7:07     ` Anshuman Khandual
2019-04-04  7:07       ` Anshuman Khandual
2019-04-04  9:16       ` Steven Price
2019-04-04  9:16         ` Steven Price
2019-04-03  4:30 ` [PATCH 3/6] arm64/mm: Enable struct page allocation from device memory Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03  4:30 ` [PATCH 4/6] mm/hotplug: Reorder arch_remove_memory() call in __remove_memory() Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03  8:45   ` Oscar Salvador
2019-04-03  8:45     ` Oscar Salvador
2019-04-03  9:17   ` Michal Hocko
2019-04-03  9:17     ` Michal Hocko
2019-04-04  8:32     ` Anshuman Khandual
2019-04-04  8:32       ` Anshuman Khandual
2019-04-03  9:30   ` David Hildenbrand
2019-04-03  9:30     ` David Hildenbrand
2019-04-03  4:30 ` [PATCH 5/6] mm/memremap: Rename and consolidate SECTION_SIZE Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03  9:26   ` Michal Hocko
2019-04-03  9:26     ` Michal Hocko
2019-04-03  9:30   ` David Hildenbrand
2019-04-03  9:30     ` David Hildenbrand
2019-04-03  4:30 ` [PATCH 6/6] arm64/mm: Enable ZONE_DEVICE Anshuman Khandual
2019-04-03  4:30   ` Anshuman Khandual
2019-04-03 13:58   ` Robin Murphy
2019-04-03 13:58     ` Robin Murphy
2019-04-03 16:07     ` Jerome Glisse
2019-04-03 16:07       ` Jerome Glisse
2019-04-04  5:03       ` Anshuman Khandual
2019-04-04  5:03         ` Anshuman Khandual
2019-04-04  4:42     ` Anshuman Khandual
2019-04-04  4:42       ` Anshuman Khandual
2019-04-04  5:04       ` Dan Williams
2019-04-04  5:04         ` Dan Williams
2019-04-04  9:46         ` Robin Murphy
2019-04-04  9:46           ` Robin Murphy
2019-04-07 22:11           ` Dan Williams
2019-04-07 22:11             ` Dan Williams
2019-04-08  4:03             ` Ira Weiny
2019-04-08  4:03               ` Ira Weiny
2019-04-08  6:03               ` Anshuman Khandual
2019-04-08  6:03                 ` Anshuman Khandual
2019-04-03 18:08 ` [PATCH 0/6] arm64/mm: Enable memory hot remove and ZONE_DEVICE Dan Williams
2019-04-03 18:08   ` Dan Williams
2019-04-03 18:08   ` Dan Williams
2019-04-04 13:11   ` Anshuman Khandual
2019-04-04 13:11     ` Anshuman Khandual
2019-04-04  9:46 ` [RFC 1/2] mm/vmemmap: Enable vmem_altmap based base page mapping for vmemmap Anshuman Khandual
2019-04-04  9:46   ` Anshuman Khandual
2019-04-04  9:46   ` [RFC 2/2] arm64/mm: Enable ZONE_DEVICE for all page configs Anshuman Khandual
2019-04-04  9:46     ` Anshuman Khandual

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.