Changeset 12899 in vbox
- Timestamp:
- Oct 2, 2008 8:25:45 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37304
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwacc_vmx.h
r12871 r12899 63 63 uint64_t u1Execute : 1; 64 64 /** Reserved (must be 0). */ 65 uint64_t u 4Reserved : 4;65 uint64_t u5Reserved : 5; 66 66 /** Available for software. */ 67 67 uint64_t u4Available : 4; 68 68 /** Physical address of the next level (PD). Restricted by maximum physical address width of the cpu. */ 69 uint64_t u40PhysAddr : 36;69 uint64_t u40PhysAddr : 40; 70 70 /** Availabe for software. */ 71 71 uint64_t u12Available : 12; … … 102 102 uint64_t u1Execute : 1; 103 103 /** Reserved (must be 0). */ 104 uint64_t u 4Reserved : 4;104 uint64_t u5Reserved : 5; 105 105 /** Available for software. */ 106 106 uint64_t u4Available : 4; 107 107 /** Physical address of the next level (PD). Restricted by maximum physical address width of the cpu. */ 108 uint64_t u40PhysAddr : 36;108 uint64_t u40PhysAddr : 40; 109 109 /** Availabe for software. */ 110 110 uint64_t u12Available : 12; … … 162 162 uint64_t u4Available : 4; 163 163 /** Physical address of page table. Restricted by maximum physical address width of the cpu. */ 164 uint64_t u40PhysAddr : 36;164 uint64_t u40PhysAddr : 40; 165 165 /** Availabe for software. */ 166 166 uint64_t u12Available : 12; … … 191 191 uint64_t u9Reserved : 9; 192 192 /** Physical address of the 2MB page. Restricted by maximum physical address width of the cpu. */ 193 uint64_t u3 2PhysAddr : 27;193 uint64_t u31PhysAddr : 31; 194 194 /** Availabe for software. */ 195 195 uint64_t u12Available : 12; … … 248 248 uint64_t u5Available : 5; 249 249 /** Physical address of page. Restricted by maximum physical address width of the cpu. */ 250 uint64_t u40PhysAddr : 36;250 uint64_t u40PhysAddr : 40; 251 251 /** Availabe for software. */ 252 252 uint64_t u12Available : 12;
Note:
See TracChangeset
for help on using the changeset viewer.