From: Brian Mak <makb@juniper.net>
To: <kexec@lists.infradead.org>
Cc: Baoquan He <bhe@redhat.com>, Alexander Graf <graf@amazon.com>,
Brian Mak <makb@juniper.net>
Subject: [PATCH 2/3] kexec: Add DTB carryover support on x86
Date: Fri, 12 Jun 2026 15:39:44 -0700 [thread overview]
Message-ID: <20260612223945.1400554-3-makb@juniper.net> (raw)
In-Reply-To: <20260612223945.1400554-1-makb@juniper.net>
Add support for forcing the carryover of the current boot's device tree
blob on x86. This is enabled via the --force-dtb flag.
Signed-off-by: Brian Mak <makb@juniper.net>
---
kexec/kexec-syscall.h | 1 +
kexec/kexec.c | 5 +++++
kexec/kexec.h | 4 +++-
3 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/kexec/kexec-syscall.h b/kexec/kexec-syscall.h
index 77e6b81..d66bd82 100644
--- a/kexec/kexec-syscall.h
+++ b/kexec/kexec-syscall.h
@@ -129,6 +129,7 @@ static inline long kexec_file_load(int kernel_fd, int initrd_fd,
#define KEXEC_FILE_NO_INITRAMFS 0x00000004
#define KEXEC_FILE_DEBUG 0x00000008
#define KEXEC_FILE_NO_CMA 0x00000010
+#define KEXEC_FILE_FORCE_DTB 0x00000020
/* These values match the ELF architecture values.
* Unless there is a good reason that should continue to be the case.
diff --git a/kexec/kexec.c b/kexec/kexec.c
index ccdf4cd..acf9699 100644
--- a/kexec/kexec.c
+++ b/kexec/kexec.c
@@ -1103,6 +1103,8 @@ void usage(void)
" hot add/remove events, avoiding the need to reload\n"
" kdump kernel on online/offline events.\n"
" --no-cma Don't use CMA for placing kexec payloads.\n"
+ " --force-dtb Carry over the current boot's device tree blob (x86\n"
+ " only, this is forced on ARM64 and PPC).\n"
" -d, --debug Enable debugging to help spot a failure.\n"
" -S, --status Return 1 if the type (by default crash) is loaded,\n"
" 0 if not.\n"
@@ -1679,6 +1681,9 @@ int main(int argc, char *argv[])
case OPT_NO_CMA:
kexec_file_flags |= KEXEC_FILE_NO_CMA;
break;
+ case OPT_FORCE_DTB:
+ kexec_file_flags |= KEXEC_FILE_FORCE_DTB;
+ break;
default:
break;
}
diff --git a/kexec/kexec.h b/kexec/kexec.h
index a1edc1e..1489ec3 100644
--- a/kexec/kexec.h
+++ b/kexec/kexec.h
@@ -236,7 +236,8 @@ extern int file_types;
#define OPT_EXEC_LIVE_UPDATE 264
#define OPT_HOTPLUG 265
#define OPT_NO_CMA 266
-#define OPT_MAX 267
+#define OPT_FORCE_DTB 267
+#define OPT_MAX 268
#define KEXEC_OPTIONS \
{ "help", 0, 0, OPT_HELP }, \
{ "version", 0, 0, OPT_VERSION }, \
@@ -265,6 +266,7 @@ extern int file_types;
{ "print-ckr-size", 0, 0, OPT_PRINT_CKR_SIZE }, \
{ "hotplug", 0, 0, OPT_HOTPLUG }, \
{ "no-cma", 0, 0, OPT_NO_CMA }, \
+ { "force-dtb", 0, 0, OPT_FORCE_DTB }, \
#define KEXEC_OPT_STR "h?vdfixyluet:pscaS"
--
2.34.1
next prev parent reply other threads:[~2026-06-12 22:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-12 22:39 [PATCH 0/3] kexec-tools: Add new KEXEC_FILE flags Brian Mak
2026-06-12 22:39 ` [PATCH 1/3] kexec: Add support for disabling usage of CMA Brian Mak
2026-06-12 22:39 ` Brian Mak [this message]
2026-06-12 22:39 ` [PATCH 3/3] kexec: Add kexec_file_load debug print Brian Mak
2026-07-20 9:40 ` [PATCH 0/3] kexec-tools: Add new KEXEC_FILE flags Simon Horman
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=20260612223945.1400554-3-makb@juniper.net \
--to=makb@juniper.net \
--cc=bhe@redhat.com \
--cc=graf@amazon.com \
--cc=kexec@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox