2019-11-02 12:03:39

by David Hildenbrand

[permalink] [raw]
Subject: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

try_offline_node() is pretty much broken right now:
- The node span is updated when onlining memory, not when adding it. We
ignore memory that was mever onlined. Bad.
- We touch possible garbage memmaps. The pfn_to_nid(pfn) can easily
trigger a kernel panic. Bad for memory that is offline but also bad
for subsection hotadd with ZONE_DEVICE, whereby the memmap of the first
PFN of a section might contain garbage.
- Sections belonging to mixed nodes are not properly considered.

As memory blocks might belong to multiple nodes, we would have to walk all
pageblocks (or at least subsections) within present sections. However,
we don't have a way to identify whether a memmap that is not online was
initialized (relevant for ZONE_DEVICE). This makes things more complicated.

Luckily, we can piggy pack on the node span and the nid stored in
memory blocks. Currently, the node span is grown when calling
move_pfn_range_to_zone() - e.g., when onlining memory, and shrunk when
removing memory, before calling try_offline_node(). Sysfs links are
created via link_mem_sections(), e.g., during boot or when adding memory.

If the node still spans memory or if any memory block belongs to the
nid, we don't set the node offline. As memory blocks that span multiple
nodes cannot get offlined, the nid stored in memory blocks is reliable
enough (for such online memory blocks, the node still spans the memory).

Introduce for_each_memory_block() to efficiently walk all memory blocks.

Note: We will soon stop shrinking the ZONE_DEVICE zone and the node span
when removing ZONE_DEVICE memory to fix similar issues (access of garbage
memmaps) - until we have a reliable way to identify whether these memmaps
were properly initialized. This implies later, that once a node had
ZONE_DEVICE memory, we won't be able to set a node offline -
which should be acceptable.

Since commit f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded
memory to zones until online") memory that is added is not assoziated
with a zone/node (memmap not initialized). The introducing
commit 60a5a19e7419 ("memory-hotplug: remove sysfs file of node") already
missed that we could have multiple nodes for a section and that the
zone/node span is updated when onlining pages, not when adding them.

I tested this by hotplugging two DIMMs to a memory-less and cpu-less NUMA
node. The node is properly onlined when adding the DIMMs. When removing
the DIMMs, the node is properly offlined.

Fixes: 60a5a19e7419 ("memory-hotplug: remove sysfs file of node")
Fixes: f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded memory to zones until online") # visiable after d0dc12e86b319
Cc: Tang Chen <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: "Rafael J. Wysocki" <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Keith Busch <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: "Peter Zijlstra (Intel)" <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: Nayna Jain <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: Oscar Salvador <[email protected]>
Cc: Stephen Rothwell <[email protected]>
Cc: Dan Williams <[email protected]>
Cc: Pavel Tatashin <[email protected]>
Signed-off-by: David Hildenbrand <[email protected]>
---

v2 -> v3:
- Introduce and use for_each_memory_block(), which will run significantly
faster than walk_memory_blocks()

v1 -> v2:
- Drop sysfs handling, simplify, and add a comment
- Make sure to include last section fully

We stop shrinking the ZONE_DEVICE zone after the following patch:
[PATCH v6 04/10] mm/memory_hotplug: Don't access uninitialized memmaps
in shrink_zone_span()
This implies, the above note regarding ZONE_DEVICE on a node blocking a
node from getting offlined until we sorted out how to properly shrink
the ZONE_DEVICE zone.

This patch is especially important for:
[PATCH v6 05/10] mm/memory_hotplug: Shrink zones when offlining
memory
As the BUG fixed with this patch becomes now easier to observe when memory
is offlined (in contrast to when memory would never have been onlined
before).

As both patches are stable fixes and in next/master for a long time, we
should probably pull this patch in front of both and also backport this
patch at least to
Cc: [email protected] # v4.13+
I have not checked yet if there are real blockers to do that. I guess not.

