[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 44/47] linux-user/hppa: Fix struct target_sigcontext layout
|
From: |
Richard Henderson |
|
Subject: |
[PULL 44/47] linux-user/hppa: Fix struct target_sigcontext layout |
|
Date: |
Tue, 3 Oct 2023 10:30:49 -0700 |
Use abi_ullong not uint64_t so that the alignment of the field
and therefore the layout of the struct is correct.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/hppa/signal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/linux-user/hppa/signal.c b/linux-user/hppa/signal.c
index bda6e54655..ec5f5412d1 100644
--- a/linux-user/hppa/signal.c
+++ b/linux-user/hppa/signal.c
@@ -25,7 +25,7 @@
struct target_sigcontext {
abi_ulong sc_flags;
abi_ulong sc_gr[32];
- uint64_t sc_fr[32];
+ abi_ullong sc_fr[32];
abi_ulong sc_iasq[2];
abi_ulong sc_iaoq[2];
abi_ulong sc_sar;
--
2.34.1
- [PULL 34/47] accel: Make accel-blocker.o target agnostic, (continued)
- [PULL 34/47] accel: Make accel-blocker.o target agnostic, Richard Henderson, 2023/10/03
- [PULL 39/47] accel/tcg: Make monitor.c a target-agnostic unit, Richard Henderson, 2023/10/03
- [PULL 30/47] accel/tcg: move ld/st helpers to ldst_common.c.inc, Richard Henderson, 2023/10/03
- [PULL 38/47] accel/tcg: Rename target-specific 'internal.h' -> 'internal-target.h', Richard Henderson, 2023/10/03
- [PULL 41/47] accel/tcg: Make cpu-exec-common.c a target agnostic unit, Richard Henderson, 2023/10/03
- [PULL 40/47] accel/tcg: Make icount.o a target agnostic unit, Richard Henderson, 2023/10/03
- [PULL 42/47] tcg: Remove argument to tcg_prologue_init, Richard Henderson, 2023/10/03
- [PULL 43/47] tcg: Split out tcg init functions to tcg/startup.h, Richard Henderson, 2023/10/03
- [PULL 45/47] build: Remove --enable-gprof, Richard Henderson, 2023/10/03
- [PULL 47/47] tcg/loongarch64: Fix buid error, Richard Henderson, 2023/10/03
- [PULL 44/47] linux-user/hppa: Fix struct target_sigcontext layout,
Richard Henderson <=
- [PULL 46/47] tests/avocado: Re-enable MIPS Malta tests (GitLab issue #1884 fixed), Richard Henderson, 2023/10/03
- Re: [PULL 00/47] tcg patch queue, Stefan Hajnoczi, 2023/10/04