summaryrefslogtreecommitdiffstats
path: root/mm/Kconfig
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2015-08-09 15:29:06 -0400
committerDan Williams <dan.j.williams@intel.com>2015-08-27 19:40:58 -0400
commit033fbae988fcb67e5077203512181890848b8e90 (patch)
treed0b9e418ab4f1df15435c098edf5ad687b426b3f /mm/Kconfig
parent012dcef3f058385268630c0003e9b7f8dcafbeb4 (diff)
mm: ZONE_DEVICE for "device memory"
While pmem is usable as a block device or via DAX mappings to userspace there are several usage scenarios that can not target pmem due to its lack of struct page coverage. In preparation for "hot plugging" pmem into the vmemmap add ZONE_DEVICE as a new zone to tag these pages separately from the ones that are subject to standard page allocations. Importantly "device memory" can be removed at will by userspace unbinding the driver of the device. Having a separate zone prevents allocation and otherwise marks these pages that are distinct from typical uniform memory. Device memory has different lifetime and performance characteristics than RAM. However, since we have run out of ZONES_SHIFT bits this functionality currently depends on sacrificing ZONE_DMA. Cc: H. Peter Anvin <hpa@zytor.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: Rik van Riel <riel@redhat.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Jerome Glisse <j.glisse@gmail.com> [hch: various simplifications in the arch interface] Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'mm/Kconfig')
-rw-r--r--mm/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/mm/Kconfig b/mm/Kconfig
index e79de2bd12cd..a0cd086df16b 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -654,3 +654,20 @@ config DEFERRED_STRUCT_PAGE_INIT
654 when kswapd starts. This has a potential performance impact on 654 when kswapd starts. This has a potential performance impact on
655 processes running early in the lifetime of the systemm until kswapd 655 processes running early in the lifetime of the systemm until kswapd
656 finishes the initialisation. 656 finishes the initialisation.
657
658config ZONE_DEVICE
659 bool "Device memory (pmem, etc...) hotplug support" if EXPERT
660 default !ZONE_DMA
661 depends on !ZONE_DMA
662 depends on MEMORY_HOTPLUG
663 depends on MEMORY_HOTREMOVE
664 depends on X86_64 #arch_add_memory() comprehends device memory
665
666 help
667 Device memory hotplug support allows for establishing pmem,
668 or other device driver discovered memory regions, in the
669 memmap. This allows pfn_to_page() lookups of otherwise
670 "device-physical" addresses which is needed for using a DAX
671 mapping in an O_DIRECT operation, among other things.
672
673 If FS_DAX is enabled, then say Y.