---
drivers/base/memory.c | 36 +++++++++++++++++++++++++++++++++++
include/linux/memory.h | 1 +
mm/memory_hotplug.c | 43 ++++++++++++++++++++++++++----------------
3 files changed, 64 insertions(+), 16 deletions(-)

diff --git a/drivers/base/memory.c b/drivers/base/memory.c
index a757d9ed88a7..d65ecdeb83e8 100644
--- a/drivers/base/memory.c
+++ b/drivers/base/memory.c
@@ -867,3 +867,39 @@ int walk_memory_blocks(unsigned long start, unsigned long size,
}
return ret;
}
+
+struct for_each_memory_block_cb_data {
+ walk_memory_blocks_func_t func;
+ void *arg;
+};
+
+static int for_each_memory_block_cb(struct device *dev, void *data)
+{
+ struct memory_block *mem = to_memory_block(dev);
+ struct for_each_memory_block_cb_data *cb_data = data;
+
+ return cb_data->func(mem, cb_data->arg);
+}
+
+/**
+ * for_each_memory_block - walk through all present memory blocks
+ *
+ * @arg: argument passed to func
+ * @func: callback for each memory block walked
+ *
+ * This function walks through all present memory blocks, calling func on
+ * each memory block.
+ *
+ * In case func() returns an error, walking is aborted and the error is
+ * returned.
+ */
+int for_each_memory_block(void *arg, walk_memory_blocks_func_t func)
+{
+ struct for_each_memory_block_cb_data cb_data = {
+ .func = func,
+ .arg = arg,
+ };
+
+ return bus_for_each_dev(&memory_subsys, NULL, &cb_data,
+ for_each_memory_block_cb);
+}
diff --git a/include/linux/memory.h b/include/linux/memory.h
index 0ebb105eb261..4c75dae8dd29 100644
--- a/include/linux/memory.h
+++ b/include/linux/memory.h
@@ -119,6 +119,7 @@ extern struct memory_block *find_memory_block(struct mem_section *);
typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *);
extern int walk_memory_blocks(unsigned long start, unsigned long size,
void *arg, walk_memory_blocks_func_t func);
+extern int for_each_memory_block(void *arg, walk_memory_blocks_func_t func);
#define CONFIG_MEM_BLOCK_SIZE (PAGES_PER_SECTION<<PAGE_SHIFT)
#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */

diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index 0140c20837b6..46b2e056a43f 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -1634,6 +1634,18 @@ static int check_cpu_on_node(pg_data_t *pgdat)
return 0;
}

+static int check_no_memblock_for_node_cb(struct memory_block *mem, void *arg)
+{
+ int nid = *(int *)arg;
+
+ /*
+ * If a memory block belongs to multiple nodes, the stored nid is not
+ * reliable. However, such blocks are always online (e.g., cannot get
+ * offlined) and, therefore, are still spanned by the node.
+ */
+ return mem->nid == nid ? -EEXIST : 0;
+}
+
/**
* try_offline_node
* @nid: the node ID
@@ -1646,25 +1658,24 @@ static int check_cpu_on_node(pg_data_t *pgdat)
void try_offline_node(int nid)
{
pg_data_t *pgdat = NODE_DATA(nid);
- unsigned long start_pfn = pgdat->node_start_pfn;
- unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
- unsigned long pfn;
-
- for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
- unsigned long section_nr = pfn_to_section_nr(pfn);
-
- if (!present_section_nr(section_nr))
- continue;
+ int rc;

- if (pfn_to_nid(pfn) != nid)
- continue;
+ /*
+ * If the node still spans pages (especially ZONE_DEVICE), don't
+ * offline it. A node spans memory after move_pfn_range_to_zone(),
+ * e.g., after the memory block was onlined.
+ */
+ if (pgdat->node_spanned_pages)
+ return;

