* [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra
@ 2025-02-06 19:28 Juhan Jin
2025-02-26 14:27 ` Alexandre Ghiti
2025-03-27 3:24 ` patchwork-bot+linux-riscv
0 siblings, 2 replies; 3+ messages in thread
From: Juhan Jin @ 2025-02-06 19:28 UTC (permalink / raw)
To: guoren, guoren, rostedt, mhiramat, mark.rutland, paul.walmsley,
palmer, aou
Cc: linux-kernel, linux-trace-kernel, linux-riscv, Juhan Jin
This patch adds parentheses to parameters caller and callee of macros
make_call_t0 and make_call_ra. Every existing invocation of these two
macros uses a single variable for each argument, so the absence of the
parentheses seems okay. However, future invocations might use more
complex expressions as arguments. For example, a future invocation might
look like this: make_call_t0(a - b, c, call). Without parentheses in the
macro definition, the macro invocation expands to:
...
unsigned int offset = (unsigned long) c - (unsigned long) a - b;
...
which is clearly wrong.
The use of parentheses ensures arguments are correctly evaluated and
potentially saves future users of make_call_t0 and make_call_ra debugging
trouble.
Fixes: 6724a76cff85 ("riscv: ftrace: Reduce the detour code size to half")
Signed-off-by: Juhan Jin <juhan.jin@foxmail.com>
---
arch/riscv/include/asm/ftrace.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/riscv/include/asm/ftrace.h b/arch/riscv/include/asm/ftrace.h
index c4721ce44ca4..2636ee00ccf0 100644
--- a/arch/riscv/include/asm/ftrace.h
+++ b/arch/riscv/include/asm/ftrace.h
@@ -92,7 +92,7 @@ struct dyn_arch_ftrace {
#define make_call_t0(caller, callee, call) \
do { \
unsigned int offset = \
- (unsigned long) callee - (unsigned long) caller; \
+ (unsigned long) (callee) - (unsigned long) (caller); \
call[0] = to_auipc_t0(offset); \
call[1] = to_jalr_t0(offset); \
} while (0)
@@ -108,7 +108,7 @@ do { \
#define make_call_ra(caller, callee, call) \
do { \
unsigned int offset = \
- (unsigned long) callee - (unsigned long) caller; \
+ (unsigned long) (callee) - (unsigned long) (caller); \
call[0] = to_auipc_ra(offset); \
call[1] = to_jalr_ra(offset); \
} while (0)
base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b
--
2.39.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra
2025-02-06 19:28 [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra Juhan Jin
@ 2025-02-26 14:27 ` Alexandre Ghiti
2025-03-27 3:24 ` patchwork-bot+linux-riscv
1 sibling, 0 replies; 3+ messages in thread
From: Alexandre Ghiti @ 2025-02-26 14:27 UTC (permalink / raw)
To: Juhan Jin, guoren, guoren, rostedt, mhiramat, mark.rutland,
paul.walmsley, palmer, aou
Cc: linux-kernel, linux-trace-kernel, linux-riscv
Hi Juhan,
On 06/02/2025 20:28, Juhan Jin wrote:
> This patch adds parentheses to parameters caller and callee of macros
> make_call_t0 and make_call_ra. Every existing invocation of these two
> macros uses a single variable for each argument, so the absence of the
> parentheses seems okay. However, future invocations might use more
> complex expressions as arguments. For example, a future invocation might
> look like this: make_call_t0(a - b, c, call). Without parentheses in the
> macro definition, the macro invocation expands to:
>
> ...
> unsigned int offset = (unsigned long) c - (unsigned long) a - b;
> ...
>
> which is clearly wrong.
>
> The use of parentheses ensures arguments are correctly evaluated and
> potentially saves future users of make_call_t0 and make_call_ra debugging
> trouble.
>
> Fixes: 6724a76cff85 ("riscv: ftrace: Reduce the detour code size to half")
> Signed-off-by: Juhan Jin <juhan.jin@foxmail.com>
> ---
> arch/riscv/include/asm/ftrace.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/riscv/include/asm/ftrace.h b/arch/riscv/include/asm/ftrace.h
> index c4721ce44ca4..2636ee00ccf0 100644
> --- a/arch/riscv/include/asm/ftrace.h
> +++ b/arch/riscv/include/asm/ftrace.h
> @@ -92,7 +92,7 @@ struct dyn_arch_ftrace {
> #define make_call_t0(caller, callee, call) \
> do { \
> unsigned int offset = \
> - (unsigned long) callee - (unsigned long) caller; \
> + (unsigned long) (callee) - (unsigned long) (caller); \
> call[0] = to_auipc_t0(offset); \
> call[1] = to_jalr_t0(offset); \
> } while (0)
> @@ -108,7 +108,7 @@ do { \
> #define make_call_ra(caller, callee, call) \
> do { \
> unsigned int offset = \
> - (unsigned long) callee - (unsigned long) caller; \
> + (unsigned long) (callee) - (unsigned long) (caller); \
> call[0] = to_auipc_ra(offset); \
> call[1] = to_jalr_ra(offset); \
> } while (0)
>
> base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b
Probably not worth going into fixes since the problem is not around for
now, but that's still a good catch:
Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Thanks,
Alex
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra
2025-02-06 19:28 [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra Juhan Jin
2025-02-26 14:27 ` Alexandre Ghiti
@ 2025-03-27 3:24 ` patchwork-bot+linux-riscv
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+linux-riscv @ 2025-03-27 3:24 UTC (permalink / raw)
To: Juhan Jin
Cc: linux-riscv, guoren, guoren, rostedt, mhiramat, mark.rutland,
paul.walmsley, palmer, aou, linux-kernel, linux-trace-kernel
Hello:
This patch was applied to riscv/linux.git (for-next)
by Alexandre Ghiti <alexghiti@rivosinc.com>:
On Thu, 6 Feb 2025 13:28:36 -0600 you wrote:
> This patch adds parentheses to parameters caller and callee of macros
> make_call_t0 and make_call_ra. Every existing invocation of these two
> macros uses a single variable for each argument, so the absence of the
> parentheses seems okay. However, future invocations might use more
> complex expressions as arguments. For example, a future invocation might
> look like this: make_call_t0(a - b, c, call). Without parentheses in the
> macro definition, the macro invocation expands to:
>
> [...]
Here is the summary with links:
- riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra
https://git.kernel.org/riscv/c/5f1a58ed91a0
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-27 3:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-06 19:28 [PATCH] riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra Juhan Jin
2025-02-26 14:27 ` Alexandre Ghiti
2025-03-27 3:24 ` patchwork-bot+linux-riscv
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox