Skip to content

Commit 7b27a86

Browse files
committed
libnvdimm/e820: Retrieve and populate correct 'target_node' info
Use the new phys_to_target_node() and numa_map_to_online_node() helpers to retrieve the correct id for the 'numa_node' ("local" / online initiator node) and 'target_node' (offline target memory node) sysfs attributes. Below is an example from a 4 NUMA node system where all the memory on node2 is pmem / reserved. It should be noted that with the arrival of the ACPI HMAT table and EFI Specific Purpose Memory the kernel will start to see more platforms with reserved / performance differentiated memory in its own NUMA node. Hence all the stakeholders on the Cc for what is ostensibly a libnvdimm local patch. === Before === /* Notice no online memory on node2 at start */ # numactl --hardware available: 3 nodes (0-1,3) node 0 cpus: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 node 0 size: 3958 MB node 0 free: 3708 MB node 1 cpus: 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 node 1 size: 4027 MB node 1 free: 3871 MB node 3 cpus: node 3 size: 3994 MB node 3 free: 3971 MB node distances: node 0 1 3 0: 10 21 21 1: 21 10 21 3: 21 21 10 /* * Put the pmem namespace into devdax mode so it can be assigned to the * kmem driver */ # ndctl create-namespace -e namespace0.0 -m devdax -f { "dev":"namespace0.0", "mode":"devdax", "map":"dev", "size":"3.94 GiB (4.23 GB)", "uuid":"1650af9b-9ba3-4704-acd6-10178399d9a3", [..] } /* Online Persistent Memory as System RAM */ # daxctl reconfigure-device --mode=system-ram dax0.0 libdaxctl: memblock_in_dev: dax0.0: memory0: Unable to determine phys_index: Success libdaxctl: memblock_in_dev: dax0.0: memory0: Unable to determine phys_index: Success libdaxctl: memblock_in_dev: dax0.0: memory0: Unable to determine phys_index: Success libdaxctl: memblock_in_dev: dax0.0: memory0: Unable to determine phys_index: Success [ { "chardev":"dax0.0", "size":4225761280, "target_node":0, "mode":"system-ram" } ] reconfigured 1 device /* Note that the memory is onlined by default to the wrong node, node0 */ # numactl --hardware available: 3 nodes (0-1,3) node 0 cpus: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 node 0 size: 7926 MB node 0 free: 7655 MB node 1 cpus: 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 node 1 size: 4027 MB node 1 free: 3871 MB node 3 cpus: node 3 size: 3994 MB node 3 free: 3971 MB node distances: node 0 1 3 0: 10 21 21 1: 21 10 21 3: 21 21 10 === After === /* Notice that the "phys_index" error messages are gone */ # daxctl reconfigure-device --mode=system-ram dax0.0 [ { "chardev":"dax0.0", "size":4225761280, "target_node":2, "mode":"system-ram" } ] reconfigured 1 device /* Notice that node2 is now correctly populated */ # numactl --hardware available: 4 nodes (0-3) node 0 cpus: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 node 0 size: 3958 MB node 0 free: 3793 MB node 1 cpus: 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 node 1 size: 4027 MB node 1 free: 3851 MB node 2 cpus: node 2 size: 3968 MB node 2 free: 3968 MB node 3 cpus: node 3 size: 3994 MB node 3 free: 3908 MB node distances: node 0 1 2 3 0: 10 21 21 21 1: 21 10 21 21 2: 21 21 10 21 3: 21 21 21 10 Cc: Dave Hansen <[email protected]> Cc: Andy Lutomirski <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Andrew Morton <[email protected]> Cc: David Hildenbrand <[email protected]> Cc: Michal Hocko <[email protected]> Cc: Ira Weiny <[email protected]> Cc: Vishal Verma <[email protected]> Cc: Christoph Hellwig <[email protected]> Reviewed-by: Ingo Molnar <[email protected]> Signed-off-by: Dan Williams <[email protected]> Link: https://lore.kernel.org/r/158188327614.894464.13122730362187722603.stgit@dwillia2-desk3.amr.corp.intel.com
1 parent 5d30f92 commit 7b27a86

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

arch/x86/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1664,6 +1664,7 @@ config X86_PMEM_LEGACY
16641664
depends on PHYS_ADDR_T_64BIT
16651665
depends on BLK_DEV
16661666
select X86_PMEM_LEGACY_DEVICE
1667+
select NUMA_KEEP_MEMINFO if NUMA
16671668
select LIBNVDIMM
16681669
help
16691670
Treat memory marked using the non-standard e820 type of 12 as used

drivers/nvdimm/e820.c

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include <linux/memory_hotplug.h>
88
#include <linux/libnvdimm.h>
99
#include <linux/module.h>
10+
#include <linux/numa.h>
1011

1112
static int e820_pmem_remove(struct platform_device *pdev)
1213
{
@@ -16,27 +17,16 @@ static int e820_pmem_remove(struct platform_device *pdev)
1617
return 0;
1718
}
1819

19-
#ifdef CONFIG_MEMORY_HOTPLUG
20-
static int e820_range_to_nid(resource_size_t addr)
21-
{
22-
return memory_add_physaddr_to_nid(addr);
23-
}
24-
#else
25-
static int e820_range_to_nid(resource_size_t addr)
26-
{
27-
return NUMA_NO_NODE;
28-
}
29-
#endif
30-
3120
static int e820_register_one(struct resource *res, void *data)
3221
{
3322
struct nd_region_desc ndr_desc;
3423
struct nvdimm_bus *nvdimm_bus = data;
24+
int nid = phys_to_target_node(res->start);
3525

3626
memset(&ndr_desc, 0, sizeof(ndr_desc));
3727
ndr_desc.res = res;
38-
ndr_desc.numa_node = e820_range_to_nid(res->start);
39-
ndr_desc.target_node = ndr_desc.numa_node;
28+
ndr_desc.numa_node = numa_map_to_online_node(nid);
29+
ndr_desc.target_node = nid;
4030
set_bit(ND_REGION_PAGEMAP, &ndr_desc.flags);
4131
if (!nvdimm_pmem_region_create(nvdimm_bus, &ndr_desc))
4232
return -ENXIO;

0 commit comments

Comments
 (0)