- /*
- * some memory sections of this node are not removed, and we
- * can't offline node now.
- */
+ /*
+ * Especially offline memory blocks might not be spanned by the
+ * node. They will get spanned by the node once they get onlined.
+ * However, they link to the node in sysfs and can get onlined later.
+ */
+ rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
+ if (rc)
return;
- }

if (check_cpu_on_node(pgdat))
return;
--
2.21.0


2019-11-05 01:22:54

by Masayoshi Mizuma

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

5.4-rc5 with this patch works for memory-hotadd and remove, thanks!
Please feel free to add:

Tested-by: Masayoshi Mizuma <[email protected]>

Without this patch, memory hotplug fails as panic:

BUG: kernel NULL pointer dereference, address: 0000000000000000
...
Call Trace:
remove_memory_block_devices+0x81/0xc0
try_remove_memory+0xb4/0x130
? walk_memory_blocks+0x75/0xa0
__remove_memory+0xa/0x20
acpi_memory_device_remove+0x84/0x100
acpi_bus_trim+0x57/0x90
acpi_bus_trim+0x2e/0x90
acpi_device_hotplug+0x2b2/0x4d0
acpi_hotplug_work_fn+0x1a/0x30
process_one_work+0x171/0x380
worker_thread+0x49/0x3f0
kthread+0xf8/0x130
? max_active_store+0x80/0x80
? kthread_bind+0x10/0x10
ret_from_fork+0x35/0x40

- Masa

