diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-06 23:34:58 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-02-16 16:00:47 +0000 |
commit | 1701d70e15ef7337f467d1daaecee8f6d17535aa (patch) | |
tree | cb0692f18231f0ed6aa158bed7d8c742cc342a5c /target/arm/cpu.h | |
parent | 26f08561302fdc1ba18212a5812db2f48ec9eb7b (diff) | |
download | qemu-1701d70e15ef7337f467d1daaecee8f6d17535aa.zip qemu-1701d70e15ef7337f467d1daaecee8f6d17535aa.tar.gz qemu-1701d70e15ef7337f467d1daaecee8f6d17535aa.tar.bz2 |
target/arm: Restrict CPUARMState::gicv3state to sysemu
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20230206223502.25122-8-philmd@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 1c1e033..002082e 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -769,9 +769,10 @@ typedef struct CPUArchState { void *nvic; const struct arm_boot_info *boot_info; +#if !defined(CONFIG_USER_ONLY) /* Store GICv3CPUState to access from this struct */ void *gicv3state; -#if defined(CONFIG_USER_ONLY) +#else /* CONFIG_USER_ONLY */ /* For usermode syscall translation. */ bool eabi; #endif /* CONFIG_USER_ONLY */ |