2020-05-02 15:52:05 +02:00
|
|
|
From 923d25365fbdff17fa4c8c2883960be07c3dad56 Mon Sep 17 00:00:00 2001
|
2017-05-05 10:43:59 +02:00
|
|
|
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
Date: Fri, 5 May 2017 09:07:15 +0200
|
|
|
|
Subject: [PATCH] user-exec: fix usage of mcontext structure on ARM/uClibc
|
|
|
|
|
|
|
|
user-exec.c has some conditional code to decide how to use the
|
|
|
|
mcontext structure. Unfortunately, since uClibc defines __GLIBC__, but
|
|
|
|
with old versions of __GLIBC__ and __GLIBC_MINOR__, an old code path
|
|
|
|
gets used, which doesn't apply to uClibc.
|
|
|
|
|
|
|
|
Fix this by excluding __UCLIBC__, which ensures we fall back to the
|
|
|
|
general case of using uc_mcontext.arm_pc, which works fine with
|
|
|
|
uClibc.
|
|
|
|
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
---
|
2020-05-02 15:52:05 +02:00
|
|
|
accel/tcg/user-exec.c | 2 +-
|
2017-05-05 10:43:59 +02:00
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2018-04-27 17:40:54 +02:00
|
|
|
diff --git a/accel/tcg/user-exec.c b/accel/tcg/user-exec.c
|
2020-12-11 23:47:10 +01:00
|
|
|
index 4ebe25461a..0496674fbd 100644
|
2018-04-27 17:40:54 +02:00
|
|
|
--- a/accel/tcg/user-exec.c
|
|
|
|
+++ b/accel/tcg/user-exec.c
|
2021-05-07 19:01:01 +02:00
|
|
|
@@ -540,7 +540,7 @@ int cpu_signal_handler(int host_signum, void *pinfo,
|
2017-05-05 10:43:59 +02:00
|
|
|
|
|
|
|
#if defined(__NetBSD__)
|
|
|
|
pc = uc->uc_mcontext.__gregs[_REG_R15];
|
|
|
|
-#elif defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
|
|
|
|
+#elif defined(__GLIBC__) && !defined(__UCLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
|
|
|
|
pc = uc->uc_mcontext.gregs[R15];
|
|
|
|
#else
|
|
|
|
pc = uc->uc_mcontext.arm_pc;
|
|
|
|
--
|
2020-05-02 15:52:05 +02:00
|
|
|
2.25.3
|
2017-05-05 10:43:59 +02:00
|
|
|
|