linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Sourabh Jain <sourabhjain@linux.ibm.com>
To: Baoquan He <bhe@redhat.com>
Cc: David Hildenbrand <david@redhat.com>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	Mimi Zohar <zohar@linux.ibm.com>,
	linuxppc-dev@ozlabs.org,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>,
	Valentin Schneider <vschneid@redhat.com>,
	x86@kernel.org, "Aneesh Kumar K . V" <aneesh.kumar@kernel.org>,
	Laurent Dufour <laurent.dufour@fr.ibm.com>,
	Dave Young <dyoung@redhat.com>, Vivek Goyal <vgoyal@redhat.com>,
	Naveen N Rao <naveen@kernel.org>, Borislav Petkov <bp@alien8.de>,
	Thomas Gleixner <tglx@linutronix.de>,
	Hari Bathini <hbathini@linux.ibm.com>,
	Oscar Salvador <osalvador@suse.de>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	kexec@lists.infradead.org,
	Mahesh Salgaonkar <mahesh@linux.ibm.com>,
	Akhil Raj <lf32.dev@gmail.com>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v15 1/5] crash: forward memory_notify arg to arch crash hotplug handler
Date: Mon, 12 Feb 2024 17:27:48 +0530	[thread overview]
Message-ID: <0bfaf88a-4ffc-4401-9673-ec4a125a04b9@linux.ibm.com> (raw)
In-Reply-To: <ZcBR8Q+/WL3luZnP@MiWiFi-R3L-srv>



On 05/02/24 08:41, Baoquan He wrote:
> On 01/11/24 at 04:21pm, Sourabh Jain wrote:
>> In the event of memory hotplug or online/offline events, the crash
>> memory hotplug notifier `crash_memhp_notifier()` receives a
>> `memory_notify` object but doesn't forward that object to the
>> generic and architecture-specific crash hotplug handler.
>>
>> The `memory_notify` object contains the starting PFN (Page Frame Number)
>> and the number of pages in the hot-removed memory. This information is
>> necessary for architectures like PowerPC to update/recreate the kdump
>> image, specifically `elfcorehdr`.
>>
>> So update the function signature of `crash_handle_hotplug_event()` and
>> `arch_crash_handle_hotplug_event()` to accept the `memory_notify` object
>> as an argument from crash memory hotplug notifier.
>>
>> Since no such object is available in the case of CPU hotplug event, the
>> crash CPU hotplug notifier `crash_cpuhp_online()` passes NULL to the
>> crash hotplug handler.
>>
> ......
>> ---
>>   arch/x86/include/asm/kexec.h |  2 +-
>>   arch/x86/kernel/crash.c      |  3 ++-
>>   include/linux/kexec.h        |  2 +-
>>   kernel/crash_core.c          | 14 +++++++-------
>>   4 files changed, 11 insertions(+), 10 deletions(-)
> LGTM,
>
> Acked-by: Baoquan He <bhe@redhat.com>

Thanks Baoquan He

- Sourabh

