From: Richard Henderson Date: Sat, 20 Aug 2022 00:02:36 +0000 (-0700) Subject: include/exec: Introduce TARGET_PAGE_ENTRY_EXTRA X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8c6953cf034cec0998815961e5ec70c9de15da6e;p=qemu.git include/exec: Introduce TARGET_PAGE_ENTRY_EXTRA Allow the target to cache items from the guest page tables. Reviewed-by: Alex Bennée Reviewed-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h index 5e12cc1854..67239b4e5e 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -163,6 +163,15 @@ typedef struct CPUTLBEntryFull { /* @lg_page_size contains the log2 of the page size. */ uint8_t lg_page_size; + + /* + * Allow target-specific additions to this structure. + * This may be used to cache items from the guest cpu + * page tables for later use by the implementation. + */ +#ifdef TARGET_PAGE_ENTRY_EXTRA + TARGET_PAGE_ENTRY_EXTRA +#endif } CPUTLBEntryFull; /*