Re: [PATCH] powerpc/mce: Add MCE notification chain
From: Nicholas Piggin <npiggin@gmail.com>
Date: 2020-04-06 02:20:09
Ganesh's on April 4, 2020 11:05 pm:
On 4/3/20 7:38 AM, Nicholas Piggin wrote:quoted
Ganesh Goudar's on March 30, 2020 5:12 pm:quoted
From: Santosh S <redacted> Introduce notification chain which lets know about uncorrected memory errors(UE). This would help prospective users in pmem or nvdimm subsystem to track bad blocks for better handling of persistent memory allocations. Signed-off-by: Santosh S <redacted> Signed-off-by: Ganesh Goudar <redacted>Do you have any such users yet? It would be good to refer to an example user and give a brief description of what it does in its notifier.Santosh has sent a patch which uses this notification. https://patchwork.ozlabs.org/patch/1265062/
Okay. So these things are asynchronous after the machine check. I guess that's the design of it and memory offlining does something similar by the looks, but how do you prevent the memory being allocated for something else before the notifiers run?
quoted
quoted
@@ -263,6 +277,7 @@ static void machine_process_ue_event(struct work_struct *work) while (__this_cpu_read(mce_ue_count) > 0) { index = __this_cpu_read(mce_ue_count) - 1; evt = this_cpu_ptr(&mce_ue_event_queue[index]); + blocking_notifier_call_chain(&mce_notifier_list, 0, evt);Can we really use a blocking notifier here? I'm not sure that we can.I think we can, do you see any problem?
No it looks okay after better look, sorry for the noise. Thanks, Nick