* [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work
@ 2025-01-07 8:17 Shuai Xue
2025-01-07 8:17 ` [PATCH v18 1/3] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered Shuai Xue
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Shuai Xue @ 2025-01-07 8:17 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
xueshuai, justin.he, ardb, ying.huang, ashish.kalra, baolin.wang,
tglx, dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
changes singce v17:
- rebase to Linux 6.13-rc7 with no functional changes
- add reviewed-by tag for patch 1-3 from Jane Chu
- add reviewed-by tag for patch 3 from Yazen
changes singce v16:
- add reviewed-by tag for patch 1 and patch 2 from Yazen
- rewrite warning message for force kill (per Yazen)
- warn with dev_err in ghes (per Jarkko)
- add return value -ENXIO in memory_failure comments (per Yazen)
- Link: https://lore.kernel.org/lkml/20241104015430.98599-1-xueshuai@linux.alibaba.com/
changes singce v15:
- add HW_ERR and GHES_PFX prefix per Yazen
changes since v14:
- add reviewed-by tags from Jarkko and Jonathan
- remove local variable and use twcb->pfn
changes since v13:
- add reviewed-by tag from Jarkko
- rename task_work to ghes_task_work (per Jarkko)
changes since v12:
- tweak error message for force kill (per Jarkko)
- fix comments style (per Jarkko)
- fix commit log typo (per Jarko)
changes since v11:
- rebase to Linux 6.11-rc6
- fix grammer and typo in commit log (per Borislav)
- remove `sync_` perfix of `sync_task_work` (per Borislav)
- comments flags and description of `task_work` (per Borislav)
changes since v10:
- rebase to v6.8-rc2
changes since v9:
- split patch 2 to address exactly one issue in one patch (per Borislav)
- rewrite commit log according to template (per Borislav)
- pickup reviewed-by tag of patch 1 from James Morse
- alloc and free twcb through gen_pool_{alloc, free) (Per James)
- rewrite cover letter
changes since v8:
- remove the bug fix tag of patch 2 (per Jarkko Sakkinen)
- remove the declaration of memory_failure_queue_kick (per Naoya Horiguchi)
- rewrite the return value comments of memory_failure (per Naoya Horiguchi)
changes since v7:
- rebase to Linux v6.6-rc2 (no code changed)
- rewritten the cover letter to explain the motivation of this patchset
changes since v6:
- add more explicty error message suggested by Xiaofei
- pick up reviewed-by tag from Xiaofei
- pick up internal reviewed-by tag from Baolin
changes since v5 by addressing comments from Kefeng:
- document return value of memory_failure()
- drop redundant comments in call site of memory_failure()
- make ghes_do_proc void and handle abnormal case within it
- pick up reviewed-by tag from Kefeng Wang
changes since v4 by addressing comments from Xiaofei:
- do a force kill only for abnormal sync errors
changes since v3 by addressing comments from Xiaofei:
- do a force kill for abnormal memory failure error such as invalid PA,
unexpected severity, OOM, etc
- pcik up tested-by tag from Ma Wupeng
changes since v2 by addressing comments from Naoya:
- rename mce_task_work to sync_task_work
- drop ACPI_HEST_NOTIFY_MCE case in is_hest_sync_notify()
- add steps to reproduce this problem in cover letter
changes since v1:
- synchronous events by notify type
- Link: https://lore.kernel.org/lkml/20221206153354.92394-3-xueshuai@linux.alibaba.com/
## Cover Letter
There are two major types of uncorrected recoverable (UCR) errors :
- Synchronous error: The error is detected and raised at the point of the
consumption in the execution flow, e.g. when a CPU tries to access
a poisoned cache line. The CPU will take a synchronous error exception
such as Synchronous External Abort (SEA) on Arm64 and Machine Check
Exception (MCE) on X86. OS requires to take action (for example, offline
failure page/kill failure thread) to recover this uncorrectable error.
- Asynchronous error: The error is detected out of processor execution
context, e.g. when an error is detected by a background scrubber. Some data
in the memory are corrupted. But the data have not been consumed. OS is
optional to take action to recover this uncorrectable error.
Currently, both synchronous and asynchronous error use
memory_failure_queue() to schedule memory_failure() exectute in kworker
context. As a result, when a user-space process is accessing a poisoned
data, a data abort is taken and the memory_failure() is executed in the
kworker context:
- will send wrong si_code by SIGBUS signal in early_kill mode, and
- can not kill the user-space in some cases resulting a synchronous
error infinite loop
Issue 1: send wrong si_code in early_kill mode
Since commit a70297d22132 ("ACPI: APEI: set memory failure flags as
MF_ACTION_REQUIRED on synchronous events")', the flag MF_ACTION_REQUIRED
could be used to determine whether a synchronous exception occurs on
ARM64 platform. When a synchronous exception is detected, the kernel is
expected to terminate the current process which has accessed poisoned
page. This is done by sending a SIGBUS signal with an error code
BUS_MCEERR_AR, indicating an action-required machine check error on
read.
However, when kill_proc() is called to terminate the processes who have
the poisoned page mapped, it sends the incorrect SIGBUS error code
BUS_MCEERR_AO because the context in which it operates is not the one
where the error was triggered.
To reproduce this problem:
# STEP1: enable early kill mode
#sysctl -w vm.memory_failure_early_kill=1
vm.memory_failure_early_kill = 1
# STEP2: inject an UCE error and consume it to trigger a synchronous error
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 5 addr 0xffffb0d75000
page not present
Test passed
The si_code (code 5) from einj_mem_uc indicates that it is BUS_MCEERR_AO
error and it is not fact.
To fix it, queue memory_failure() as a task_work so that it runs in
the context of the process that is actually consuming the poisoned data.
After this patch set:
# STEP1: enable early kill mode
#sysctl -w vm.memory_failure_early_kill=1
vm.memory_failure_early_kill = 1
# STEP2: inject an UCE error and consume it to trigger a synchronous error
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 4 addr 0xffffb0d75000
page not present
Test passed
The si_code (code 4) from einj_mem_uc indicates that it is BUS_MCEERR_AR
error as we expected.
Issue 2: a synchronous error infinite loop due to memory_failure() failed
If a user-space process, e.g. devmem, a poisoned page which has been set
HWPosion flag, kill_accessing_process() is called to send SIGBUS to the
current processs with error info. Because the memory_failure() is
executed in the kworker contex, it will just do nothing but return
EFAULT. So, devmem will access the posioned page and trigger an
excepction again, resulting in a synchronous error infinite loop. Such
loop may cause platform firmware to exceed some threshold and reboot
when Linux could have recovered from this error.
To reproduce this problem:
# STEP 1: inject an UCE error, and kernel will set HWPosion flag for related page
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 4 addr 0xffffb0d75000
page not present
Test passed
# STEP 2: access the same page and it will trigger a synchronous error infinite loop
devmem 0x4092d55b400
To fix it, if memory_failure() failed, perform a force kill to current process.
Issue 3: a synchronous error infinite loop due to no memory_failure() queued
No memory_failure() work is queued unless all bellow preconditions check passed:
- `if (!(mem_err->validation_bits & CPER_MEM_VALID_PA))` in ghes_handle_memory_failure()
- `if (flags == -1)` in ghes_handle_memory_failure()
- `if (!IS_ENABLED(CONFIG_ACPI_APEI_MEMORY_FAILURE))` in ghes_do_memory_failure()
- `if (!pfn_valid(pfn) && !arch_is_platform_page(physical_addr)) ` in ghes_do_memory_failure()
If the preconditions are not passed, the user-space process will trigger SEA again.
This loop can potentially exceed the platform firmware threshold or even
trigger a kernel hard lockup, leading to a system reboot.
To fix it, if no memory_failure() queued, perform a force kill to current process.
And the the memory errors triggered in kernel-mode[5], also relies on this
patchset to kill the failure thread.
Lv Ying and XiuQi from Huawei also proposed to address similar problem[2][4].
Acknowledge to discussion with them.
[1] Add ARMv8 RAS virtualization support in QEMU https://patchew.org/QEMU/20200512030609.19593-1-gengdongjiu@huawei.com/
[2] https://lore.kernel.org/lkml/20221205115111.131568-3-lvying6@huawei.com/
[3] https://lkml.kernel.org/r/20220914064935.7851-1-xueshuai@linux.alibaba.com
[4] https://lore.kernel.org/lkml/20221209095407.383211-1-lvying6@huawei.com/
[5] https://patchwork.kernel.org/project/linux-arm-kernel/cover/20240528085915.1955987-1-tongtiangen@huawei.com/
Shuai Xue (3):
ACPI: APEI: send SIGBUS to current task if synchronous memory error
not recovered
mm: memory-failure: move return value documentation to function
declaration
ACPI: APEI: handle synchronous exceptions in task work
arch/x86/kernel/cpu/mce/core.c | 7 ---
drivers/acpi/apei/ghes.c | 90 +++++++++++++++++++++-------------
include/acpi/ghes.h | 3 --
include/linux/mm.h | 1 -
mm/memory-failure.c | 23 +++------
5 files changed, 63 insertions(+), 61 deletions(-)
--
2.39.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v18 1/3] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered
2025-01-07 8:17 [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work Shuai Xue
@ 2025-01-07 8:17 ` Shuai Xue
2025-01-07 8:17 ` [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration Shuai Xue
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Shuai Xue @ 2025-01-07 8:17 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
xueshuai, justin.he, ardb, ying.huang, ashish.kalra, baolin.wang,
tglx, dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
Synchronous error was detected as a result of user-space process accessing
a 2-bit uncorrected error. The CPU will take a synchronous error exception
such as Synchronous External Abort (SEA) on Arm64. The kernel will queue a
memory_failure() work which poisons the related page, unmaps the page, and
then sends a SIGBUS to the process, so that a system wide panic can be
avoided.
However, no memory_failure() work will be queued when abnormal synchronous
errors occur. These errors can include situations such as invalid PA,
unexpected severity, no memory failure config support, invalid GUID
section, etc. In such case, the user-space process will trigger SEA again.
This loop can potentially exceed the platform firmware threshold or even
trigger a kernel hard lockup, leading to a system reboot.
Fix it by performing a force kill if no memory_failure() work is queued
for synchronous errors.
Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
Reviewed-by: Jane Chu <jane.chu@oracle.com>
---
drivers/acpi/apei/ghes.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index 07789f0b59bc..0e643e26c8ad 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -801,6 +801,17 @@ static bool ghes_do_proc(struct ghes *ghes,
}
}
+ /*
+ * If no memory failure work is queued for abnormal synchronous
+ * errors, do a force kill.
+ */
+ if (sync && !queued) {
+ dev_err(ghes->dev,
+ HW_ERR GHES_PFX "%s:%d: synchronous unrecoverable error (SIGBUS)\n",
+ current->comm, task_pid_nr(current));
+ force_sig(SIGBUS);
+ }
+
return queued;
}
--
2.39.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration
2025-01-07 8:17 [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work Shuai Xue
2025-01-07 8:17 ` [PATCH v18 1/3] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered Shuai Xue
@ 2025-01-07 8:17 ` Shuai Xue
2025-02-27 12:31 ` Catalin Marinas
2025-01-07 8:17 ` [PATCH v18 3/3] ACPI: APEI: handle synchronous exceptions in task work Shuai Xue
2025-01-22 5:36 ` [PATCH v18 0/3] ACPI: APEI: handle synchronous errors " Shuai Xue
3 siblings, 1 reply; 10+ messages in thread
From: Shuai Xue @ 2025-01-07 8:17 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
xueshuai, justin.he, ardb, ying.huang, ashish.kalra, baolin.wang,
tglx, dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
Part of return value comments for memory_failure() were originally
documented at the call site. Move those comments to the function
declaration to improve code readability and to provide developers with
immediate access to function usage and return information.
Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
Reviewed-by: Jane Chu <jane.chu@oracle.com>
---
arch/x86/kernel/cpu/mce/core.c | 7 -------
mm/memory-failure.c | 10 +++++++---
2 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c
index 7fb5556a0b53..d1dd7f892514 100644
--- a/arch/x86/kernel/cpu/mce/core.c
+++ b/arch/x86/kernel/cpu/mce/core.c
@@ -1398,13 +1398,6 @@ static void kill_me_maybe(struct callback_head *cb)
return;
}
- /*
- * -EHWPOISON from memory_failure() means that it already sent SIGBUS
- * to the current process with the proper error info,
- * -EOPNOTSUPP means hwpoison_filter() filtered the error event,
- *
- * In both cases, no further processing is required.
- */
if (ret == -EHWPOISON || ret == -EOPNOTSUPP)
return;
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index a7b8ccd29b6f..14c316d7d38d 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -2211,9 +2211,13 @@ static void kill_procs_now(struct page *p, unsigned long pfn, int flags,
* Must run in process context (e.g. a work queue) with interrupts
* enabled and no spinlocks held.
*
- * Return: 0 for successfully handled the memory error,
- * -EOPNOTSUPP for hwpoison_filter() filtered the error event,
- * < 0(except -EOPNOTSUPP) on failure.
+ * Return:
+ * 0 - success,
+ * -ENXIO - memory not managed by the kernel
+ * -EOPNOTSUPP - hwpoison_filter() filtered the error event,
+ * -EHWPOISON - the page was already poisoned, potentially
+ * kill process,
+ * other negative values - failure.
*/
int memory_failure(unsigned long pfn, int flags)
{
--
2.39.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v18 3/3] ACPI: APEI: handle synchronous exceptions in task work
2025-01-07 8:17 [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work Shuai Xue
2025-01-07 8:17 ` [PATCH v18 1/3] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered Shuai Xue
2025-01-07 8:17 ` [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration Shuai Xue
@ 2025-01-07 8:17 ` Shuai Xue
2025-01-22 5:36 ` [PATCH v18 0/3] ACPI: APEI: handle synchronous errors " Shuai Xue
3 siblings, 0 replies; 10+ messages in thread
From: Shuai Xue @ 2025-01-07 8:17 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
xueshuai, justin.he, ardb, ying.huang, ashish.kalra, baolin.wang,
tglx, dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
The memory uncorrected error could be signaled by asynchronous interrupt
(specifically, SPI in arm64 platform), e.g. when an error is detected by
a background scrubber, or signaled by synchronous exception
(specifically, data abort exception in arm64 platform), e.g. when a CPU
tries to access a poisoned cache line. Currently, both synchronous and
asynchronous error use memory_failure_queue() to schedule
memory_failure() to exectute in a kworker context.
As a result, when a user-space process is accessing a poisoned data, a
data abort is taken and the memory_failure() is executed in the kworker
context, memory_failure():
- will send wrong si_code by SIGBUS signal in early_kill mode, and
- can not kill the user-space in some cases resulting a synchronous
error infinite loop
Issue 1: send wrong si_code in early_kill mode
Since commit a70297d22132 ("ACPI: APEI: set memory failure flags as
MF_ACTION_REQUIRED on synchronous events")', the flag MF_ACTION_REQUIRED
could be used to determine whether a synchronous exception occurs on
ARM64 platform. When a synchronous exception is detected, the kernel is
expected to terminate the current process which has accessed poisoned
page. This is done by sending a SIGBUS signal with an error code
BUS_MCEERR_AR, indicating an action-required machine check error on
read.
However, when kill_proc() is called to terminate the processes who have
the poisoned page mapped, it sends the incorrect SIGBUS error code
BUS_MCEERR_AO because the context in which it operates is not the one
where the error was triggered.
To reproduce this problem:
#sysctl -w vm.memory_failure_early_kill=1
vm.memory_failure_early_kill = 1
# STEP2: inject an UCE error and consume it to trigger a synchronous error
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 5 addr 0xffffb0d75000
page not present
Test passed
The si_code (code 5) from einj_mem_uc indicates that it is BUS_MCEERR_AO
error and it is not the fact.
After this patch:
# STEP1: enable early kill mode
#sysctl -w vm.memory_failure_early_kill=1
vm.memory_failure_early_kill = 1
# STEP2: inject an UCE error and consume it to trigger a synchronous error
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 4 addr 0xffffb0d75000
page not present
Test passed
The si_code (code 4) from einj_mem_uc indicates that it is a BUS_MCEERR_AR
error as we expected.
Issue 2: a synchronous error infinite loop
If a user-space process, e.g. devmem, accesses a poisoned page for which
the HWPoison flag is set, kill_accessing_process() is called to send
SIGBUS to current processs with error info. Because the memory_failure()
is executed in the kworker context, it will just do nothing but return
EFAULT. So, devmem will access the posioned page and trigger an
exception again, resulting in a synchronous error infinite loop. Such
exception loop may cause platform firmware to exceed some threshold and
reboot when Linux could have recovered from this error.
To reproduce this problem:
# STEP 1: inject an UCE error, and kernel will set HWPosion flag for related page
#einj_mem_uc single
0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
injecting ...
triggering ...
signal 7 code 4 addr 0xffffb0d75000
page not present
Test passed
# STEP 2: access the same page and it will trigger a synchronous error infinite loop
devmem 0x4092d55b400
To fix above two issues, queue memory_failure() as a task_work so that
it runs in the context of the process that is actually consuming the
poisoned data.
Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
Tested-by: Ma Wupeng <mawupeng1@huawei.com>
Reviewed-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Xiaofei Tan <tanxiaofei@huawei.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Jane Chu <jane.chu@oracle.com>
Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
---
drivers/acpi/apei/ghes.c | 81 +++++++++++++++++++++++-----------------
include/acpi/ghes.h | 3 --
include/linux/mm.h | 1 -
mm/memory-failure.c | 13 -------
4 files changed, 46 insertions(+), 52 deletions(-)
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index 0e643e26c8ad..324fe9d306e6 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -466,28 +466,41 @@ static void ghes_clear_estatus(struct ghes *ghes,
ghes_ack_error(ghes->generic_v2);
}
-/*
- * Called as task_work before returning to user-space.
- * Ensure any queued work has been done before we return to the context that
- * triggered the notification.
+/**
+ * struct ghes_task_work - for synchronous RAS event
+ *
+ * @twork: callback_head for task work
+ * @pfn: page frame number of corrupted page
+ * @flags: work control flags
+ *
+ * Structure to pass task work to be handled before
+ * returning to user-space via task_work_add().
*/
-static void ghes_kick_task_work(struct callback_head *head)
+struct ghes_task_work {
+ struct callback_head twork;
+ u64 pfn;
+ int flags;
+};
+
+static void memory_failure_cb(struct callback_head *twork)
{
- struct acpi_hest_generic_status *estatus;
- struct ghes_estatus_node *estatus_node;
- u32 node_len;
+ struct ghes_task_work *twcb = container_of(twork, struct ghes_task_work, twork);
+ int ret;
- estatus_node = container_of(head, struct ghes_estatus_node, task_work);
- if (IS_ENABLED(CONFIG_ACPI_APEI_MEMORY_FAILURE))
- memory_failure_queue_kick(estatus_node->task_work_cpu);
+ ret = memory_failure(twcb->pfn, twcb->flags);
+ gen_pool_free(ghes_estatus_pool, (unsigned long)twcb, sizeof(*twcb));
- estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
- node_len = GHES_ESTATUS_NODE_LEN(cper_estatus_len(estatus));
- gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node, node_len);
+ if (!ret || ret == -EHWPOISON || ret == -EOPNOTSUPP)
+ return;
+
+ pr_err("%#llx: Sending SIGBUS to %s:%d due to hardware memory corruption\n",
+ twcb->pfn, current->comm, task_pid_nr(current));
+ force_sig(SIGBUS);
}
static bool ghes_do_memory_failure(u64 physical_addr, int flags)
{
+ struct ghes_task_work *twcb;
unsigned long pfn;
if (!IS_ENABLED(CONFIG_ACPI_APEI_MEMORY_FAILURE))
@@ -501,6 +514,18 @@ static bool ghes_do_memory_failure(u64 physical_addr, int flags)
return false;
}
+ if (flags == MF_ACTION_REQUIRED && current->mm) {
+ twcb = (void *)gen_pool_alloc(ghes_estatus_pool, sizeof(*twcb));
+ if (!twcb)
+ return false;
+
+ twcb->pfn = pfn;
+ twcb->flags = flags;
+ init_task_work(&twcb->twork, memory_failure_cb);
+ task_work_add(current, &twcb->twork, TWA_RESUME);
+ return true;
+ }
+
memory_failure_queue(pfn, flags);
return true;
}
@@ -745,8 +770,8 @@ int cxl_cper_kfifo_get(struct cxl_cper_work_data *wd)
}
EXPORT_SYMBOL_NS_GPL(cxl_cper_kfifo_get, "CXL");
-static bool ghes_do_proc(struct ghes *ghes,
- const struct acpi_hest_generic_status *estatus)
+static void ghes_do_proc(struct ghes *ghes,
+ const struct acpi_hest_generic_status *estatus)
{
int sev, sec_sev;
struct acpi_hest_generic_data *gdata;
@@ -811,8 +836,6 @@ static bool ghes_do_proc(struct ghes *ghes,
current->comm, task_pid_nr(current));
force_sig(SIGBUS);
}
-
- return queued;
}
static void __ghes_print_estatus(const char *pfx,
@@ -1114,9 +1137,7 @@ static void ghes_proc_in_irq(struct irq_work *irq_work)
struct ghes_estatus_node *estatus_node;
struct acpi_hest_generic *generic;
struct acpi_hest_generic_status *estatus;
- bool task_work_pending;
u32 len, node_len;
- int ret;
llnode = llist_del_all(&ghes_estatus_llist);
/*
@@ -1131,25 +1152,16 @@ static void ghes_proc_in_irq(struct irq_work *irq_work)
estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
len = cper_estatus_len(estatus);
node_len = GHES_ESTATUS_NODE_LEN(len);
- task_work_pending = ghes_do_proc(estatus_node->ghes, estatus);
+
+ ghes_do_proc(estatus_node->ghes, estatus);
+
if (!ghes_estatus_cached(estatus)) {
generic = estatus_node->generic;
if (ghes_print_estatus(NULL, generic, estatus))
ghes_estatus_cache_add(generic, estatus);
}
-
- if (task_work_pending && current->mm) {
- estatus_node->task_work.func = ghes_kick_task_work;
- estatus_node->task_work_cpu = smp_processor_id();
- ret = task_work_add(current, &estatus_node->task_work,
- TWA_RESUME);
- if (ret)
- estatus_node->task_work.func = NULL;
- }
-
- if (!estatus_node->task_work.func)
- gen_pool_free(ghes_estatus_pool,
- (unsigned long)estatus_node, node_len);
+ gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node,
+ node_len);
llnode = next;
}
@@ -1210,7 +1222,6 @@ static int ghes_in_nmi_queue_one_entry(struct ghes *ghes,
estatus_node->ghes = ghes;
estatus_node->generic = ghes->generic;
- estatus_node->task_work.func = NULL;
estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
if (__ghes_read_estatus(estatus, buf_paddr, fixmap_idx, len)) {
diff --git a/include/acpi/ghes.h b/include/acpi/ghes.h
index be1dd4c1a917..ebd21b05fe6e 100644
--- a/include/acpi/ghes.h
+++ b/include/acpi/ghes.h
@@ -35,9 +35,6 @@ struct ghes_estatus_node {
struct llist_node llnode;
struct acpi_hest_generic *generic;
struct ghes *ghes;
-
- int task_work_cpu;
- struct callback_head task_work;
};
struct ghes_estatus_cache {
diff --git a/include/linux/mm.h b/include/linux/mm.h
index b1c3db9cf355..850165eaebfe 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -3947,7 +3947,6 @@ enum mf_flags {
int mf_dax_kill_procs(struct address_space *mapping, pgoff_t index,
unsigned long count, int mf_flags);
extern int memory_failure(unsigned long pfn, int flags);
-extern void memory_failure_queue_kick(int cpu);
extern int unpoison_memory(unsigned long pfn);
extern atomic_long_t num_poisoned_pages __read_mostly;
extern int soft_offline_page(unsigned long pfn, int flags);
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 14c316d7d38d..e0adb665d07b 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -2499,19 +2499,6 @@ static void memory_failure_work_func(struct work_struct *work)
}
}
-/*
- * Process memory_failure work queued on the specified CPU.
- * Used to avoid return-to-userspace racing with the memory_failure workqueue.
- */
-void memory_failure_queue_kick(int cpu)
-{
- struct memory_failure_cpu *mf_cpu;
-
- mf_cpu = &per_cpu(memory_failure_cpu, cpu);
- cancel_work_sync(&mf_cpu->work);
- memory_failure_work_func(&mf_cpu->work);
-}
-
static int __init memory_failure_init(void)
{
struct memory_failure_cpu *mf_cpu;
--
2.39.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work
2025-01-07 8:17 [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work Shuai Xue
` (2 preceding siblings ...)
2025-01-07 8:17 ` [PATCH v18 3/3] ACPI: APEI: handle synchronous exceptions in task work Shuai Xue
@ 2025-01-22 5:36 ` Shuai Xue
2025-02-08 2:05 ` Shuai Xue
3 siblings, 1 reply; 10+ messages in thread
From: Shuai Xue @ 2025-01-22 5:36 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
justin.he, ardb, ying.huang, ashish.kalra, baolin.wang, tglx,
dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
Hi, Rafael,
Gentle ping.
Thanks.
Best Regards,
Shuai
在 2025/1/7 16:17, Shuai Xue 写道:
> changes singce v17:
> - rebase to Linux 6.13-rc7 with no functional changes
> - add reviewed-by tag for patch 1-3 from Jane Chu
> - add reviewed-by tag for patch 3 from Yazen
>
> changes singce v16:
> - add reviewed-by tag for patch 1 and patch 2 from Yazen
> - rewrite warning message for force kill (per Yazen)
> - warn with dev_err in ghes (per Jarkko)
> - add return value -ENXIO in memory_failure comments (per Yazen)
> - Link: https://lore.kernel.org/lkml/20241104015430.98599-1-xueshuai@linux.alibaba.com/
>
> changes singce v15:
> - add HW_ERR and GHES_PFX prefix per Yazen
>
> changes since v14:
> - add reviewed-by tags from Jarkko and Jonathan
> - remove local variable and use twcb->pfn
>
> changes since v13:
> - add reviewed-by tag from Jarkko
> - rename task_work to ghes_task_work (per Jarkko)
>
> changes since v12:
> - tweak error message for force kill (per Jarkko)
> - fix comments style (per Jarkko)
> - fix commit log typo (per Jarko)
>
> changes since v11:
> - rebase to Linux 6.11-rc6
> - fix grammer and typo in commit log (per Borislav)
> - remove `sync_` perfix of `sync_task_work` (per Borislav)
> - comments flags and description of `task_work` (per Borislav)
>
> changes since v10:
> - rebase to v6.8-rc2
>
> changes since v9:
> - split patch 2 to address exactly one issue in one patch (per Borislav)
> - rewrite commit log according to template (per Borislav)
> - pickup reviewed-by tag of patch 1 from James Morse
> - alloc and free twcb through gen_pool_{alloc, free) (Per James)
> - rewrite cover letter
>
> changes since v8:
> - remove the bug fix tag of patch 2 (per Jarkko Sakkinen)
> - remove the declaration of memory_failure_queue_kick (per Naoya Horiguchi)
> - rewrite the return value comments of memory_failure (per Naoya Horiguchi)
>
> changes since v7:
> - rebase to Linux v6.6-rc2 (no code changed)
> - rewritten the cover letter to explain the motivation of this patchset
>
> changes since v6:
> - add more explicty error message suggested by Xiaofei
> - pick up reviewed-by tag from Xiaofei
> - pick up internal reviewed-by tag from Baolin
>
> changes since v5 by addressing comments from Kefeng:
> - document return value of memory_failure()
> - drop redundant comments in call site of memory_failure()
> - make ghes_do_proc void and handle abnormal case within it
> - pick up reviewed-by tag from Kefeng Wang
>
> changes since v4 by addressing comments from Xiaofei:
> - do a force kill only for abnormal sync errors
>
> changes since v3 by addressing comments from Xiaofei:
> - do a force kill for abnormal memory failure error such as invalid PA,
> unexpected severity, OOM, etc
> - pcik up tested-by tag from Ma Wupeng
>
> changes since v2 by addressing comments from Naoya:
> - rename mce_task_work to sync_task_work
> - drop ACPI_HEST_NOTIFY_MCE case in is_hest_sync_notify()
> - add steps to reproduce this problem in cover letter
>
> changes since v1:
> - synchronous events by notify type
> - Link: https://lore.kernel.org/lkml/20221206153354.92394-3-xueshuai@linux.alibaba.com/
>
> ## Cover Letter
>
> There are two major types of uncorrected recoverable (UCR) errors :
>
> - Synchronous error: The error is detected and raised at the point of the
> consumption in the execution flow, e.g. when a CPU tries to access
> a poisoned cache line. The CPU will take a synchronous error exception
> such as Synchronous External Abort (SEA) on Arm64 and Machine Check
> Exception (MCE) on X86. OS requires to take action (for example, offline
> failure page/kill failure thread) to recover this uncorrectable error.
>
> - Asynchronous error: The error is detected out of processor execution
> context, e.g. when an error is detected by a background scrubber. Some data
> in the memory are corrupted. But the data have not been consumed. OS is
> optional to take action to recover this uncorrectable error.
>
> Currently, both synchronous and asynchronous error use
> memory_failure_queue() to schedule memory_failure() exectute in kworker
> context. As a result, when a user-space process is accessing a poisoned
> data, a data abort is taken and the memory_failure() is executed in the
> kworker context:
>
> - will send wrong si_code by SIGBUS signal in early_kill mode, and
> - can not kill the user-space in some cases resulting a synchronous
> error infinite loop
>
> Issue 1: send wrong si_code in early_kill mode
>
> Since commit a70297d22132 ("ACPI: APEI: set memory failure flags as
> MF_ACTION_REQUIRED on synchronous events")', the flag MF_ACTION_REQUIRED
> could be used to determine whether a synchronous exception occurs on
> ARM64 platform. When a synchronous exception is detected, the kernel is
> expected to terminate the current process which has accessed poisoned
> page. This is done by sending a SIGBUS signal with an error code
> BUS_MCEERR_AR, indicating an action-required machine check error on
> read.
>
> However, when kill_proc() is called to terminate the processes who have
> the poisoned page mapped, it sends the incorrect SIGBUS error code
> BUS_MCEERR_AO because the context in which it operates is not the one
> where the error was triggered.
>
> To reproduce this problem:
>
> # STEP1: enable early kill mode
> #sysctl -w vm.memory_failure_early_kill=1
> vm.memory_failure_early_kill = 1
>
> # STEP2: inject an UCE error and consume it to trigger a synchronous error
> #einj_mem_uc single
> 0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
> injecting ...
> triggering ...
> signal 7 code 5 addr 0xffffb0d75000
> page not present
> Test passed
>
> The si_code (code 5) from einj_mem_uc indicates that it is BUS_MCEERR_AO
> error and it is not fact.
>
> To fix it, queue memory_failure() as a task_work so that it runs in
> the context of the process that is actually consuming the poisoned data.
>
> After this patch set:
>
> # STEP1: enable early kill mode
> #sysctl -w vm.memory_failure_early_kill=1
> vm.memory_failure_early_kill = 1
>
> # STEP2: inject an UCE error and consume it to trigger a synchronous error
> #einj_mem_uc single
> 0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
> injecting ...
> triggering ...
> signal 7 code 4 addr 0xffffb0d75000
> page not present
> Test passed
>
> The si_code (code 4) from einj_mem_uc indicates that it is BUS_MCEERR_AR
> error as we expected.
>
> Issue 2: a synchronous error infinite loop due to memory_failure() failed
>
> If a user-space process, e.g. devmem, a poisoned page which has been set
> HWPosion flag, kill_accessing_process() is called to send SIGBUS to the
> current processs with error info. Because the memory_failure() is
> executed in the kworker contex, it will just do nothing but return
> EFAULT. So, devmem will access the posioned page and trigger an
> excepction again, resulting in a synchronous error infinite loop. Such
> loop may cause platform firmware to exceed some threshold and reboot
> when Linux could have recovered from this error.
>
> To reproduce this problem:
>
> # STEP 1: inject an UCE error, and kernel will set HWPosion flag for related page
> #einj_mem_uc single
> 0: single vaddr = 0xffffb0d75400 paddr = 4092d55b400
> injecting ...
> triggering ...
> signal 7 code 4 addr 0xffffb0d75000
> page not present
> Test passed
>
> # STEP 2: access the same page and it will trigger a synchronous error infinite loop
> devmem 0x4092d55b400
>
> To fix it, if memory_failure() failed, perform a force kill to current process.
>
> Issue 3: a synchronous error infinite loop due to no memory_failure() queued
>
> No memory_failure() work is queued unless all bellow preconditions check passed:
>
> - `if (!(mem_err->validation_bits & CPER_MEM_VALID_PA))` in ghes_handle_memory_failure()
> - `if (flags == -1)` in ghes_handle_memory_failure()
> - `if (!IS_ENABLED(CONFIG_ACPI_APEI_MEMORY_FAILURE))` in ghes_do_memory_failure()
> - `if (!pfn_valid(pfn) && !arch_is_platform_page(physical_addr)) ` in ghes_do_memory_failure()
>
> If the preconditions are not passed, the user-space process will trigger SEA again.
> This loop can potentially exceed the platform firmware threshold or even
> trigger a kernel hard lockup, leading to a system reboot.
>
> To fix it, if no memory_failure() queued, perform a force kill to current process.
>
> And the the memory errors triggered in kernel-mode[5], also relies on this
> patchset to kill the failure thread.
>
> Lv Ying and XiuQi from Huawei also proposed to address similar problem[2][4].
> Acknowledge to discussion with them.
>
> [1] Add ARMv8 RAS virtualization support in QEMU https://patchew.org/QEMU/20200512030609.19593-1-gengdongjiu@huawei.com/
> [2] https://lore.kernel.org/lkml/20221205115111.131568-3-lvying6@huawei.com/
> [3] https://lkml.kernel.org/r/20220914064935.7851-1-xueshuai@linux.alibaba.com
> [4] https://lore.kernel.org/lkml/20221209095407.383211-1-lvying6@huawei.com/
> [5] https://patchwork.kernel.org/project/linux-arm-kernel/cover/20240528085915.1955987-1-tongtiangen@huawei.com/
>
> Shuai Xue (3):
> ACPI: APEI: send SIGBUS to current task if synchronous memory error
> not recovered
> mm: memory-failure: move return value documentation to function
> declaration
> ACPI: APEI: handle synchronous exceptions in task work
>
> arch/x86/kernel/cpu/mce/core.c | 7 ---
> drivers/acpi/apei/ghes.c | 90 +++++++++++++++++++++-------------
> include/acpi/ghes.h | 3 --
> include/linux/mm.h | 1 -
> mm/memory-failure.c | 23 +++------
> 5 files changed, 63 insertions(+), 61 deletions(-)
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work
2025-01-22 5:36 ` [PATCH v18 0/3] ACPI: APEI: handle synchronous errors " Shuai Xue
@ 2025-02-08 2:05 ` Shuai Xue
0 siblings, 0 replies; 10+ messages in thread
From: Shuai Xue @ 2025-02-08 2:05 UTC (permalink / raw)
To: yazen.ghannam, mark.rutland, catalin.marinas, mingo,
robin.murphy, Jonathan.Cameron, bp, rafael, linux-arm-kernel,
wangkefeng.wang, tanxiaofei, mawupeng1, tony.luck, linmiaohe,
naoya.horiguchi, james.morse, tongtiangen, gregkh, will, jarkko
Cc: linux-acpi, linux-mm, linux-kernel, akpm, linux-edac, x86,
justin.he, ardb, ying.huang, ashish.kalra, baolin.wang, tglx,
dave.hansen, lenb, hpa, robert.moore, lvying6, xiexiuqi,
zhuo.song
在 2025/1/22 13:36, Shuai Xue 写道:
> Hi, Rafael,
>
> Gentle ping.
>
> Thanks.
>
> Best Regards,
> Shuai
>
> 在 2025/1/7 16:17, Shuai Xue 写道:
>> changes singce v17:
>> - rebase to Linux 6.13-rc7 with no functional changes
>> - add reviewed-by tag for patch 1-3 from Jane Chu
>> - add reviewed-by tag for patch 3 from Yazen
>>
>> changes singce v16:
>> - add reviewed-by tag for patch 1 and patch 2 from Yazen
>> - rewrite warning message for force kill (per Yazen)
>> - warn with dev_err in ghes (per Jarkko)
>> - add return value -ENXIO in memory_failure comments (per Yazen)
>> - Link: https://lore.kernel.org/lkml/20241104015430.98599-1-xueshuai@linux.alibaba.com/
>>
>> changes singce v15:
>> - add HW_ERR and GHES_PFX prefix per Yazen
>>
>> changes since v14:
>> - add reviewed-by tags from Jarkko and Jonathan
>> - remove local variable and use twcb->pfn
>>
Hi, all,
Gentle ping.
Thanks.
Shuai
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration
2025-01-07 8:17 ` [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration Shuai Xue
@ 2025-02-27 12:31 ` Catalin Marinas
2025-02-28 1:46 ` Shuai Xue
0 siblings, 1 reply; 10+ messages in thread
From: Catalin Marinas @ 2025-02-27 12:31 UTC (permalink / raw)
To: Shuai Xue
Cc: yazen.ghannam, mark.rutland, mingo, robin.murphy,
Jonathan.Cameron, bp, rafael, linux-arm-kernel, wangkefeng.wang,
tanxiaofei, mawupeng1, tony.luck, linmiaohe, naoya.horiguchi,
james.morse, tongtiangen, gregkh, will, jarkko, linux-acpi,
linux-mm, linux-kernel, akpm, linux-edac, x86, justin.he, ardb,
ying.huang, ashish.kalra, baolin.wang, tglx, dave.hansen, lenb,
hpa, robert.moore, lvying6, xiexiuqi, zhuo.song
(going through patches in my inbox)
On Tue, Jan 07, 2025 at 04:17:34PM +0800, Shuai Xue wrote:
> Part of return value comments for memory_failure() were originally
> documented at the call site. Move those comments to the function
> declaration to improve code readability and to provide developers with
s/declaration/definition/
> immediate access to function usage and return information.
>
> Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
> Reviewed-by: Jane Chu <jane.chu@oracle.com>
> ---
> arch/x86/kernel/cpu/mce/core.c | 7 -------
> mm/memory-failure.c | 10 +++++++---
> 2 files changed, 7 insertions(+), 10 deletions(-)
>
> diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c
> index 7fb5556a0b53..d1dd7f892514 100644
> --- a/arch/x86/kernel/cpu/mce/core.c
> +++ b/arch/x86/kernel/cpu/mce/core.c
> @@ -1398,13 +1398,6 @@ static void kill_me_maybe(struct callback_head *cb)
> return;
> }
>
> - /*
> - * -EHWPOISON from memory_failure() means that it already sent SIGBUS
> - * to the current process with the proper error info,
> - * -EOPNOTSUPP means hwpoison_filter() filtered the error event,
> - *
> - * In both cases, no further processing is required.
> - */
> if (ret == -EHWPOISON || ret == -EOPNOTSUPP)
> return;
>
> diff --git a/mm/memory-failure.c b/mm/memory-failure.c
> index a7b8ccd29b6f..14c316d7d38d 100644
> --- a/mm/memory-failure.c
> +++ b/mm/memory-failure.c
> @@ -2211,9 +2211,13 @@ static void kill_procs_now(struct page *p, unsigned long pfn, int flags,
> * Must run in process context (e.g. a work queue) with interrupts
> * enabled and no spinlocks held.
> *
> - * Return: 0 for successfully handled the memory error,
> - * -EOPNOTSUPP for hwpoison_filter() filtered the error event,
> - * < 0(except -EOPNOTSUPP) on failure.
> + * Return:
> + * 0 - success,
> + * -ENXIO - memory not managed by the kernel
> + * -EOPNOTSUPP - hwpoison_filter() filtered the error event,
> + * -EHWPOISON - the page was already poisoned, potentially
> + * kill process,
> + * other negative values - failure.
> */
> int memory_failure(unsigned long pfn, int flags)
> {
Why not keep the comment in both places? One is about the x86 decisions,
the other is about what memory_failure() can return.
--
Catalin
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration
2025-02-27 12:31 ` Catalin Marinas
@ 2025-02-28 1:46 ` Shuai Xue
2025-02-28 11:29 ` Catalin Marinas
0 siblings, 1 reply; 10+ messages in thread
From: Shuai Xue @ 2025-02-28 1:46 UTC (permalink / raw)
To: Catalin Marinas
Cc: yazen.ghannam, mark.rutland, mingo, robin.murphy,
Jonathan.Cameron, bp, rafael, linux-arm-kernel, wangkefeng.wang,
tanxiaofei, mawupeng1, tony.luck, linmiaohe, naoya.horiguchi,
james.morse, tongtiangen, gregkh, will, jarkko, linux-acpi,
linux-mm, linux-kernel, akpm, linux-edac, x86, justin.he, ardb,
ying.huang, ashish.kalra, baolin.wang, tglx, dave.hansen, lenb,
hpa, robert.moore, lvying6, xiexiuqi, zhuo.song
在 2025/2/27 20:31, Catalin Marinas 写道:
> (going through patches in my inbox)
>
> On Tue, Jan 07, 2025 at 04:17:34PM +0800, Shuai Xue wrote:
>> Part of return value comments for memory_failure() were originally
>> documented at the call site. Move those comments to the function
>> declaration to improve code readability and to provide developers with
>
> s/declaration/definition/
Thanks, will fix.
>
>> immediate access to function usage and return information.
>>
>> Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
>> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
>> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>> Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
>> Reviewed-by: Jane Chu <jane.chu@oracle.com>
>> ---
>> arch/x86/kernel/cpu/mce/core.c | 7 -------
>> mm/memory-failure.c | 10 +++++++---
>> 2 files changed, 7 insertions(+), 10 deletions(-)
>>
>> diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c
>> index 7fb5556a0b53..d1dd7f892514 100644
>> --- a/arch/x86/kernel/cpu/mce/core.c
>> +++ b/arch/x86/kernel/cpu/mce/core.c
>> @@ -1398,13 +1398,6 @@ static void kill_me_maybe(struct callback_head *cb)
>> return;
>> }
>>
>> - /*
>> - * -EHWPOISON from memory_failure() means that it already sent SIGBUS
>> - * to the current process with the proper error info,
>> - * -EOPNOTSUPP means hwpoison_filter() filtered the error event,
>> - *
>> - * In both cases, no further processing is required.
>> - */
>> if (ret == -EHWPOISON || ret == -EOPNOTSUPP)
>> return;
>>
>> diff --git a/mm/memory-failure.c b/mm/memory-failure.c
>> index a7b8ccd29b6f..14c316d7d38d 100644
>> --- a/mm/memory-failure.c
>> +++ b/mm/memory-failure.c
>> @@ -2211,9 +2211,13 @@ static void kill_procs_now(struct page *p, unsigned long pfn, int flags,
>> * Must run in process context (e.g. a work queue) with interrupts
>> * enabled and no spinlocks held.
>> *
>> - * Return: 0 for successfully handled the memory error,
>> - * -EOPNOTSUPP for hwpoison_filter() filtered the error event,
>> - * < 0(except -EOPNOTSUPP) on failure.
>> + * Return:
>> + * 0 - success,
>> + * -ENXIO - memory not managed by the kernel
>> + * -EOPNOTSUPP - hwpoison_filter() filtered the error event,
>> + * -EHWPOISON - the page was already poisoned, potentially
>> + * kill process,
>> + * other negative values - failure.
>> */
>> int memory_failure(unsigned long pfn, int flags)
>> {
>
> Why not keep the comment in both places? One is about the x86 decisions,
> the other is about what memory_failure() can return.
>
Ok, will keep x86 path.
By the way, could arm maintainers help to ack patch 1 and 3 if there
is no objection?
Thanks.
Shuai
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration
2025-02-28 1:46 ` Shuai Xue
@ 2025-02-28 11:29 ` Catalin Marinas
2025-02-28 12:26 ` Shuai Xue
0 siblings, 1 reply; 10+ messages in thread
From: Catalin Marinas @ 2025-02-28 11:29 UTC (permalink / raw)
To: Shuai Xue
Cc: yazen.ghannam, mark.rutland, mingo, robin.murphy,
Jonathan.Cameron, bp, rafael, linux-arm-kernel, wangkefeng.wang,
tanxiaofei, mawupeng1, tony.luck, linmiaohe, naoya.horiguchi,
james.morse, tongtiangen, gregkh, will, jarkko, linux-acpi,
linux-mm, linux-kernel, akpm, linux-edac, x86, justin.he, ardb,
ying.huang, ashish.kalra, baolin.wang, tglx, dave.hansen, lenb,
hpa, robert.moore, lvying6, xiexiuqi, zhuo.song, lpieralisi,
guohanjun, sudeep.holla
On Fri, Feb 28, 2025 at 09:46:30AM +0800, Shuai Xue wrote:
[...]
> > On Tue, Jan 07, 2025 at 04:17:34PM +0800, Shuai Xue wrote:
> > > Part of return value comments for memory_failure() were originally
> > > documented at the call site. Move those comments to the function
> > > declaration to improve code readability and to provide developers with
[...]
> By the way, could arm maintainers help to ack patch 1 and 3 if there
> is no objection?
James Morse is listed as reviewer of the ACPI APEI code but he's busy
with resctrl/MPAM. Adding Lorenzo, Sudeep and Hanjun as arm64 ACPI
maintainers, hopefully they can help. Here's the full series:
https://lore.kernel.org/r/20250107081735.16159-1-xueshuai@linux.alibaba.com/
--
Catalin
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration
2025-02-28 11:29 ` Catalin Marinas
@ 2025-02-28 12:26 ` Shuai Xue
0 siblings, 0 replies; 10+ messages in thread
From: Shuai Xue @ 2025-02-28 12:26 UTC (permalink / raw)
To: Catalin Marinas
Cc: yazen.ghannam, mark.rutland, mingo, robin.murphy,
Jonathan.Cameron, bp, rafael, linux-arm-kernel, wangkefeng.wang,
tanxiaofei, mawupeng1, tony.luck, linmiaohe, naoya.horiguchi,
james.morse, tongtiangen, gregkh, will, jarkko, linux-acpi,
linux-mm, linux-kernel, akpm, linux-edac, x86, justin.he, ardb,
ying.huang, ashish.kalra, baolin.wang, tglx, dave.hansen, lenb,
hpa, robert.moore, lvying6, xiexiuqi, zhuo.song, lpieralisi,
guohanjun, sudeep.holla
在 2025/2/28 19:29, Catalin Marinas 写道:
> On Fri, Feb 28, 2025 at 09:46:30AM +0800, Shuai Xue wrote:
> [...]
>>> On Tue, Jan 07, 2025 at 04:17:34PM +0800, Shuai Xue wrote:
>>>> Part of return value comments for memory_failure() were originally
>>>> documented at the call site. Move those comments to the function
>>>> declaration to improve code readability and to provide developers with
> [...]
>> By the way, could arm maintainers help to ack patch 1 and 3 if there
>> is no objection?
>
> James Morse is listed as reviewer of the ACPI APEI code but he's busy
> with resctrl/MPAM. Adding Lorenzo, Sudeep and Hanjun as arm64 ACPI
> maintainers, hopefully they can help. Here's the full series:
>
> https://lore.kernel.org/r/20250107081735.16159-1-xueshuai@linux.alibaba.com/
>
Thank you for your assistance.
Looking forward to any updates.
Best regards,
Shuai
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-02-28 12:26 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-07 8:17 [PATCH v18 0/3] ACPI: APEI: handle synchronous errors in task work Shuai Xue
2025-01-07 8:17 ` [PATCH v18 1/3] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered Shuai Xue
2025-01-07 8:17 ` [PATCH v18 2/3] mm: memory-failure: move return value documentation to function declaration Shuai Xue
2025-02-27 12:31 ` Catalin Marinas
2025-02-28 1:46 ` Shuai Xue
2025-02-28 11:29 ` Catalin Marinas
2025-02-28 12:26 ` Shuai Xue
2025-01-07 8:17 ` [PATCH v18 3/3] ACPI: APEI: handle synchronous exceptions in task work Shuai Xue
2025-01-22 5:36 ` [PATCH v18 0/3] ACPI: APEI: handle synchronous errors " Shuai Xue
2025-02-08 2:05 ` Shuai Xue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox