From: Chris Mason <clm@meta.com>
To: Chenghao Duan <duanchenghao@kylinos.cn>, bot+bpf-ci@kernel.org
Cc: yangtiezhu@loongson.cn, rostedt@goodmis.org, mhiramat@kernel.org,
mark.rutland@arm.com, hengqi.chen@gmail.com,
chenhuacai@kernel.org, kernel@xen0n.name,
zhangtianyang@loongson.cn, masahiroy@kernel.org,
linux-kernel@vger.kernel.org, loongarch@lists.linux.dev,
bpf@vger.kernel.org, youling.tang@linux.dev,
jianghaoran@kylinos.cn, vincent.mc.li@gmail.com,
linux-trace-kernel@vger.kernel.org, ast@kernel.org,
andrii@kernel.org, daniel@iogearbox.net, martin.lau@kernel.org,
eddyz87@gmail.com, yonghong.song@linux.dev,
ihor.solodrai@linux.dev
Subject: Re: [PATCH v4 1/7] LoongArch: ftrace: Refactor register restoration in ftrace_common_return
Date: Thu, 18 Dec 2025 10:26:45 -0500 [thread overview]
Message-ID: <b30af462-4bd0-4ee0-9ec9-9607204d099c@meta.com> (raw)
In-Reply-To: <20251218012656.GA75051@chenghao-pc>
On 12/17/25 8:26 PM, Chenghao Duan wrote:
> On Wed, Dec 17, 2025 at 06:55:00AM +0000, bot+bpf-ci@kernel.org wrote:
>>> diff --git a/arch/loongarch/kernel/mcount_dyn.S b/arch/loongarch/kernel/mcount_dyn.S
>>> index d6b474ad1d5e..5729c20e5b8b 100644
>>> --- a/arch/loongarch/kernel/mcount_dyn.S
>>> +++ b/arch/loongarch/kernel/mcount_dyn.S
>>> @@ -94,7 +94,6 @@ SYM_INNER_LABEL(ftrace_graph_call, SYM_L_GLOBAL)
>>> * at the callsite, so there is no need to restore the T series regs.
>>> */
>>> ftrace_common_return:
>>> - PTR_L ra, sp, PT_R1
>>> PTR_L a0, sp, PT_R4
>>> PTR_L a1, sp, PT_R5
>>> PTR_L a2, sp, PT_R6
>>> @@ -104,12 +103,17 @@ ftrace_common_return:
>>> PTR_L a6, sp, PT_R10
>>> PTR_L a7, sp, PT_R11
>>> PTR_L fp, sp, PT_R22
>>> - PTR_L t0, sp, PT_ERA
>>> PTR_L t1, sp, PT_R13
>>> - PTR_ADDI sp, sp, PT_SIZE
>>> bnez t1, .Ldirect
>>> +
>>> + PTR_L ra, sp, PT_R1
>>> + PTR_L t0, sp, PT_ERA
>>> + PTR_ADDI sp, sp, PT_SIZE
>>> jr t0
>>> .Ldirect:
>>> + PTR_L t0, sp, PT_R1
>>> + PTR_L ra, sp, PT_ERA
>> ^^^^^^^^^^^^^^^^^^^
>> Does this break existing ftrace direct trampolines?
>>
>> Before this change, direct trampolines received:
>> ra = parent return address (from PT_R1)
>> t0 = traced function address (from PT_ERA)
>>
>> After this change, direct trampolines receive:
>> t0 = parent return address (from PT_R1)
>> ra = traced function address (from PT_ERA)
>>
>> The sample trampolines in samples/ftrace/ were written for the old
>> convention. For example, samples/ftrace/ftrace-direct.c does:
>>
>> my_tramp:
>> st.d $t0, $sp, 8 # Save what it thinks is traced func addr
>> st.d $ra, $sp, 16 # Save what it thinks is parent addr
>> bl my_direct_func
>> ld.d $t0, $sp, 8 # Restore
>> ld.d $ra, $sp, 16 # Restore
>> jr $t0 # Jump to what it thinks is traced function
>>
>> With the new convention, the sample would save parent address in the
>> t0 slot, restore it to t0, and then jump to the parent instead of the
>> traced function, skipping the traced function entirely.
>>
>> This was fixed later in commit 055e392f3be7 "LoongArch: ftrace: Adjust
>> register stack restore order in direct call trampolines" which updated
>> all the samples to match the new convention. However, any out-of-tree
>> direct trampolines written before this commit would be broken by this
>> change.
>>
>> Was this ABI break intentional? The commit message mentions matching
>> "the state when ftrace was entered" but doesn't explain why breaking
>> compatibility was necessary. RISC-V uses the opposite convention
>> (t0 = traced func, ra = parent), which the original LoongArch code
>> matched.
>
> The patch "LoongArch: ftrace: Refactor register restoration in
> ftrace_common_return" changed the conventions for t0 and ra after
> entering the direct call function, which is exactly the reason forthe
> changes made in this patch.
I'll try to adjust the kinds of ABI breakage AI comments on. It did
catch the other related changes from this series, but the additional
commentary wasn't useful.
Thanks,
Chris
next prev parent reply other threads:[~2025-12-18 15:29 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-17 6:14 [PATCH v4 0/7] Fix the failure issue of the module_attach test case Chenghao Duan
2025-12-17 6:14 ` [PATCH v4 1/7] LoongArch: ftrace: Refactor register restoration in ftrace_common_return Chenghao Duan
2025-12-17 6:55 ` bot+bpf-ci
2025-12-18 1:26 ` Chenghao Duan
2025-12-18 15:26 ` Chris Mason [this message]
2025-12-17 6:14 ` [PATCH v4 2/7] LoongArch: Enable exception fixup for specific ADE subcode Chenghao Duan
2025-12-17 6:14 ` [PATCH v4 3/7] LoongArch: BPF: Enable and fix trampoline-based tracing for module functions Chenghao Duan
2025-12-17 6:14 ` [PATCH v4 4/7] LoongArch: BPF: Save return address register ra to t0 before trampoline Chenghao Duan
2025-12-17 6:14 ` [PATCH v4 5/7] LoongArch: BPF: Adjust the jump offset of tail calls Chenghao Duan
2025-12-17 6:14 ` [PATCH v4 6/7] LoongArch: BPF: Enhance the bpf_arch_text_poke() function Chenghao Duan
2025-12-20 14:07 ` Hengqi Chen
2025-12-22 1:50 ` Chenghao Duan
2025-12-23 2:23 ` Hengqi Chen
2025-12-23 8:49 ` Huacai Chen
2025-12-17 6:14 ` [PATCH v4 7/7] LoongArch: ftrace: Adjust register stack restore order in direct call trampolines Chenghao Duan
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=b30af462-4bd0-4ee0-9ec9-9607204d099c@meta.com \
--to=clm@meta.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bot+bpf-ci@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=chenhuacai@kernel.org \
--cc=daniel@iogearbox.net \
--cc=duanchenghao@kylinos.cn \
--cc=eddyz87@gmail.com \
--cc=hengqi.chen@gmail.com \
--cc=ihor.solodrai@linux.dev \
--cc=jianghaoran@kylinos.cn \
--cc=kernel@xen0n.name \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=loongarch@lists.linux.dev \
--cc=mark.rutland@arm.com \
--cc=martin.lau@kernel.org \
--cc=masahiroy@kernel.org \
--cc=mhiramat@kernel.org \
--cc=rostedt@goodmis.org \
--cc=vincent.mc.li@gmail.com \
--cc=yangtiezhu@loongson.cn \
--cc=yonghong.song@linux.dev \
--cc=youling.tang@linux.dev \
--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;
as well as URLs for NNTP newsgroup(s).