* [PATCH v3 0/2] kexec: fix probe error codes and error propagation
@ 2026-08-21 13:49 Mukesh Pilaniya
2026-08-21 13:49 ` [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch Mukesh Pilaniya
2026-08-21 13:49 ` [PATCH v3 2/2] kexec: fix error propagation in kexec_image_probe_default() Mukesh Pilaniya
0 siblings, 2 replies; 7+ messages in thread
From: Mukesh Pilaniya @ 2026-08-21 13:49 UTC (permalink / raw)
To: Catalin Marinas, Will Deacon, Mark Rutland, Huacai Chen,
WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport,
Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo
Cc: linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec,
Mukesh Pilaniya, Bradley Morgan
While debugging a misleading error on s390x where kexec -s reported
"syscall kexec_file_load not available" instead of the actual EINVAL
from a kernel command line that exceeded the architecture limit, we
found that some kexec image probe functions return -EINVAL instead of
-ENOEXEC for format mismatches, and kexec_image_probe_default() has a
bug where it returns whatever the last loader returned rather than
always returning -ENOEXEC when no loader matches.
Patch 1 fixes all probe functions to return -ENOEXEC when they do not
recognize the image format.
Patch 2 fixes kexec_image_probe_default() to distinguish format
mismatches (-ENOEXEC) from real errors (e.g. -ENOMEM), propagating
real errors immediately and only continuing to the next loader on
-ENOEXEC.
kexec-tools patch:
https://lore.kernel.org/all/20260814075329.30203-1-mpilaniy@redhat.com/
Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com>
---
Changes in v3:
- Patch 2: rename ret to err and change ret == 0 to !err as suggested by Mike.
- Link to v2: https://patch.msgid.link/20260819-mpilaniy-v2-0-95e929ede0e5@redhat.com
Changes in v2:
- Added patch 2 to fix error propagation in kexec_image_probe_default(),
as suggested by Pratyush Yadav.
- Link to v1: https://patch.msgid.link/20260813-mpilaniy-v1-1-777d4d0e30f7@redhat.com
To: Catalin Marinas <catalin.marinas@arm.com>
To: Will Deacon <will@kernel.org>
To: Mark Rutland <mark.rutland@arm.com>
To: Huacai Chen <chenhuacai@kernel.org>
To: WANG Xuerui <kernel@xen0n.name>
To: Paul Walmsley <pjw@kernel.org>
To: Palmer Dabbelt <palmer@dabbelt.com>
To: Albert Ou <aou@eecs.berkeley.edu>
To: Alexandre Ghiti <alex@ghiti.fr>
To: Andrew Morton <akpm@linux-foundation.org>
To: Baoquan He <baoquan.he@linux.dev>
To: Mike Rapoport <rppt@kernel.org>
To: Pasha Tatashin <pasha.tatashin@soleen.com>
To: Pratyush Yadav <pratyush@kernel.org>
To: Philipp Rudo <prudo@redhat.com>
To: Tao Liu <ltao@redhat.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Cc: loongarch@lists.linux.dev
Cc: linux-riscv@lists.infradead.org
Cc: kexec@lists.infradead.org
---
Mukesh Pilaniya (2):
kexec: return -ENOEXEC from image probe functions on mismatch
kexec: fix error propagation in kexec_image_probe_default()
arch/arm64/kernel/kexec_image.c | 4 ++--
arch/loongarch/kernel/kexec_efi.c | 4 ++--
arch/riscv/kernel/kexec_image.c | 4 ++--
kernel/kexec_elf.c | 4 ++--
kernel/kexec_file.c | 12 +++++++-----
5 files changed, 15 insertions(+), 13 deletions(-)
---
base-commit: dd8c49a14f169d58e7a07a2c96fb588f3456efa0
change-id: 20260813-mpilaniy-ffb0cc92c313
Best regards,
--
Mukesh Pilaniya <mpilaniy@redhat.com>
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch 2026-08-21 13:49 [PATCH v3 0/2] kexec: fix probe error codes and error propagation Mukesh Pilaniya @ 2026-08-21 13:49 ` Mukesh Pilaniya 2026-08-24 14:07 ` Will Deacon 2026-08-21 13:49 ` [PATCH v3 2/2] kexec: fix error propagation in kexec_image_probe_default() Mukesh Pilaniya 1 sibling, 1 reply; 7+ messages in thread From: Mukesh Pilaniya @ 2026-08-21 13:49 UTC (permalink / raw) To: Catalin Marinas, Will Deacon, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo Cc: linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Mukesh Pilaniya, Bradley Morgan Several kexec_file_load() image probe functions return -EINVAL when they do not recognize the image format. A probe function that rejects an image should return -ENOEXEC to indicate that the image is not a recognized executable format. -EINVAL implies a problem with the syscall parameters, not with image recognition. kexec_image_probe_default() iterates through registered loaders and returns the last probe's error code to the caller. That error propagates as the kexec_file_load() return value to userspace. Returning -EINVAL from a probe when no loader matches is semantically incorrect and misleads userspace about the nature of the failure. Return -ENOEXEC from all probe functions and their helpers when the image format is not recognized. Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> Reviewed-by: Philipp Rudo <prudo@redhat.com> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> Reviewed-by: Bradley Morgan <include@grrlz.net> --- arch/arm64/kernel/kexec_image.c | 4 ++-- arch/loongarch/kernel/kexec_efi.c | 4 ++-- arch/riscv/kernel/kexec_image.c | 4 ++-- kernel/kexec_elf.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/arm64/kernel/kexec_image.c b/arch/arm64/kernel/kexec_image.c index b70f4df15a1a..101259874d44 100644 --- a/arch/arm64/kernel/kexec_image.c +++ b/arch/arm64/kernel/kexec_image.c @@ -25,10 +25,10 @@ static int image_probe(const char *kernel_buf, unsigned long kernel_len) (const struct arm64_image_header *)(kernel_buf); if (!h || (kernel_len < sizeof(*h))) - return -EINVAL; + return -ENOEXEC; if (memcmp(&h->magic, ARM64_IMAGE_MAGIC, sizeof(h->magic))) - return -EINVAL; + return -ENOEXEC; return 0; } diff --git a/arch/loongarch/kernel/kexec_efi.c b/arch/loongarch/kernel/kexec_efi.c index 5ee78ebb1546..28a1d0420ba3 100644 --- a/arch/loongarch/kernel/kexec_efi.c +++ b/arch/loongarch/kernel/kexec_efi.c @@ -24,12 +24,12 @@ static int efi_kexec_probe(const char *kernel_buf, unsigned long kernel_len) if (!h || (kernel_len < sizeof(*h))) { kexec_dprintk("No LoongArch image header.\n"); - return -EINVAL; + return -ENOEXEC; } if (!loongarch_header_check_dos_sig(h)) { kexec_dprintk("No LoongArch PE image header.\n"); - return -EINVAL; + return -ENOEXEC; } return 0; diff --git a/arch/riscv/kernel/kexec_image.c b/arch/riscv/kernel/kexec_image.c index 51dc89259f16..963a25f5b55b 100644 --- a/arch/riscv/kernel/kexec_image.c +++ b/arch/riscv/kernel/kexec_image.c @@ -20,7 +20,7 @@ static int image_probe(const char *kernel_buf, unsigned long kernel_len) const struct riscv_image_header *h = (const struct riscv_image_header *)kernel_buf; if (!h || kernel_len < sizeof(*h)) - return -EINVAL; + return -ENOEXEC; /* According to Documentation/arch/riscv/boot-image-header.rst, * use "magic2" field to check when version >= 0.2. @@ -28,7 +28,7 @@ static int image_probe(const char *kernel_buf, unsigned long kernel_len) if (h->version >= RISCV_HEADER_VERSION && memcmp(&h->magic2, RISCV_IMAGE_MAGIC2, sizeof(h->magic2))) - return -EINVAL; + return -ENOEXEC; return 0; } diff --git a/kernel/kexec_elf.c b/kernel/kexec_elf.c index 3a5c25b2adc9..89a444a00693 100644 --- a/kernel/kexec_elf.c +++ b/kernel/kexec_elf.c @@ -172,7 +172,7 @@ static int elf_read_ehdr(const char *buf, size_t len, struct elfhdr *ehdr) default: pr_debug("Unknown ELF class.\n"); - return -EINVAL; + return -ENOEXEC; } return elf_is_ehdr_sane(ehdr, len) ? 0 : -ENOEXEC; @@ -236,7 +236,7 @@ static int elf_read_phdr(const char *buf, size_t len, default: pr_debug("Unknown ELF class.\n"); - return -EINVAL; + return -ENOEXEC; } return elf_is_phdr_sane(phdr, len) ? 0 : -ENOEXEC; -- Git-155) ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch 2026-08-21 13:49 ` [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch Mukesh Pilaniya @ 2026-08-24 14:07 ` Will Deacon 2026-08-25 5:13 ` Mukesh Pilaniya 0 siblings, 1 reply; 7+ messages in thread From: Will Deacon @ 2026-08-24 14:07 UTC (permalink / raw) To: Mukesh Pilaniya Cc: Catalin Marinas, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo, linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Bradley Morgan On Fri, Aug 21, 2026 at 07:19:57PM +0530, Mukesh Pilaniya wrote: > Several kexec_file_load() image probe functions return -EINVAL when > they do not recognize the image format. A probe function that rejects > an image should return -ENOEXEC to indicate that the image is not a > recognized executable format. -EINVAL implies a problem with the > syscall parameters, not with image recognition. > > kexec_image_probe_default() iterates through registered loaders and > returns the last probe's error code to the caller. That error > propagates as the kexec_file_load() return value to userspace. > Returning -EINVAL from a probe when no loader matches is semantically > incorrect and misleads userspace about the nature of the failure. > > Return -ENOEXEC from all probe functions and their helpers when the > image format is not recognized. > > Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> > Reviewed-by: Philipp Rudo <prudo@redhat.com> > Reviewed-by: Pratyush Yadav <pratyush@kernel.org> > Reviewed-by: Bradley Morgan <include@grrlz.net> > --- > arch/arm64/kernel/kexec_image.c | 4 ++-- > arch/loongarch/kernel/kexec_efi.c | 4 ++-- > arch/riscv/kernel/kexec_image.c | 4 ++-- > kernel/kexec_elf.c | 4 ++-- > 4 files changed, 8 insertions(+), 8 deletions(-) Hmm, so after this patch, are there actually any implementations of .probe() that return anything other than 0 or -ENOEXEC? I couldn't spot any after a quick look. Will ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch 2026-08-24 14:07 ` Will Deacon @ 2026-08-25 5:13 ` Mukesh Pilaniya 2026-08-25 15:14 ` Will Deacon 0 siblings, 1 reply; 7+ messages in thread From: Mukesh Pilaniya @ 2026-08-25 5:13 UTC (permalink / raw) To: Will Deacon Cc: Catalin Marinas, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo, linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Bradley Morgan Hi Will, On 24/08/26 7:37 pm, Will Deacon wrote: > On Fri, Aug 21, 2026 at 07:19:57PM +0530, Mukesh Pilaniya wrote: >> Several kexec_file_load() image probe functions return -EINVAL when >> they do not recognize the image format. A probe function that rejects >> an image should return -ENOEXEC to indicate that the image is not a >> recognized executable format. -EINVAL implies a problem with the >> syscall parameters, not with image recognition. >> >> kexec_image_probe_default() iterates through registered loaders and >> returns the last probe's error code to the caller. That error >> propagates as the kexec_file_load() return value to userspace. >> Returning -EINVAL from a probe when no loader matches is semantically >> incorrect and misleads userspace about the nature of the failure. >> >> Return -ENOEXEC from all probe functions and their helpers when the >> image format is not recognized. >> >> Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> >> Reviewed-by: Philipp Rudo <prudo@redhat.com> >> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> >> Reviewed-by: Bradley Morgan <include@grrlz.net> >> --- >> arch/arm64/kernel/kexec_image.c | 4 ++-- >> arch/loongarch/kernel/kexec_efi.c | 4 ++-- >> arch/riscv/kernel/kexec_image.c | 4 ++-- >> kernel/kexec_elf.c | 4 ++-- >> 4 files changed, 8 insertions(+), 8 deletions(-) > > Hmm, so after this patch, are there actually any implementations of .probe() > that return anything other than 0 or -ENOEXEC? I couldn't spot any after > a quick look. > > Willkexec_elf_probe() can return -ENOMEM if memory allocation (kzalloc()) fails inside elf_read_phdrs(). This behavior was previously discussed in the first patch of this series [1]. [1] https://lore.kernel.org/all/0d7acb43-2eb4-44ec-9bfb-b89440afc605@redhat.com/#t -- Regards, Mukesh Pilaniya ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch 2026-08-25 5:13 ` Mukesh Pilaniya @ 2026-08-25 15:14 ` Will Deacon 2026-08-26 15:51 ` Mukesh Pilaniya 0 siblings, 1 reply; 7+ messages in thread From: Will Deacon @ 2026-08-25 15:14 UTC (permalink / raw) To: Mukesh Pilaniya Cc: Catalin Marinas, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo, linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Bradley Morgan On Tue, Aug 25, 2026 at 10:43:48AM +0530, Mukesh Pilaniya wrote: > On 24/08/26 7:37 pm, Will Deacon wrote: > > On Fri, Aug 21, 2026 at 07:19:57PM +0530, Mukesh Pilaniya wrote: > >> Several kexec_file_load() image probe functions return -EINVAL when > >> they do not recognize the image format. A probe function that rejects > >> an image should return -ENOEXEC to indicate that the image is not a > >> recognized executable format. -EINVAL implies a problem with the > >> syscall parameters, not with image recognition. > >> > >> kexec_image_probe_default() iterates through registered loaders and > >> returns the last probe's error code to the caller. That error > >> propagates as the kexec_file_load() return value to userspace. > >> Returning -EINVAL from a probe when no loader matches is semantically > >> incorrect and misleads userspace about the nature of the failure. > >> > >> Return -ENOEXEC from all probe functions and their helpers when the > >> image format is not recognized. > >> > >> Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> > >> Reviewed-by: Philipp Rudo <prudo@redhat.com> > >> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> > >> Reviewed-by: Bradley Morgan <include@grrlz.net> > >> --- > >> arch/arm64/kernel/kexec_image.c | 4 ++-- > >> arch/loongarch/kernel/kexec_efi.c | 4 ++-- > >> arch/riscv/kernel/kexec_image.c | 4 ++-- > >> kernel/kexec_elf.c | 4 ++-- > >> 4 files changed, 8 insertions(+), 8 deletions(-) > > > > Hmm, so after this patch, are there actually any implementations of .probe() > > that return anything other than 0 or -ENOEXEC? I couldn't spot any after > > a quick look. > > > > Willkexec_elf_probe() can return -ENOMEM if memory allocation (kzalloc()) > fails inside elf_read_phdrs(). This behavior was previously discussed in > the first patch of this series [1]. Fair enough, but I'd have thought it would be easier to special-case the one -ENOMEM path instead of changing all the backends to return -ENOEXEC all over the place (and hoping people don't start returning -EINVAL again in future). Will ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch 2026-08-25 15:14 ` Will Deacon @ 2026-08-26 15:51 ` Mukesh Pilaniya 0 siblings, 0 replies; 7+ messages in thread From: Mukesh Pilaniya @ 2026-08-26 15:51 UTC (permalink / raw) To: Will Deacon Cc: Catalin Marinas, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo, linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Bradley Morgan Hi Will, On 25/08/26 8:44 pm, Will Deacon wrote: > On Tue, Aug 25, 2026 at 10:43:48AM +0530, Mukesh Pilaniya wrote: >> On 24/08/26 7:37 pm, Will Deacon wrote: >>> On Fri, Aug 21, 2026 at 07:19:57PM +0530, Mukesh Pilaniya wrote: >>>> Several kexec_file_load() image probe functions return -EINVAL when >>>> they do not recognize the image format. A probe function that rejects >>>> an image should return -ENOEXEC to indicate that the image is not a >>>> recognized executable format. -EINVAL implies a problem with the >>>> syscall parameters, not with image recognition. >>>> >>>> kexec_image_probe_default() iterates through registered loaders and >>>> returns the last probe's error code to the caller. That error >>>> propagates as the kexec_file_load() return value to userspace. >>>> Returning -EINVAL from a probe when no loader matches is semantically >>>> incorrect and misleads userspace about the nature of the failure. >>>> >>>> Return -ENOEXEC from all probe functions and their helpers when the >>>> image format is not recognized. >>>> >>>> Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> >>>> Reviewed-by: Philipp Rudo <prudo@redhat.com> >>>> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> >>>> Reviewed-by: Bradley Morgan <include@grrlz.net> >>>> --- >>>> arch/arm64/kernel/kexec_image.c | 4 ++-- >>>> arch/loongarch/kernel/kexec_efi.c | 4 ++-- >>>> arch/riscv/kernel/kexec_image.c | 4 ++-- >>>> kernel/kexec_elf.c | 4 ++-- >>>> 4 files changed, 8 insertions(+), 8 deletions(-) >>> >>> Hmm, so after this patch, are there actually any implementations of .probe() >>> that return anything other than 0 or -ENOEXEC? I couldn't spot any after >>> a quick look. >>> >>> Willkexec_elf_probe() can return -ENOMEM if memory allocation (kzalloc()) >> fails inside elf_read_phdrs(). This behavior was previously discussed in >> the first patch of this series [1]. > > Fair enough, but I'd have thought it would be easier to special-case the > one -ENOMEM path instead of changing all the backends to return > -ENOEXEC all over the place (and hoping people don't start returning > -EINVAL again in future). > > Will Returning -EINVAL from a probe on format mismatch is semantically wrong on its own — independent of how kexec_image_probe_default() handles the return value. x86 bzImage64_probe() and s390 s390_elf_probe() already return -ENOEXEC correctly; this patch just brings the remaining backends in line. Also IMHO, checking for err != -ENOEXEC in kexec_image_probe_default() is more robust than special-casing err == -ENOMEM. -- Regards, Mukesh Pilaniya ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v3 2/2] kexec: fix error propagation in kexec_image_probe_default() 2026-08-21 13:49 [PATCH v3 0/2] kexec: fix probe error codes and error propagation Mukesh Pilaniya 2026-08-21 13:49 ` [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch Mukesh Pilaniya @ 2026-08-21 13:49 ` Mukesh Pilaniya 1 sibling, 0 replies; 7+ messages in thread From: Mukesh Pilaniya @ 2026-08-21 13:49 UTC (permalink / raw) To: Catalin Marinas, Will Deacon, Mark Rutland, Huacai Chen, WANG Xuerui, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin, Pratyush Yadav, Tao Liu, Philipp Rudo Cc: linux-arm-kernel, linux-kernel, loongarch, linux-riscv, kexec, Mukesh Pilaniya kexec_image_probe_default() overwrites ret with each loader's probe return value and returns whatever the last loader returned when no probe matches. The error code reaching userspace depends on whichever loader happens to be last in kexec_file_loaders[]. Only continue to the next loader when a probe returns -ENOEXEC. Propagate any other error such as -ENOMEM immediately. Return -ENOEXEC only when all loaders have been tried and none matched. Suggested-by: Pratyush Yadav <pratyush@kernel.org> Signed-off-by: Mukesh Pilaniya <mpilaniy@redhat.com> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> Reviewed-by: Philipp Rudo <prudo@redhat.com> --- kernel/kexec_file.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/kernel/kexec_file.c b/kernel/kexec_file.c index 59fb9d71e9d8..c11a815e2235 100644 --- a/kernel/kexec_file.c +++ b/kernel/kexec_file.c @@ -68,17 +68,19 @@ int kexec_image_probe_default(struct kimage *image, void *buf, unsigned long buf_len) { const struct kexec_file_ops * const *fops; - int ret = -ENOEXEC; for (fops = &kexec_file_loaders[0]; *fops && (*fops)->probe; ++fops) { - ret = (*fops)->probe(buf, buf_len); - if (!ret) { + int err = (*fops)->probe(buf, buf_len); + + if (!err) { image->fops = *fops; - return ret; + return 0; } + if (err != -ENOEXEC) + return err; } - return ret; + return -ENOEXEC; } static void *kexec_image_load_default(struct kimage *image) -- Git-155) ^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-26 15:51 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-21 13:49 [PATCH v3 0/2] kexec: fix probe error codes and error propagation Mukesh Pilaniya 2026-08-21 13:49 ` [PATCH v3 1/2] kexec: return -ENOEXEC from image probe functions on mismatch Mukesh Pilaniya 2026-08-24 14:07 ` Will Deacon 2026-08-25 5:13 ` Mukesh Pilaniya 2026-08-25 15:14 ` Will Deacon 2026-08-26 15:51 ` Mukesh Pilaniya 2026-08-21 13:49 ` [PATCH v3 2/2] kexec: fix error propagation in kexec_image_probe_default() Mukesh Pilaniya
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox