VirtualBox

Changeset 80174 in vbox for trunk/src/VBox/VMM/include


Ignore:
Timestamp:
Aug 7, 2019 9:41:39 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
132615
Message:

VMM: Kicking out raw-mode - More virt handler leftovers. bugref:9517

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/PGMInternal.h

    r80172 r80174  
    11161116#define PGM_PAGE_HAS_ACTIVE_PHYSICAL_HANDLERS(a_pPage) \
    11171117    ( PGM_PAGE_GET_HNDL_PHYS_STATE(a_pPage) >= PGM_PAGE_HNDL_PHYS_STATE_WRITE )
    1118 
    1119 
    1120 /** @name Virtual Access Handler State values (PGMPAGE::u2HandlerVirtStateY).
    1121  *
    1122  * @remarks The values are assigned in order of priority, so we can calculate
    1123  *          the correct state for a page with different handlers installed.
    1124  * @{ */
    1125 /** No handler installed. */
    1126 #define PGM_PAGE_HNDL_VIRT_STATE_NONE           0
    1127 /* 1 is reserved so the lineup is identical with the physical ones. */
    1128 /** Write access is monitored. */
    1129 #define PGM_PAGE_HNDL_VIRT_STATE_WRITE          2
    1130 /** All access is monitored. */
    1131 #define PGM_PAGE_HNDL_VIRT_STATE_ALL            3
    1132 /** @} */
    1133 
    1134 /**
    1135  * Gets the virtual access handler state of a page.
    1136  * @returns PGM_PAGE_HNDL_VIRT_STATE_* value.
    1137  * @param   a_pPage     Pointer to the physical guest page tracking structure.
    1138  */
    1139 #define PGM_PAGE_GET_HNDL_VIRT_STATE(a_pPage)   ( (a_pPage)->s.u2HandlerVirtStateY )
    1140 
    1141 /**
    1142  * Sets the virtual access handler state of a page.
    1143  * @param   a_pPage     Pointer to the physical guest page tracking structure.
    1144  * @param   a_uState    The new state value.
    1145  */
    1146 #define PGM_PAGE_SET_HNDL_VIRT_STATE(a_pPage, a_uState) \
    1147     do { (a_pPage)->s.u2HandlerVirtStateY = (a_uState); } while (0)
    1148 
    1149 /**
    1150  * Same as PGM_PAGE_HAS_ANY_VIRTUAL_HANDLERS - can't disable pages in
    1151  * virtual handlers.
    1152  * @returns true/false
    1153  * @param   a_pPage     Pointer to the physical guest page tracking structure.
    1154  */
    1155 #define PGM_PAGE_HAS_ACTIVE_VIRTUAL_HANDLERS(a_pPage) \
    1156     PGM_PAGE_HAS_ANY_VIRTUAL_HANDLERS(a_pPage)
    11571118
    11581119
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette