From: Baoquan He <bhe@redhat.com>
To: Sourabh Jain <sourabhjain@linux.ibm.com>, akpm@linux-foundation.org
Cc: Hari Bathini <hbathini@linux.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
kexec@lists.infradead.org, linuxppc-dev@lists.ozlabs.org,
linux-kernel@vger.kernel.org, x86@kernel.org,
Sachin P Bappalige <sachinpb@linux.vnet.ibm.com>
Subject: Re: [PATCH RESEND v2] kexec/crash: no crash update when kexec in progress
Date: Thu, 12 Sep 2024 16:35:13 +0800 [thread overview]
Message-ID: <ZuKnwcqv9xQDNOrl@MiWiFi-R3L-srv> (raw)
In-Reply-To: <f4dcb6b4-2da8-4355-9d89-8b41af30214d@linux.ibm.com>
On 09/12/24 at 01:33pm, Sourabh Jain wrote:
> Hello Baoquan,
>
> On 11/09/24 19:50, Baoquan He wrote:
> > On 09/11/24 at 04:51pm, Sourabh Jain wrote:
> > > The following errors are observed when kexec is done with SMT=off on
> > > powerpc.
> > >
> > > [ 358.458385] Removing IBM Power 842 compression device
> > > [ 374.795734] kexec_core: Starting new kernel
> > > [ 374.795748] kexec: Waking offline cpu 1.
> > > [ 374.875695] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > [ 374.935833] kexec: Waking offline cpu 2.
> > > [ 375.015664] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > snip..
> > > [ 375.515823] kexec: Waking offline cpu 6.
> > > [ 375.635667] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > [ 375.695836] kexec: Waking offline cpu 7.
> > >
> > > To avoid kexec kernel boot failure on PowerPC, all the present CPUs that
> > > are offline are brought online during kexec. For more information, refer
> > > to commit e8e5c2155b00 ("powerpc/kexec: Fix orphaned offline CPUs across
> > > kexec"). Bringing the CPUs online triggers the crash hotplug handler,
> > > crash_handle_hotplug_event(), to update the kdump image. Since the
> > > system is on the kexec kernel boot path and the kexec lock is held, the
> > > crash_handle_hotplug_event() function fails to acquire the same lock to
> > > update the kdump image, resulting in the error messages mentioned above.
> > >
> > > To fix this, return from crash_handle_hotplug_event() without printing
> > > the error message if kexec is in progress.
> > >
> > > The same applies to the crash_check_hotplug_support() function. Return
> > > 0 if kexec is in progress because kernel is not in a position to update
> > > the kdump image.
> > LGTM, thanks.
> >
> > Acked-by: Baoquan he <bhe@redhat.com>
>
> Thank you for the Ack!
>
> My understanding is that this patch will go upstream via the linux-next
> tree, as it is based on
> https://lore.kernel.org/all/20240902034708.88EC1C4CEC2@smtp.kernel.org/
> which is already part of the linux-next master branch. - Sourabh Jain
Then you should mark it as [PATCH linux-next] in subject.
Since this patch is in generic code, it needs Andrew's help to
pick it. Let's wait and see if Andrew need a new post to change
the subject.
Thanks
Baoquan
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
WARNING: multiple messages have this Message-ID (diff)
From: Baoquan He <bhe@redhat.com>
To: Sourabh Jain <sourabhjain@linux.ibm.com>, akpm@linux-foundation.org
Cc: Hari Bathini <hbathini@linux.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
kexec@lists.infradead.org, linuxppc-dev@lists.ozlabs.org,
linux-kernel@vger.kernel.org, x86@kernel.org,
Sachin P Bappalige <sachinpb@linux.vnet.ibm.com>
Subject: Re: [PATCH RESEND v2] kexec/crash: no crash update when kexec in progress
Date: Thu, 12 Sep 2024 16:35:13 +0800 [thread overview]
Message-ID: <ZuKnwcqv9xQDNOrl@MiWiFi-R3L-srv> (raw)
In-Reply-To: <f4dcb6b4-2da8-4355-9d89-8b41af30214d@linux.ibm.com>
On 09/12/24 at 01:33pm, Sourabh Jain wrote:
> Hello Baoquan,
>
> On 11/09/24 19:50, Baoquan He wrote:
> > On 09/11/24 at 04:51pm, Sourabh Jain wrote:
> > > The following errors are observed when kexec is done with SMT=off on
> > > powerpc.
> > >
> > > [ 358.458385] Removing IBM Power 842 compression device
> > > [ 374.795734] kexec_core: Starting new kernel
> > > [ 374.795748] kexec: Waking offline cpu 1.
> > > [ 374.875695] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > [ 374.935833] kexec: Waking offline cpu 2.
> > > [ 375.015664] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > snip..
> > > [ 375.515823] kexec: Waking offline cpu 6.
> > > [ 375.635667] crash hp: kexec_trylock() failed, elfcorehdr may be inaccurate
> > > [ 375.695836] kexec: Waking offline cpu 7.
> > >
> > > To avoid kexec kernel boot failure on PowerPC, all the present CPUs that
> > > are offline are brought online during kexec. For more information, refer
> > > to commit e8e5c2155b00 ("powerpc/kexec: Fix orphaned offline CPUs across
> > > kexec"). Bringing the CPUs online triggers the crash hotplug handler,
> > > crash_handle_hotplug_event(), to update the kdump image. Since the
> > > system is on the kexec kernel boot path and the kexec lock is held, the
> > > crash_handle_hotplug_event() function fails to acquire the same lock to
> > > update the kdump image, resulting in the error messages mentioned above.
> > >
> > > To fix this, return from crash_handle_hotplug_event() without printing
> > > the error message if kexec is in progress.
> > >
> > > The same applies to the crash_check_hotplug_support() function. Return
> > > 0 if kexec is in progress because kernel is not in a position to update
> > > the kdump image.
> > LGTM, thanks.
> >
> > Acked-by: Baoquan he <bhe@redhat.com>
>
> Thank you for the Ack!
>
> My understanding is that this patch will go upstream via the linux-next
> tree, as it is based on
> https://lore.kernel.org/all/20240902034708.88EC1C4CEC2@smtp.kernel.org/
> which is already part of the linux-next master branch. - Sourabh Jain
Then you should mark it as [PATCH linux-next] in subject.
Since this patch is in generic code, it needs Andrew's help to
pick it. Let's wait and see if Andrew need a new post to change
the subject.
Thanks
Baoquan
next prev parent reply other threads:[~2024-09-12 8:35 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-11 11:21 [PATCH RESEND v2] kexec/crash: no crash update when kexec in progress Sourabh Jain
2024-09-11 11:21 ` Sourabh Jain
2024-09-11 14:20 ` Baoquan He
2024-09-11 14:20 ` Baoquan He
2024-09-12 8:03 ` Sourabh Jain
2024-09-12 8:03 ` Sourabh Jain
2024-09-12 8:35 ` Baoquan He [this message]
2024-09-12 8:35 ` Baoquan He
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=ZuKnwcqv9xQDNOrl@MiWiFi-R3L-srv \
--to=bhe@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=hbathini@linux.ibm.com \
--cc=kexec@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=sachinpb@linux.vnet.ibm.com \
--cc=sourabhjain@linux.ibm.com \
--cc=x86@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.