From: Peter Zijlstra <peterz@infradead.org>
To: Heiko Carstens <hca@linux.ibm.com>
Cc: Josh Poimboeuf <jpoimboe@kernel.org>,
Ingo Molnar <mingo@kernel.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] bug: Let report_but_entry() provide the correct bugaddr
Date: Mon, 8 Dec 2025 21:27:05 +0100 [thread overview]
Message-ID: <20251208202705.GH3707891@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <20251208200658.3431511-1-hca@linux.ibm.com>
On Mon, Dec 08, 2025 at 09:06:58PM +0100, Heiko Carstens wrote:
> report_bug_entry() always provides zero for bugaddr but could easily
> extract the correct address from the provided bug_entry. Just do that to
> have proper warning messages.
>
> E.g. adding an artificial
>
> void foo(void) { WARN_ONCE(1, "bar"); }
>
> function generates this warning message:
> WARNING: arch/s390/kernel/setup.c:1017 at 0x0, CPU#0: swapper/0/0
> ^^^
>
> With the correct bug address this changes to:
> WARNING: arch/s390/kernel/setup.c:1017 at foo+0x1c/0x40, CPU#0: swapper/0/0
> ^^^^^^^^^^^^^
Indeed. I'll stick this with that W=1 build thing.
Thanks!
> Fixes: 7d2c27a0ec5e ("bug: Add report_bug_entry()")
> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
> ---
> lib/bug.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/bug.c b/lib/bug.c
> index edd9041f89f3..c6f691f3d42d 100644
> --- a/lib/bug.c
> +++ b/lib/bug.c
> @@ -262,7 +262,7 @@ enum bug_trap_type report_bug_entry(struct bug_entry *bug, struct pt_regs *regs)
> bool rcu = false;
>
> rcu = warn_rcu_enter();
> - ret = __report_bug(bug, 0, regs);
> + ret = __report_bug(bug, bug_addr(bug), regs);
> warn_rcu_exit(rcu);
>
> return ret;
> --
> 2.51.0
>
next prev parent reply other threads:[~2025-12-08 20:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-08 20:06 [PATCH] bug: Let report_but_entry() provide the correct bugaddr Heiko Carstens
2025-12-08 20:27 ` Peter Zijlstra [this message]
2025-12-09 9:17 ` [tip: core/urgent] " tip-bot2 for Heiko Carstens
2025-12-12 9:10 ` tip-bot2 for Heiko Carstens
2025-12-12 9:29 ` [tip: core/urgent] bug: Let report_bug_entry() " tip-bot2 for Heiko Carstens
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=20251208202705.GH3707891@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=hca@linux.ibm.com \
--cc=jpoimboe@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox