[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/24] linux-user/aarch64/mte: Include missing 'user/abitypes.h'
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 08/24] linux-user/aarch64/mte: Include missing 'user/abitypes.h' header |
Date: |
Thu, 14 Nov 2024 02:12:53 +0100 |
abi_long type is defined in "user/abitypes.h".
Include it in order to avoid when refactoring:
linux-user/aarch64/mte_user_helper.h:30:42: error: unknown type name
‘abi_long’; did you mean ‘u_long’?
30 | void arm_set_mte_tcf0(CPUArchState *env, abi_long value);
| ^~~~~~~~
| u_long
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
linux-user/aarch64/mte_user_helper.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/linux-user/aarch64/mte_user_helper.h
b/linux-user/aarch64/mte_user_helper.h
index 8685e5175a..0c53abda22 100644
--- a/linux-user/aarch64/mte_user_helper.h
+++ b/linux-user/aarch64/mte_user_helper.h
@@ -9,6 +9,8 @@
#ifndef AARCH64_MTE_USER_HELPER_H
#define AARCH64_MTE USER_HELPER_H
+#include "user/abitypes.h"
+
#ifndef PR_MTE_TCF_SHIFT
# define PR_MTE_TCF_SHIFT 1
# define PR_MTE_TCF_NONE (0UL << PR_MTE_TCF_SHIFT)
--
2.45.2
- Re: [PATCH 04/24] accel/tcg: Include missing 'exec/translation-block.h' header, (continued)
- [PATCH 05/24] target/i386/helper: Include missing 'exec/translation-block.h' header, Philippe Mathieu-Daudé, 2024/11/13
- [PATCH 06/24] target/rx/cpu: Include missing 'exec/translation-block.h' header, Philippe Mathieu-Daudé, 2024/11/13
- [PATCH 07/24] system/watchpoint: Include missing 'exec/cpu-all.h' header, Philippe Mathieu-Daudé, 2024/11/13
- [PATCH 08/24] linux-user/aarch64/mte: Include missing 'user/abitypes.h' header,
Philippe Mathieu-Daudé <=
- [PATCH 09/24] target/arm/mte: Restrict 'exec/ram_addr.h' to system emulation, Philippe Mathieu-Daudé, 2024/11/13
- [PATCH 10/24] target/arm/cpu: Restrict cpu_untagged_addr() to user emulation, Philippe Mathieu-Daudé, 2024/11/13
- [PATCH 11/24] exec: Introduce 'user/guest-host.h' header, Philippe Mathieu-Daudé, 2024/11/13