On Sat, Nov 02, 2019 at 01:02:21PM +0100, David Hildenbrand wrote:
> try_offline_node() is pretty much broken right now:
> - The node span is updated when onlining memory, not when adding it. We
> ignore memory that was mever onlined. Bad.
> - We touch possible garbage memmaps. The pfn_to_nid(pfn) can easily
> trigger a kernel panic. Bad for memory that is offline but also bad
> for subsection hotadd with ZONE_DEVICE, whereby the memmap of the first
> PFN of a section might contain garbage.
> - Sections belonging to mixed nodes are not properly considered.
>
> As memory blocks might belong to multiple nodes, we would have to walk all
> pageblocks (or at least subsections) within present sections. However,
> we don't have a way to identify whether a memmap that is not online was
> initialized (relevant for ZONE_DEVICE). This makes things more complicated.
>
> Luckily, we can piggy pack on the node span and the nid stored in
> memory blocks. Currently, the node span is grown when calling
> move_pfn_range_to_zone() - e.g., when onlining memory, and shrunk when
> removing memory, before calling try_offline_node(). Sysfs links are
> created via link_mem_sections(), e.g., during boot or when adding memory.
>
> If the node still spans memory or if any memory block belongs to the
> nid, we don't set the node offline. As memory blocks that span multiple
> nodes cannot get offlined, the nid stored in memory blocks is reliable
> enough (for such online memory blocks, the node still spans the memory).
>
> Introduce for_each_memory_block() to efficiently walk all memory blocks.
>
> Note: We will soon stop shrinking the ZONE_DEVICE zone and the node span
> when removing ZONE_DEVICE memory to fix similar issues (access of garbage
> memmaps) - until we have a reliable way to identify whether these memmaps
> were properly initialized. This implies later, that once a node had
> ZONE_DEVICE memory, we won't be able to set a node offline -
> which should be acceptable.
>
> Since commit f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded
> memory to zones until online") memory that is added is not assoziated
> with a zone/node (memmap not initialized). The introducing
> commit 60a5a19e7419 ("memory-hotplug: remove sysfs file of node") already
> missed that we could have multiple nodes for a section and that the
> zone/node span is updated when onlining pages, not when adding them.
>
> I tested this by hotplugging two DIMMs to a memory-less and cpu-less NUMA
> node. The node is properly onlined when adding the DIMMs. When removing
> the DIMMs, the node is properly offlined.
>
> Fixes: 60a5a19e7419 ("memory-hotplug: remove sysfs file of node")
> Fixes: f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded memory to zones until online") # visiable after d0dc12e86b319
> Cc: Tang Chen <[email protected]>
> Cc: Greg Kroah-Hartman <[email protected]>
> Cc: "Rafael J. Wysocki" <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Keith Busch <[email protected]>
> Cc: Jiri Olsa <[email protected]>
> Cc: "Peter Zijlstra (Intel)" <[email protected]>
> Cc: Jani Nikula <[email protected]>
> Cc: Nayna Jain <[email protected]>
> Cc: Michal Hocko <[email protected]>
> Cc: Oscar Salvador <[email protected]>
> Cc: Stephen Rothwell <[email protected]>
> Cc: Dan Williams <[email protected]>
> Cc: Pavel Tatashin <[email protected]>
> Signed-off-by: David Hildenbrand <[email protected]>
> ---
>
> v2 -> v3:
> - Introduce and use for_each_memory_block(), which will run significantly
> faster than walk_memory_blocks()
>
> v1 -> v2:
> - Drop sysfs handling, simplify, and add a comment
> - Make sure to include last section fully
>
> We stop shrinking the ZONE_DEVICE zone after the following patch:
> [PATCH v6 04/10] mm/memory_hotplug: Don't access uninitialized memmaps
> in shrink_zone_span()
> This implies, the above note regarding ZONE_DEVICE on a node blocking a
> node from getting offlined until we sorted out how to properly shrink
> the ZONE_DEVICE zone.
>
> This patch is especially important for:
> [PATCH v6 05/10] mm/memory_hotplug: Shrink zones when offlining
> memory
> As the BUG fixed with this patch becomes now easier to observe when memory
> is offlined (in contrast to when memory would never have been onlined
> before).
>
> As both patches are stable fixes and in next/master for a long time, we
> should probably pull this patch in front of both and also backport this
> patch at least to
> Cc: [email protected] # v4.13+
> I have not checked yet if there are real blockers to do that. I guess not.
>
> ---
> drivers/base/memory.c | 36 +++++++++++++++++++++++++++++++++++
> include/linux/memory.h | 1 +
> mm/memory_hotplug.c | 43 ++++++++++++++++++++++++++----------------
> 3 files changed, 64 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/base/memory.c b/drivers/base/memory.c
> index a757d9ed88a7..d65ecdeb83e8 100644
> --- a/drivers/base/memory.c
> +++ b/drivers/base/memory.c
> @@ -867,3 +867,39 @@ int walk_memory_blocks(unsigned long start, unsigned long size,
> }
> return ret;
> }
> +
> +struct for_each_memory_block_cb_data {
> + walk_memory_blocks_func_t func;
> + void *arg;
> +};
> +
> +static int for_each_memory_block_cb(struct device *dev, void *data)
> +{
> + struct memory_block *mem = to_memory_block(dev);
> + struct for_each_memory_block_cb_data *cb_data = data;
> +
> + return cb_data->func(mem, cb_data->arg);
> +}
> +
> +/**
> + * for_each_memory_block - walk through all present memory blocks
> + *
> + * @arg: argument passed to func
> + * @func: callback for each memory block walked
> + *
> + * This function walks through all present memory blocks, calling func on
> + * each memory block.
> + *
> + * In case func() returns an error, walking is aborted and the error is
> + * returned.
> + */
> +int for_each_memory_block(void *arg, walk_memory_blocks_func_t func)
> +{
> + struct for_each_memory_block_cb_data cb_data = {
> + .func = func,
> + .arg = arg,
> + };
> +
> + return bus_for_each_dev(&memory_subsys, NULL, &cb_data,
> + for_each_memory_block_cb);
> +}
> diff --git a/include/linux/memory.h b/include/linux/memory.h
> index 0ebb105eb261..4c75dae8dd29 100644
> --- a/include/linux/memory.h
> +++ b/include/linux/memory.h
> @@ -119,6 +119,7 @@ extern struct memory_block *find_memory_block(struct mem_section *);
> typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *);
> extern int walk_memory_blocks(unsigned long start, unsigned long size,
> void *arg, walk_memory_blocks_func_t func);
> +extern int for_each_memory_block(void *arg, walk_memory_blocks_func_t func);
> #define CONFIG_MEM_BLOCK_SIZE (PAGES_PER_SECTION<<PAGE_SHIFT)
> #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
>
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 0140c20837b6..46b2e056a43f 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1634,6 +1634,18 @@ static int check_cpu_on_node(pg_data_t *pgdat)
> return 0;
> }
>
> +static int check_no_memblock_for_node_cb(struct memory_block *mem, void *arg)
> +{
> + int nid = *(int *)arg;
> +
> + /*
> + * If a memory block belongs to multiple nodes, the stored nid is not
> + * reliable. However, such blocks are always online (e.g., cannot get
> + * offlined) and, therefore, are still spanned by the node.
> + */
> + return mem->nid == nid ? -EEXIST : 0;
> +}
> +
> /**
> * try_offline_node
> * @nid: the node ID
> @@ -1646,25 +1658,24 @@ static int check_cpu_on_node(pg_data_t *pgdat)
> void try_offline_node(int nid)
> {
> pg_data_t *pgdat = NODE_DATA(nid);
> - unsigned long start_pfn = pgdat->node_start_pfn;
> - unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
> - unsigned long pfn;
> -
> - for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
> - unsigned long section_nr = pfn_to_section_nr(pfn);
> -
> - if (!present_section_nr(section_nr))
> - continue;
> + int rc;
>
> - if (pfn_to_nid(pfn) != nid)
> - continue;
> + /*
> + * If the node still spans pages (especially ZONE_DEVICE), don't
> + * offline it. A node spans memory after move_pfn_range_to_zone(),
> + * e.g., after the memory block was onlined.
> + */
> + if (pgdat->node_spanned_pages)
> + return;
>
> - /*
> - * some memory sections of this node are not removed, and we
> - * can't offline node now.
> - */
> + /*
> + * Especially offline memory blocks might not be spanned by the
> + * node. They will get spanned by the node once they get onlined.
> + * However, they link to the node in sysfs and can get onlined later.
> + */
> + rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
> + if (rc)
> return;
> - }
>
> if (check_cpu_on_node(pgdat))
> return;
> --
> 2.21.0
>
>

