[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 13/14] linux-user/sparc: Don't restore %g7 in sparc64_set_context(
From: |
Laurent Vivier |
Subject: |
[PULL 13/14] linux-user/sparc: Don't restore %g7 in sparc64_set_context() |
Date: |
Fri, 18 Dec 2020 11:24:06 +0100 |
From: Peter Maydell <peter.maydell@linaro.org>
The kernel does not restore the g7 register in sparc64_set_context();
neither should we. (We still save it in sparc64_get_context().)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201106152738.26026-4-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
linux-user/sparc/signal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/linux-user/sparc/signal.c b/linux-user/sparc/signal.c
index 58b48afe29c9..d92e096cafa7 100644
--- a/linux-user/sparc/signal.c
+++ b/linux-user/sparc/signal.c
@@ -447,7 +447,7 @@ void sparc64_set_context(CPUSPARCState *env)
__get_user(env->gregs[4], (&(*grp)[SPARC_MC_G4]));
__get_user(env->gregs[5], (&(*grp)[SPARC_MC_G5]));
__get_user(env->gregs[6], (&(*grp)[SPARC_MC_G6]));
- __get_user(env->gregs[7], (&(*grp)[SPARC_MC_G7]));
+ /* Skip g7 as that's the thread register in userspace */
/*
* Note that unlike the kernel, we didn't need to mess with the
--
2.29.2
- [PULL 02/14] linux-user/elfload: Move GET_FEATURE macro out of get_elf_hwcap() body, (continued)
- [PULL 02/14] linux-user/elfload: Move GET_FEATURE macro out of get_elf_hwcap() body, Laurent Vivier, 2020/12/18
- [PULL 05/14] linux-user/elfload: Introduce MIPS GET_FEATURE_REG_EQU() macro, Laurent Vivier, 2020/12/18
- [PULL 10/14] linux-user: Add most IFTUN ioctls, Laurent Vivier, 2020/12/18
- [PULL 03/14] linux-user/elfload: Rename MIPS GET_FEATURE() as GET_FEATURE_INSN(), Laurent Vivier, 2020/12/18
- [PULL 09/14] linux-user: Implement copy_file_range, Laurent Vivier, 2020/12/18
- [PULL 06/14] linux-user/elfload: Update HWCAP bits from linux 5.7, Laurent Vivier, 2020/12/18
- [PULL 11/14] linux-user/sparc: Correct sparc64_get/set_context() FPU handling, Laurent Vivier, 2020/12/18
- [PULL 12/14] linux-user/sparc: Remove unneeded checks of 'err' from sparc64_get_context(), Laurent Vivier, 2020/12/18
- [PULL 14/14] linux-user/sparc: Handle tstate in sparc64_get/set_context(), Laurent Vivier, 2020/12/18
- [PULL 08/14] docs/user: Display linux-user binaries nicely, Laurent Vivier, 2020/12/18
- [PULL 13/14] linux-user/sparc: Don't restore %g7 in sparc64_set_context(),
Laurent Vivier <=
- [PULL 07/14] linux-user: Add support for MIPS Loongson 2F/3A, Laurent Vivier, 2020/12/18
- Re: [PULL 00/14] Linux user for 6.0 patches, Peter Maydell, 2020/12/31