Searched hist:"785 f945bd5ace415419d0fe4944fa5fce1bc1865" (Results 1 – 1 of 1) sorted by relevance
/qemu/target/i386/hvf/ |
H A D | hvf.c | 785f945bd5ace415419d0fe4944fa5fce1bc1865 Tue Apr 29 06:24:51 UTC 2025 Wei Liu <wei.liu@kernel.org> target/i386/hvf: fix a compilation error
Include exec/target_page.h to fix the following build error.
x86_64-softmmu.a.p/target_i386_hvf_hvf.c.o -c ../target/i386/hvf/hvf.c ../target/i386/hvf/hvf.c:139:49: error: use of undeclared identifier 'TARGET_PAGE_SIZE' 139 | uint64_t dirty_page_start = gpa & ~(TARGET_PAGE_SIZE - 1u); | ^ ../target/i386/hvf/hvf.c:141:45: error: use of undeclared identifier 'TARGET_PAGE_SIZE' 141 | hv_vm_protect(dirty_page_start, TARGET_PAGE_SIZE, | ^
Signed-off-by: Wei Liu <wei.liu@kernel.org> Link: https://lore.kernel.org/r/aBBws1ikCDfyC0RI@liuwe-devbox-ubuntu-v2.tail21d00.ts.net Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|