2019-11-05 10:09:01

by David Hildenbrand

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

On 05.11.19 02:20, Masayoshi Mizuma wrote:
> 5.4-rc5 with this patch works for memory-hotadd and remove, thanks!
> Please feel free to add:
>
> Tested-by: Masayoshi Mizuma <[email protected]>
>
> Without this patch, memory hotplug fails as panic:
>
> BUG: kernel NULL pointer dereference, address: 0000000000000000
> ...
> Call Trace:
> remove_memory_block_devices+0x81/0xc0
> try_remove_memory+0xb4/0x130
> ? walk_memory_blocks+0x75/0xa0
> __remove_memory+0xa/0x20
> acpi_memory_device_remove+0x84/0x100
> acpi_bus_trim+0x57/0x90
> acpi_bus_trim+0x2e/0x90
> acpi_device_hotplug+0x2b2/0x4d0
> acpi_hotplug_work_fn+0x1a/0x30
> process_one_work+0x171/0x380
> worker_thread+0x49/0x3f0
> kthread+0xf8/0x130
> ? max_active_store+0x80/0x80
> ? kthread_bind+0x10/0x10
> ret_from_fork+0x35/0x40
>
> - Masa

Thanks a lot for testing!

--

Thanks,

David / dhildenb

2019-11-06 23:15:27

by David Hildenbrand

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

