Changeset 92292 in vbox for trunk/include
- Timestamp:
- Nov 9, 2021 1:44:24 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gmm.h
r92248 r92292 89 89 /** The last valid Chunk ID value. */ 90 90 #define GMM_CHUNKID_LAST (GMM_PAGEID_LAST >> GMM_CHUNKID_SHIFT) 91 /** The last valid Page ID value. 92 * The current limit is 2^28 - 1, or almost 1TB if you like. 93 * The constraints are currently dictated by PGMPAGE. */ 94 #define GMM_PAGEID_LAST (RT_BIT_32(28) - 1) 91 /** The last valid Page ID value. */ 92 #define GMM_PAGEID_LAST UINT32_C(0xfffffff0) 95 93 /** Mask out the page index from the Page ID. */ 96 94 #define GMM_PAGEID_IDX_MASK ((1U << GMM_CHUNKID_SHIFT) - 1)
Note:
See TracChangeset
for help on using the changeset viewer.