diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-11-14 02:13:01 +0100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-03-08 07:56:14 -0800 |
| commit | 2809e2d6c4570ee9c04c3f846893c8cc2b966bf8 (patch) | |
| tree | 7f56f78825b99779af22c6ca3f76bcd7d07dbb96 /target | |
| parent | a9f5ab9279bba8832712197dcf6053941d3d5d47 (diff) | |
| download | focaccia-qemu-2809e2d6c4570ee9c04c3f846893c8cc2b966bf8.tar.gz focaccia-qemu-2809e2d6c4570ee9c04c3f846893c8cc2b966bf8.zip | |
exec: Declare tlb_set_page_with_attrs() in 'exec/cputlb.h'
Move CPU TLB related methods to "exec/cputlb.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20241114011310.3615-17-philmd@linaro.org>
Diffstat (limited to 'target')
| -rw-r--r-- | target/i386/tcg/system/excp_helper.c | 2 | ||||
| -rw-r--r-- | target/microblaze/helper.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/i386/tcg/system/excp_helper.c b/target/i386/tcg/system/excp_helper.c index 864e3140e3..6876329de2 100644 --- a/target/i386/tcg/system/excp_helper.c +++ b/target/i386/tcg/system/excp_helper.c @@ -20,7 +20,7 @@ #include "qemu/osdep.h" #include "cpu.h" #include "exec/cpu_ldst.h" -#include "exec/exec-all.h" +#include "exec/cputlb.h" #include "exec/page-protection.h" #include "tcg/helper-tcg.h" diff --git a/target/microblaze/helper.c b/target/microblaze/helper.c index 5d3259ce31..27fc929bee 100644 --- a/target/microblaze/helper.c +++ b/target/microblaze/helper.c @@ -20,7 +20,7 @@ #include "qemu/osdep.h" #include "cpu.h" -#include "exec/exec-all.h" +#include "exec/cputlb.h" #include "exec/page-protection.h" #include "qemu/host-utils.h" #include "exec/log.h" |