Changeset 14754
- Timestamp:
- 11/28/08 03:49:59 (1 month ago)
- Files:
-
- trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r14753 r14754 432 432 { 433 433 unsigned iGst = off / sizeof(X86PDE); // ASSUMING 32-bit guest paging! 434 unsigned iShwPdpt = iGst %256;435 unsigned iShw = iGst /2;434 unsigned iShwPdpt = iGst / 256; 435 unsigned iShw = (iGst % 256) * 2; 436 436 Assert(pPage->idx == PGMPOOL_IDX_PAE_PD); 437 437 PPGMPOOLPAGE pPage2 = pPage + 1 + iShwPdpt;

