[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/33] hw/core: Include vaddr.h from cpu.h
|
From: |
Richard Henderson |
|
Subject: |
[PATCH 03/33] hw/core: Include vaddr.h from cpu.h |
|
Date: |
Sun, 28 Jan 2024 14:41:43 +1000 |
From: Anton Johansson <anjo@rev.ng>
cpu-common.h is only needed for vaddr
Signed-off-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20240119144024.14289-8-anjo@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/hw/core/cpu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h
index 238c02c05e..db58f12233 100644
--- a/include/hw/core/cpu.h
+++ b/include/hw/core/cpu.h
@@ -22,8 +22,8 @@
#include "hw/qdev-core.h"
#include "disas/dis-asm.h"
-#include "exec/cpu-common.h"
#include "exec/hwaddr.h"
+#include "exec/vaddr.h"
#include "exec/memattrs.h"
#include "exec/tlb-common.h"
#include "qapi/qapi-types-run-state.h"
--
2.34.1
- [PATCH 00/33] tcg patch queue, pre-pull, Richard Henderson, 2024/01/27
- [PATCH 01/33] cpu-exec: simplify jump cache management, Richard Henderson, 2024/01/27
- [PATCH 02/33] include/exec: Move vaddr defines to separate file, Richard Henderson, 2024/01/27
- [PATCH 03/33] hw/core: Include vaddr.h from cpu.h,
Richard Henderson <=
- [PATCH 04/33] target: Use vaddr in gen_intermediate_code, Richard Henderson, 2024/01/27
- [PATCH 06/33] include/exec: typedef abi_ptr to vaddr, Richard Henderson, 2024/01/27
- [PATCH 05/33] include/exec: Use vaddr in DisasContextBase for virtual addresses, Richard Henderson, 2024/01/27
- [PATCH 07/33] target: Uninline cpu_mmu_index(), Richard Henderson, 2024/01/27
- [PATCH 09/33] include/exec: Move PAGE_* macros to common header, Richard Henderson, 2024/01/27
- [PATCH 08/33] target: Uninline cpu_get_tb_cpu_state(), Richard Henderson, 2024/01/27
- [PATCH 10/33] include/exec: Move cpu_*()/cpu_env() to common header, Richard Henderson, 2024/01/27