VirtualBox

Changeset 1504 in vbox for trunk


Ignore:
Timestamp:
Mar 15, 2007 10:21:39 AM (18 years ago)
Author:
vboxsync
Message:

Handle shadow page out of sync situation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMGC/SELMGC.cpp

    r1503 r1504  
    3030#include "SELMInternal.h"
    3131#include <VBox/vm.h>
     32#include <VBox/pgm.h>
    3233
    3334#include <VBox/param.h>
     
    298299                {
    299300                    rc = MMGCRamRead(pVM, &pVM->selm.s.Tss.redirBitmap[i*8], (uint8_t *)pGuestTSS + offRedirBitmap + i*8, 8);
     301                    if (VBOX_FAILURE(rc))
     302                    {
     303                        /* Shadow page table might be out of sync */
     304                        rc = PGMPrefetchPage(pVM, (uint8_t *)pGuestTSS + offRedirBitmap + i*8);
     305                        if (VBOX_FAILURE(rc))
     306                        {
     307                            AssertMsg(rc == VINF_SUCCESS, ("PGMPrefetchPage %VGv failed with %Vrc\n", (uint8_t *)pGuestTSS + offRedirBitmap + i*8, rc));
     308                            break;
     309                        }
     310                        rc = MMGCRamRead(pVM, &pVM->selm.s.Tss.redirBitmap[i*8], (uint8_t *)pGuestTSS + offRedirBitmap + i*8, 8);
     311                    }
    300312                    AssertMsg(rc == VINF_SUCCESS, ("MMGCRamRead %VGv failed with %Vrc\n", (uint8_t *)pGuestTSS + offRedirBitmap + i*8, rc));
    301313                }
    302314                STAM_COUNTER_INC(&pVM->selm.s.StatGCWriteGuestTSSRedir);
    303315            }
    304 
    305316        }
    306317        STAM_COUNTER_INC(&pVM->selm.s.StatGCWriteGuestTSSHandled);
Note: See TracChangeset for help on using the changeset viewer.

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