From: sashiko-bot@kernel.org
To: baoquan.he@linux.dev, gregkh@linuxfoundation.org,
ruirui.yang@linux.dev, npiggin@gmail.com, liukexin@kylinos.cn,
dave.hansen@linux.intel.com, mclapinski@google.com,
ritesh.list@gmail.com, takahiro.akashi@linaro.org,
x86@kernel.org, linux-kernel@vger.kernel.org, will@kernel.org,
pratyush@kernel.org, coxu@redhat.com, mingo@redhat.com,
zhangtianyang@loongson.cn, linux-fsdevel@vger.kernel.org,
sourabhjain@linux.ibm.com, hpa@zytor.com, rafael@kernel.org,
graf@amazon.com, ruanjinjie@huawei.com, jbouron@amazon.com,
yeoreum.yun@arm.com, hbathini@linux.ibm.com,
chenhuacai@kernel.org, akpm@linux-foundation.org,
lizhengyu3@huawei.com, chleroy@kernel.org, adityag@linux.ibm.com,
dakr@kernel.org, piliu@redhat.com, pasha.tatashin@soleen.com,
linux-arm-kernel@lists.infradead.org, linux-mm@kvack.org,
ardb@kernel.org, leitao@debian.org, catalin.marinas@arm.com,
kees@kernel.org, thuth@redhat.com, blum@kernel.org,
kas@kernel.org, maddy@linux.ibm.com, james.morse@arm.com,
tglx@kernel.org, bp@alien8.d e, mark.rutland@arm.com,
driver-core@lists.linux.dev, kernel@xen0n.name,
chao.gao@intel.com, eric.devolder@oracle.com,
tangyouling@kylinos.cn, palmer@rivosinc.com,
loongarch@lists.linux.dev, bgwin@google.com,
guodongtai@kylinos.cn, rppt@kernel.org,
linuxppc-dev@lists.ozlabs.org, maqianga@uniontech.com,
seanjc@google.com, vishal.l.verma@intel.com, robh@kernel.org,
gshan@redhat.com, "Jinjie Ruan" <ruanjinjie@huawei.com>,
me@linux.beauty, sshegde@linux.ibm.com, mpe@ellerman.id.au
Cc: kexec@lists.infradead.org
Subject: Re: [PATCH v5 11/17] crash: Normalize the kexec_load elfcorehdr at load time
Date: Fri, 18 Sep 2026 10:27:41 +0000 [thread overview]
Message-ID: <20260918102742.414E21F000FF@smtp.kernel.org> (raw)
In-Reply-To: <20260918100442.3841135-12-ruanjinjie@huawei.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] kexec: elfcorehdr_updated in struct kimage is write-only and unused
--
commit 463b7b7692d8e96dc1be8ffaed1b6d0c8d298c9f
Author: Jinjie Ruan <ruanjinjie@huawei.com>
crash: Normalize the kexec_load elfcorehdr at load time
This commit changes kexec_load to normalize the elfcorehdr at load time
instead of waiting for the first crash hotplug event. By doing this while
the device_hotplug_lock can be safely taken, it allows hotplug paths to
skip CPU events safely and avoid racing with memory hotplug.
> diff --git a/arch/x86/kernel/crash.c b/arch/x86/kernel/crash.c
> index 3c9f4fbbe7ff0..f34fa8dba0288 100644
> --- a/arch/x86/kernel/crash.c
> +++ b/arch/x86/kernel/crash.c
> @@ -457,9 +457,8 @@ void arch_crash_handle_hotplug_event(struct kimage *image, void *arg)
> * possible CPUs, there is no need to update the elfcorehdr
> * for additional CPU changes.
> */
> - if ((image->file_mode || image->elfcorehdr_updated) &&
> - ((image->hp_action == KEXEC_CRASH_HP_ADD_CPU) ||
> - (image->hp_action == KEXEC_CRASH_HP_REMOVE_CPU)))
> + if (image->hp_action == KEXEC_CRASH_HP_ADD_CPU ||
> + image->hp_action == KEXEC_CRASH_HP_REMOVE_CPU)
> return;
[Severity: Low]
Does this leave elfcorehdr_updated as a write-only and unused field?
Since this patch removes the last reader of image->elfcorehdr_updated,
the field is now only written to in crash_handle_hotplug_event() and
initialized in kernel/kexec_core.c:
kernel/crash_core.c:crash_handle_hotplug_event() {
...
image->hp_action = KEXEC_CRASH_HP_NONE;
image->elfcorehdr_updated = true;
...
}
Should the elfcorehdr_updated field be completely removed from struct kimage
in include/linux/kexec.h along with its assignments to avoid dead code and
structure overhead?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260918100442.3841135-1-ruanjinjie@huawei.com?part=11
next prev parent reply other threads:[~2026-09-18 10:27 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-18 10:04 [PATCH v5 00/17] crash: Rework and add arm64 crash hotplug support Jinjie Ruan
2026-09-18 10:04 ` [PATCH v5 01/17] kexec: Fix CMA segment address translation with non-zero text_offset Jinjie Ruan
2026-09-18 10:22 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 02/17] kexec: Record allocated CMA pages to fix release size mismatch Jinjie Ruan
2026-09-18 10:16 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 03/17] kexec: Extract kexec_free_segment_cma() from kimage_free_cma() Jinjie Ruan
2026-09-18 10:18 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 04/17] arm64: kexec_file: Fix CMA page leaks in segment placement retry loops Jinjie Ruan
2026-09-18 10:15 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 05/17] arm64: kexec_file: Fix elf_headers memory leak in retry loop Jinjie Ruan
2026-09-18 10:16 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 06/17] LoongArch: kexec_file: Fix CMA page leaks in segment placement retry loops Jinjie Ruan
2026-09-18 10:16 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 07/17] LoongArch: kexec_file: Fix elf_headers memory leak in retry loop Jinjie Ruan
2026-09-18 10:21 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 08/17] LoongArch: kexec_file: Fix a modified_cmdline leak Jinjie Ruan
2026-09-18 10:18 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 09/17] x86/crash: Fix massive out-of-bounds write on 32-bit Highmem Jinjie Ruan
2026-09-18 10:16 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 10/17] crash: Extract crash_get_memory_ranges() helper Jinjie Ruan
2026-09-18 10:11 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 11/17] crash: Normalize the kexec_load elfcorehdr at load time Jinjie Ruan
2026-09-18 10:27 ` sashiko-bot [this message]
2026-09-18 10:04 ` [PATCH v5 12/17] crash: Fix TOCTOU race in crash memory range collection Jinjie Ruan
2026-09-18 10:34 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 13/17] crash: Assert device_hotplug_lock in crash_get_memory_ranges_nolock() Jinjie Ruan
2026-09-18 10:26 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 14/17] elf: Introduce elf64_phdr_size() helper Jinjie Ruan
2026-09-18 10:25 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 15/17] crash: Introduce crash_extra_elfcorehdr_size() helper Jinjie Ruan
2026-09-18 10:31 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 16/17] arm64: kexec_file: Simplify load_other_segments() Jinjie Ruan
2026-09-18 10:27 ` sashiko-bot
2026-09-18 10:04 ` [PATCH v5 17/17] arm64: crash: Add crash hotplug support Jinjie Ruan
2026-09-18 10:36 ` sashiko-bot
2026-09-18 10:41 ` [PATCH v5 00/17] crash: Rework and add arm64 " Breno Leitao
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=20260918102742.414E21F000FF@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=adityag@linux.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=ardb@kernel.org \
--cc=baoquan.he@linux.dev \
--cc=blum@kernel.org \
--cc=bp@alien8.d \
--cc=catalin.marinas@arm.com \
--cc=chenhuacai@kernel.org \
--cc=chleroy@kernel.org \
--cc=coxu@redhat.com \
--cc=dakr@kernel.org \
--cc=dave.hansen@linux.intel.com \
--cc=graf@amazon.com \
--cc=gregkh@linuxfoundation.org \
--cc=hbathini@linux.ibm.com \
--cc=hpa@zytor.com \
--cc=james.morse@arm.com \
--cc=jbouron@amazon.com \
--cc=kas@kernel.org \
--cc=kees@kernel.org \
--cc=kexec@lists.infradead.org \
--cc=leitao@debian.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=liukexin@kylinos.cn \
--cc=lizhengyu3@huawei.com \
--cc=maddy@linux.ibm.com \
--cc=mclapinski@google.com \
--cc=mingo@redhat.com \
--cc=npiggin@gmail.com \
--cc=pasha.tatashin@soleen.com \
--cc=piliu@redhat.com \
--cc=pratyush@kernel.org \
--cc=rafael@kernel.org \
--cc=ritesh.list@gmail.com \
--cc=ruanjinjie@huawei.com \
--cc=ruirui.yang@linux.dev \
--cc=sashiko-reviews@lists.linux.dev \
--cc=sourabhjain@linux.ibm.com \
--cc=takahiro.akashi@linaro.org \
--cc=tglx@kernel.org \
--cc=thuth@redhat.com \
--cc=will@kernel.org \
--cc=x86@kernel.org \
--cc=yeoreum.yun@arm.com \
--cc=zhangtianyang@loongson.cn \
/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
all inboxes | Powered by JetHome®