exec/cpu: Make host pages variables / macros 'target agnostic'
"host" pages are related to the *host* not the *target*, thus the qemu_host_page_size / qemu_host_page_mask variables and the HOST_PAGE_ALIGN() / REAL_HOST_PAGE_ALIGN() macros can be moved to "exec/cpu-common.h" which is target agnostic. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: David Hildenbrand <david@redhat.com> Message-Id: <20220120000836.229419-1-f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
de47b0ff40
commit
b269a70810
@ -234,15 +234,6 @@ extern const TargetPageBits target_page;
|
|||||||
|
|
||||||
#define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE)
|
#define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE)
|
||||||
|
|
||||||
/* Using intptr_t ensures that qemu_*_page_mask is sign-extended even
|
|
||||||
* when intptr_t is 32-bit and we are aligning a long long.
|
|
||||||
*/
|
|
||||||
extern uintptr_t qemu_host_page_size;
|
|
||||||
extern intptr_t qemu_host_page_mask;
|
|
||||||
|
|
||||||
#define HOST_PAGE_ALIGN(addr) ROUND_UP((addr), qemu_host_page_size)
|
|
||||||
#define REAL_HOST_PAGE_ALIGN(addr) ROUND_UP((addr), qemu_real_host_page_size)
|
|
||||||
|
|
||||||
/* same as PROT_xxx */
|
/* same as PROT_xxx */
|
||||||
#define PAGE_READ 0x0001
|
#define PAGE_READ 0x0001
|
||||||
#define PAGE_WRITE 0x0002
|
#define PAGE_WRITE 0x0002
|
||||||
|
@ -7,6 +7,15 @@
|
|||||||
#include "exec/hwaddr.h"
|
#include "exec/hwaddr.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Using intptr_t ensures that qemu_*_page_mask is sign-extended even
|
||||||
|
* when intptr_t is 32-bit and we are aligning a long long.
|
||||||
|
*/
|
||||||
|
extern uintptr_t qemu_host_page_size;
|
||||||
|
extern intptr_t qemu_host_page_mask;
|
||||||
|
|
||||||
|
#define HOST_PAGE_ALIGN(addr) ROUND_UP((addr), qemu_host_page_size)
|
||||||
|
#define REAL_HOST_PAGE_ALIGN(addr) ROUND_UP((addr), qemu_real_host_page_size)
|
||||||
|
|
||||||
/* The CPU list lock nests outside page_(un)lock or mmap_(un)lock */
|
/* The CPU list lock nests outside page_(un)lock or mmap_(un)lock */
|
||||||
void qemu_init_cpu_list(void);
|
void qemu_init_cpu_list(void);
|
||||||
void cpu_list_lock(void);
|
void cpu_list_lock(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user