[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 14/25] linux-user/mips: Tidy install_sigtramp
From: |
Richard Henderson |
Subject: |
[PATCH v4 14/25] linux-user/mips: Tidy install_sigtramp |
Date: |
Mon, 27 Sep 2021 22:00:28 -0400 |
The return value is constant 0, and unused as well -- change to void.
Drop inline marker. Change tramp type to uint32_t* for clarity.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/mips/signal.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/linux-user/mips/signal.c b/linux-user/mips/signal.c
index d174b3453c..64072779b9 100644
--- a/linux-user/mips/signal.c
+++ b/linux-user/mips/signal.c
@@ -87,10 +87,8 @@ struct target_rt_sigframe {
};
/* Install trampoline to jump back from signal handler */
-static inline int install_sigtramp(unsigned int *tramp, unsigned int syscall)
+static void install_sigtramp(uint32_t *tramp, unsigned int syscall)
{
- int err = 0;
-
/*
* Set up the return code ...
*
@@ -100,7 +98,6 @@ static inline int install_sigtramp(unsigned int *tramp,
unsigned int syscall)
__put_user(0x24020000 + syscall, tramp + 0);
__put_user(0x0000000c , tramp + 1);
- return err;
}
static inline void setup_sigcontext(CPUMIPSState *regs,
--
2.25.1
- [PATCH v4 00/25] linux-user: Move signal trampolines to new page, Richard Henderson, 2021/09/27
- [PATCH v4 06/25] linux-user/alpha: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 03/25] linux-user/arm: Drop v1 signal frames, Richard Henderson, 2021/09/27
- [PATCH v4 05/25] linux-user/arm: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 02/25] linux-user/aarch64: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 01/25] linux-user: Add infrastructure for a signal trampoline page, Richard Henderson, 2021/09/27
- [PATCH v4 11/25] linux-user/x86_64: Raise SIGSEGV if SA_RESTORER not set, Richard Henderson, 2021/09/27
- [PATCH v4 10/25] linux-user/i386: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 14/25] linux-user/mips: Tidy install_sigtramp,
Richard Henderson <=
- [PATCH v4 12/25] linux-user/m68k: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 16/25] linux-user/nios2: Document non-use of setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 18/25] linux-user/ppc: Simplify encode_trampoline, Richard Henderson, 2021/09/27
- [PATCH v4 07/25] linux-user/cris: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 09/25] linux-user/hppa: Document non-use of setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 13/25] linux-user/microblaze: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 19/25] linux-user/ppc: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 22/25] linux-user/sh4: Implement setup_sigtramp, Richard Henderson, 2021/09/27
- [PATCH v4 23/25] linux-user/sparc: Implement setup_sigtramp, Richard Henderson, 2021/09/27