On 02.11.19 13:02, David Hildenbrand wrote:
> try_offline_node() is pretty much broken right now:
> - The node span is updated when onlining memory, not when adding it. We
> ignore memory that was mever onlined. Bad.
> - We touch possible garbage memmaps. The pfn_to_nid(pfn) can easily
> trigger a kernel panic. Bad for memory that is offline but also bad
> for subsection hotadd with ZONE_DEVICE, whereby the memmap of the first
> PFN of a section might contain garbage.
> - Sections belonging to mixed nodes are not properly considered.
>
> As memory blocks might belong to multiple nodes, we would have to walk all
> pageblocks (or at least subsections) within present sections. However,
> we don't have a way to identify whether a memmap that is not online was
> initialized (relevant for ZONE_DEVICE). This makes things more complicated.
>
> Luckily, we can piggy pack on the node span and the nid stored in
> memory blocks. Currently, the node span is grown when calling
> move_pfn_range_to_zone() - e.g., when onlining memory, and shrunk when
> removing memory, before calling try_offline_node(). Sysfs links are
> created via link_mem_sections(), e.g., during boot or when adding memory.
>
> If the node still spans memory or if any memory block belongs to the
> nid, we don't set the node offline. As memory blocks that span multiple
> nodes cannot get offlined, the nid stored in memory blocks is reliable
> enough (for such online memory blocks, the node still spans the memory).
>
> Introduce for_each_memory_block() to efficiently walk all memory blocks.
>
> Note: We will soon stop shrinking the ZONE_DEVICE zone and the node span
> when removing ZONE_DEVICE memory to fix similar issues (access of garbage
> memmaps) - until we have a reliable way to identify whether these memmaps
> were properly initialized. This implies later, that once a node had
> ZONE_DEVICE memory, we won't be able to set a node offline -
> which should be acceptable.
>
> Since commit f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded
> memory to zones until online") memory that is added is not assoziated
> with a zone/node (memmap not initialized). The introducing
> commit 60a5a19e7419 ("memory-hotplug: remove sysfs file of node") already
> missed that we could have multiple nodes for a section and that the
> zone/node span is updated when onlining pages, not when adding them.
>
> I tested this by hotplugging two DIMMs to a memory-less and cpu-less NUMA
> node. The node is properly onlined when adding the DIMMs. When removing
> the DIMMs, the node is properly offlined.
>
> Fixes: 60a5a19e7419 ("memory-hotplug: remove sysfs file of node")
> Fixes: f1dd2cd13c4b ("mm, memory_hotplug: do not associate hotadded memory to zones until online") # visiable after d0dc12e86b319
> Cc: Tang Chen <[email protected]>
> Cc: Greg Kroah-Hartman <[email protected]>
> Cc: "Rafael J. Wysocki" <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Keith Busch <[email protected]>
> Cc: Jiri Olsa <[email protected]>
> Cc: "Peter Zijlstra (Intel)" <[email protected]>
> Cc: Jani Nikula <[email protected]>
> Cc: Nayna Jain <[email protected]>
> Cc: Michal Hocko <[email protected]>
> Cc: Oscar Salvador <[email protected]>
> Cc: Stephen Rothwell <[email protected]>
> Cc: Dan Williams <[email protected]>
> Cc: Pavel Tatashin <[email protected]>
> Signed-off-by: David Hildenbrand <[email protected]>
> ---
>
> v2 -> v3:
> - Introduce and use for_each_memory_block(), which will run significantly
> faster than walk_memory_blocks()
>
> v1 -> v2:
> - Drop sysfs handling, simplify, and add a comment
> - Make sure to include last section fully
>
> We stop shrinking the ZONE_DEVICE zone after the following patch:
> [PATCH v6 04/10] mm/memory_hotplug: Don't access uninitialized memmaps
> in shrink_zone_span()
> This implies, the above note regarding ZONE_DEVICE on a node blocking a
> node from getting offlined until we sorted out how to properly shrink
> the ZONE_DEVICE zone.
>
> This patch is especially important for:
> [PATCH v6 05/10] mm/memory_hotplug: Shrink zones when offlining
> memory
> As the BUG fixed with this patch becomes now easier to observe when memory
> is offlined (in contrast to when memory would never have been onlined
> before).
>
> As both patches are stable fixes and in next/master for a long time, we
> should probably pull this patch in front of both and also backport this
> patch at least to
> Cc: [email protected] # v4.13+
> I have not checked yet if there are real blockers to do that. I guess not.
>
> ---
> drivers/base/memory.c | 36 +++++++++++++++++++++++++++++++++++
> include/linux/memory.h | 1 +
> mm/memory_hotplug.c | 43 ++++++++++++++++++++++++++----------------
> 3 files changed, 64 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/base/memory.c b/drivers/base/memory.c
> index a757d9ed88a7..d65ecdeb83e8 100644
> --- a/drivers/base/memory.c
> +++ b/drivers/base/memory.c
> @@ -867,3 +867,39 @@ int walk_memory_blocks(unsigned long start, unsigned long size,
> }
> return ret;
> }
> +
> +struct for_each_memory_block_cb_data {
> + walk_memory_blocks_func_t func;
> + void *arg;
> +};
> +
> +static int for_each_memory_block_cb(struct device *dev, void *data)
> +{
> + struct memory_block *mem = to_memory_block(dev);
> + struct for_each_memory_block_cb_data *cb_data = data;
> +
> + return cb_data->func(mem, cb_data->arg);
> +}
> +
> +/**
> + * for_each_memory_block - walk through all present memory blocks
> + *
> + * @arg: argument passed to func
> + * @func: callback for each memory block walked
> + *
> + * This function walks through all present memory blocks, calling func on
> + * each memory block.
> + *
> + * In case func() returns an error, walking is aborted and the error is
> + * returned.
> + */
> +int for_each_memory_block(void *arg, walk_memory_blocks_func_t func)
> +{
> + struct for_each_memory_block_cb_data cb_data = {
> + .func = func,
> + .arg = arg,
> + };
> +
> + return bus_for_each_dev(&memory_subsys, NULL, &cb_data,
> + for_each_memory_block_cb);
> +}
> diff --git a/include/linux/memory.h b/include/linux/memory.h
> index 0ebb105eb261..4c75dae8dd29 100644
> --- a/include/linux/memory.h
> +++ b/include/linux/memory.h
> @@ -119,6 +119,7 @@ extern struct memory_block *find_memory_block(struct mem_section *);
> typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *);
> extern int walk_memory_blocks(unsigned long start, unsigned long size,
> void *arg, walk_memory_blocks_func_t func);
> +extern int for_each_memory_block(void *arg, walk_memory_blocks_func_t func);
> #define CONFIG_MEM_BLOCK_SIZE (PAGES_PER_SECTION<<PAGE_SHIFT)
> #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
>
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 0140c20837b6..46b2e056a43f 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1634,6 +1634,18 @@ static int check_cpu_on_node(pg_data_t *pgdat)
> return 0;
> }
>
> +static int check_no_memblock_for_node_cb(struct memory_block *mem, void *arg)
> +{
> + int nid = *(int *)arg;
> +
> + /*
> + * If a memory block belongs to multiple nodes, the stored nid is not
> + * reliable. However, such blocks are always online (e.g., cannot get
> + * offlined) and, therefore, are still spanned by the node.
> + */
> + return mem->nid == nid ? -EEXIST : 0;
> +}
> +
> /**
> * try_offline_node
> * @nid: the node ID
> @@ -1646,25 +1658,24 @@ static int check_cpu_on_node(pg_data_t *pgdat)
> void try_offline_node(int nid)
> {
> pg_data_t *pgdat = NODE_DATA(nid);
> - unsigned long start_pfn = pgdat->node_start_pfn;
> - unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
> - unsigned long pfn;
> -
> - for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
> - unsigned long section_nr = pfn_to_section_nr(pfn);
> -
> - if (!present_section_nr(section_nr))
> - continue;
> + int rc;
>
> - if (pfn_to_nid(pfn) != nid)
> - continue;
> + /*
> + * If the node still spans pages (especially ZONE_DEVICE), don't
> + * offline it. A node spans memory after move_pfn_range_to_zone(),
> + * e.g., after the memory block was onlined.
> + */
> + if (pgdat->node_spanned_pages)
> + return;
>
> - /*
> - * some memory sections of this node are not removed, and we
> - * can't offline node now.
> - */
> + /*
> + * Especially offline memory blocks might not be spanned by the
> + * node. They will get spanned by the node once they get onlined.
> + * However, they link to the node in sysfs and can get onlined later.
> + */
> + rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
> + if (rc)
> return;
> - }
>
> if (check_cpu_on_node(pgdat))
> return;
>

@Andrew, can you queued this one instead of v1 so we can give this some
more testing? Thanks!

--

Thanks,

David / dhildenb

2019-11-08 03:59:54

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

On Thu, 7 Nov 2019 00:14:13 +0100 David Hildenbrand <[email protected]> wrote:

> > + /*
> > + * Especially offline memory blocks might not be spanned by the
> > + * node. They will get spanned by the node once they get onlined.
> > + * However, they link to the node in sysfs and can get onlined later.
> > + */
> > + rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
> > + if (rc)
> > return;
> > - }
> >
> > if (check_cpu_on_node(pgdat))
> > return;
> >
>
> @Andrew, can you queued this one instead of v1 so we can give this some
> more testing? Thanks!

Sure.

We have a tested-by but no reviewed-by or acked-by :(

Null pointer derefs are unpopular. Should we cc:stable?

2019-11-16 00:10:09

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()

On Thu, 7 Nov 2019 19:58:45 -0800 Andrew Morton <[email protected]> wrote:

> On Thu, 7 Nov 2019 00:14:13 +0100 David Hildenbrand <[email protected]> wrote:
>
> > > + /*
> > > + * Especially offline memory blocks might not be spanned by the
> > > + * node. They will get spanned by the node once they get onlined.
> > > + * However, they link to the node in sysfs and can get onlined later.
> > > + */
> > > + rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
> > > + if (rc)
> > > return;
> > > - }
> > >
> > > if (check_cpu_on_node(pgdat))
> > > return;
> > >
> >
> > @Andrew, can you queued this one instead of v1 so we can give this some
> > more testing? Thanks!
>
> Sure.
>
> We have a tested-by but no reviewed-by or acked-by :(
>
> Null pointer derefs are unpopular. Should we cc:stable?

<Crickets>

I added cc:stable and shall send it upstream unreviewed.

2019-11-16 00:14:06

by David Hildenbrand

[permalink] [raw]
Subject: Re: [PATCH v3] mm/memory_hotplug: Fix try_offline_node()



> Am 16.11.2019 um 01:08 schrieb Andrew Morton <[email protected]>:
>
> On Thu, 7 Nov 2019 19:58:45 -0800 Andrew Morton <[email protected]> wrote:
>
>> On Thu, 7 Nov 2019 00:14:13 +0100 David Hildenbrand <[email protected]> wrote:
>>
>>>> + /*
>>>> + * Especially offline memory blocks might not be spanned by the
>>>> + * node. They will get spanned by the node once they get onlined.
>>>> + * However, they link to the node in sysfs and can get onlined later.
>>>> + */
>>>> + rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
>>>> + if (rc)
>>>> return;
>>>> - }
>>>>
>>>> if (check_cpu_on_node(pgdat))
>>>> return;
>>>>
>>>
>>> @Andrew, can you queued this one instead of v1 so we can give this some
>>> more testing? Thanks!
>>
>> Sure.
>>
>> We have a tested-by but no reviewed-by or acked-by :(
>>
>> Null pointer derefs are unpopular. Should we cc:stable?
>
> <Crickets>
>
> I added cc:stable and shall send it upstream unreviewed.

Yes, please cc:stable at as mentioned in the patch comments (below the description). Maybe we‘ll find somebody last minute to review ... thanks!

>