From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 2/2] RISC-V: reloc: ignore R_RISCV_NONE relocations
Date: Wed, 26 Aug 2026 11:29:25 +0200 [thread overview]
Message-ID: <20260826092927.2362311-2-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20260826092927.2362311-1-a.fatoum@pengutronix.de>
When linking a position independent executable, the linker may reserve
a dynamic relocation slot for a reference to an absolute symbol and only
later determine that no runtime relocation is needed. The slot is not
removed, but turned into an R_RISCV_NONE entry, which must be ignored.
Assisted-by: Claude:fable-5
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
arch/riscv/lib/reloc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/riscv/lib/reloc.c b/arch/riscv/lib/reloc.c
index 71d59d4ab62e..99dde7bfffe2 100644
--- a/arch/riscv/lib/reloc.c
+++ b/arch/riscv/lib/reloc.c
@@ -45,6 +45,8 @@ static void relocate_image(unsigned long offset,
fixup = (unsigned long *)(rela->r_offset + offset);
switch (RISC_R_TYPE(rela->r_info)) {
+ case R_RISCV_NONE:
+ break;
case R_RISCV_RELATIVE:
*fixup = rela->r_addend + offset;
break;
--
2.47.3
next prev parent reply other threads:[~2026-08-26 9:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-26 9:29 [PATCH 1/2] RISC-V: configs: enable CONFIG_DEEP_PROBE_DEFAULT Ahmad Fatoum
2026-08-26 9:29 ` Ahmad Fatoum [this message]
2026-08-28 11:54 ` Sascha Hauer
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=20260826092927.2362311-2-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@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