Changeset 93554 in vbox for trunk/include/VBox
- Timestamp:
- Feb 2, 2022 10:57:02 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149688
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/param.h
r93115 r93554 39 39 * @{ 40 40 */ 41 42 /** The guest page size (x86). */ 43 #define GUEST_PAGE_SIZE 0x1000 44 /** The guest page offset mask (x86). 45 * @note If one-complementing this, always put a typecast after the operator! */ 46 #define GUEST_PAGE_OFFSET_MASK 0xfff 47 /** The guest page shift (x86). */ 48 #define GUEST_PAGE_SHIFT 12 49 50 /** Host page size. */ 51 #define HOST_PAGE_SIZE PAGE_SIZE 52 /** Host page offset mask. 53 * @note If one-complementing this, always put a typecast after the operator! */ 54 #define HOST_PAGE_OFFSET_MASK PAGE_OFFSET_MASK 55 /** Host page shift. */ 56 #define HOST_PAGE_SHIFT PAGE_SHIFT 57 41 58 42 59 /** The maximum number of pages that can be allocated and mapped -
trunk/include/VBox/vmm/gmm.h
r93115 r93554 83 83 /** The allocation chunk size. */ 84 84 #define GMM_CHUNK_SIZE (1U << GMM_CHUNK_SHIFT) 85 /** The allocation chunk size in pages. */86 #define GMM_CHUNK_NUM_PAGES (1U << (GMM_CHUNK_SHIFT - PAGE_SHIFT))85 /** The allocation chunk size in (guest) pages. */ 86 #define GMM_CHUNK_NUM_PAGES (1U << (GMM_CHUNK_SHIFT - GUEST_PAGE_SHIFT)) 87 87 /** The shift factor for converting a page id into a chunk id. */ 88 #define GMM_CHUNKID_SHIFT (GMM_CHUNK_SHIFT - PAGE_SHIFT)88 #define GMM_CHUNKID_SHIFT (GMM_CHUNK_SHIFT - GUEST_PAGE_SHIFT) 89 89 /** The last valid Chunk ID value. */ 90 90 #define GMM_CHUNKID_LAST (GMM_PAGEID_LAST >> GMM_CHUNKID_SHIFT)
Note:
See TracChangeset
for help on using the changeset viewer.