>
>> diff --git a/arch/x86/include/asm/kexec.h b/arch/x86/include/asm/kexec.h
>> index c9f6a6c5de3c..9bb6607e864e 100644
>> --- a/arch/x86/include/asm/kexec.h
>> +++ b/arch/x86/include/asm/kexec.h
>> @@ -208,7 +208,7 @@ int arch_kimage_file_post_load_cleanup(struct kimage *image);
>>   extern void kdump_nmi_shootdown_cpus(void);
>>   
>>   #ifdef CONFIG_CRASH_HOTPLUG
>> -void arch_crash_handle_hotplug_event(struct kimage *image);
>> +void arch_crash_handle_hotplug_event(struct kimage *image, void *arg);
>>   #define arch_crash_handle_hotplug_event arch_crash_handle_hotplug_event
>>   
>>   #ifdef CONFIG_HOTPLUG_CPU
>> diff --git a/arch/x86/kernel/crash.c b/arch/x86/kernel/crash.c
>> index b6b044356f1b..44744e9c68ec 100644
>> --- a/arch/x86/kernel/crash.c
>> +++ b/arch/x86/kernel/crash.c
>> @@ -428,10 +428,11 @@ unsigned int arch_crash_get_elfcorehdr_size(void)
>>   /**
>>    * arch_crash_handle_hotplug_event() - Handle hotplug elfcorehdr changes
>>    * @image: a pointer to kexec_crash_image
>> + * @arg: struct memory_notify handler for memory hotplug case and NULL for CPU hotplug case.
>>    *
>>    * Prepare the new elfcorehdr and replace the existing elfcorehdr.
>>    */
>> -void arch_crash_handle_hotplug_event(struct kimage *image)
>> +void arch_crash_handle_hotplug_event(struct kimage *image, void *arg)
>>   {
>>   	void *elfbuf = NULL, *old_elfcorehdr;
>>   	unsigned long nr_mem_ranges;
>> diff --git a/include/linux/kexec.h b/include/linux/kexec.h
>> index 400cb6c02176..802052d9c64b 100644
>> --- a/include/linux/kexec.h
>> +++ b/include/linux/kexec.h
>> @@ -483,7 +483,7 @@ static inline void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages) {
>>   #endif
>>   
>>   #ifndef arch_crash_handle_hotplug_event
>> -static inline void arch_crash_handle_hotplug_event(struct kimage *image) { }
>> +static inline void arch_crash_handle_hotplug_event(struct kimage *image, void *arg) { }
>>   #endif
>>   
>>   int crash_check_update_elfcorehdr(void);
>> diff --git a/kernel/crash_core.c b/kernel/crash_core.c
>> index d48315667752..ab1c8e79759d 100644
>> --- a/kernel/crash_core.c
>> +++ b/kernel/crash_core.c
>> @@ -914,7 +914,7 @@ int crash_check_update_elfcorehdr(void)
>>    * list of segments it checks (since the elfcorehdr changes and thus
>>    * would require an update to purgatory itself to update the digest).
>>    */
>> -static void crash_handle_hotplug_event(unsigned int hp_action, unsigned int cpu)
>> +static void crash_handle_hotplug_event(unsigned int hp_action, unsigned int cpu, void *arg)
>>   {
>>   	struct kimage *image;
>>   
>> @@ -976,7 +976,7 @@ static void crash_handle_hotplug_event(unsigned int hp_action, unsigned int cpu)
>>   	image->hp_action = hp_action;
>>   
>>   	/* Now invoke arch-specific update handler */
>> -	arch_crash_handle_hotplug_event(image);
>> +	arch_crash_handle_hotplug_event(image, arg);
>>   
>>   	/* No longer handling a hotplug event */
>>   	image->hp_action = KEXEC_CRASH_HP_NONE;
>> @@ -992,17 +992,17 @@ static void crash_handle_hotplug_event(unsigned int hp_action, unsigned int cpu)
>>   	crash_hotplug_unlock();
>>   }
>>   
>> -static int crash_memhp_notifier(struct notifier_block *nb, unsigned long val, void *v)
>> +static int crash_memhp_notifier(struct notifier_block *nb, unsigned long val, void *arg)
>>   {
>>   	switch (val) {
>>   	case MEM_ONLINE:
>>   		crash_handle_hotplug_event(KEXEC_CRASH_HP_ADD_MEMORY,
>> -			KEXEC_CRASH_HP_INVALID_CPU);
>> +			KEXEC_CRASH_HP_INVALID_CPU, arg);
>>   		break;
>>   
>>   	case MEM_OFFLINE:
>>   		crash_handle_hotplug_event(KEXEC_CRASH_HP_REMOVE_MEMORY,
>> -			KEXEC_CRASH_HP_INVALID_CPU);
>> +			KEXEC_CRASH_HP_INVALID_CPU, arg);
>>   		break;
>>   	}
>>   	return NOTIFY_OK;
>> @@ -1015,13 +1015,13 @@ static struct notifier_block crash_memhp_nb = {
>>   
>>   static int crash_cpuhp_online(unsigned int cpu)
>>   {
>> -	crash_handle_hotplug_event(KEXEC_CRASH_HP_ADD_CPU, cpu);
>> +	crash_handle_hotplug_event(KEXEC_CRASH_HP_ADD_CPU, cpu, NULL);
>>   	return 0;
>>   }
>>   
>>   static int crash_cpuhp_offline(unsigned int cpu)
>>   {
>> -	crash_handle_hotplug_event(KEXEC_CRASH_HP_REMOVE_CPU, cpu);
>> +	crash_handle_hotplug_event(KEXEC_CRASH_HP_REMOVE_CPU, cpu, NULL);
>>   	return 0;
>>   }
>>   
>> -- 
>> 2.41.0
>>


  reply	other threads:[~2024-02-12 11:59 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-11 10:51 [PATCH v15 0/5] powerpc/crash: Kernel handling of CPU and memory hotplug Sourabh Jain
2024-01-11 10:51 ` [PATCH v15 1/5] crash: forward memory_notify arg to arch crash hotplug handler Sourabh Jain
2024-02-05  3:11   ` Baoquan He
2024-02-12 11:57     ` Sourabh Jain [this message]
2024-01-11 10:51 ` [PATCH v15 2/5] crash: add a new kexec flag for hotplug support Sourabh Jain
2024-02-05  3:10   ` Baoquan He
2024-02-12 13:57     ` Sourabh Jain
2024-02-13  3:21       ` Baoquan He
2024-02-14 13:35         ` Sourabh Jain
2024-01-11 10:51 ` [PATCH v15 3/5] powerpc/kexec: turn some static helper functions public Sourabh Jain
2024-01-11 10:51 ` [PATCH v15 4/5] powerpc: add crash CPU hotplug support Sourabh Jain
2024-01-23 10:16   ` Hari Bathini
2024-01-11 10:51 ` [PATCH v15 5/5] powerpc: add crash memory " Sourabh Jain
2024-01-23 10:22   ` Hari Bathini
2024-01-29  6:46     ` Sourabh Jain

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0bfaf88a-4ffc-4401-9673-ec4a125a04b9@linux.ibm.com \
    --to=sourabhjain@linux.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=aneesh.kumar@kernel.org \
    --cc=bhe@redhat.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=david@redhat.com \
    --cc=dyoung@redhat.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hbathini@linux.ibm.com \
    --cc=kexec@lists.infradead.org \
    --cc=laurent.dufour@fr.ibm.com \
    --cc=lf32.dev@gmail.com \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=mahesh@linux.ibm.com \
    --cc=naveen@kernel.org \
    --cc=osalvador@suse.de \
    --cc=tglx@linutronix.de \
    --cc=vgoyal@redhat.com \
    --cc=vschneid@redhat.com \
    --cc=x86@kernel.org \
    --cc=zohar@linux.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).