VirtualBox

Changeset 97815 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Dec 15, 2022 7:39:35 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154895
Message:

VMM: Don't assume a teleportation operation when VMR3LoadFromStream() is used because it might be used for fully encrypted VMs as well letting VMR3TeleportedAndNotFullyResumedYet() giving a wrong result

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/VM.cpp

    r96407 r97815  
    19341934 * @param   pfnProgress     Progress callback. Optional.
    19351935 * @param   pvProgressUser  User argument for the progress callback.
     1936 * @param   fTeleporting    Flag whether this call is part of a teleportation operation.
    19361937 *
    19371938 * @thread      Any thread.
     
    19401941 */
    19411942VMMR3DECL(int) VMR3LoadFromStream(PUVM pUVM, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
    1942                                   PFNVMPROGRESS pfnProgress, void *pvProgressUser)
    1943 {
    1944     LogFlow(("VMR3LoadFromStream: pUVM=%p pStreamOps=%p pvStreamOpsUser=%p pfnProgress=%p pvProgressUser=%p\n",
    1945              pUVM, pStreamOps, pvStreamOpsUser, pfnProgress, pvProgressUser));
     1943                                  PFNVMPROGRESS pfnProgress, void *pvProgressUser, bool fTeleporting)
     1944{
     1945    LogFlow(("VMR3LoadFromStream: pUVM=%p pStreamOps=%p pvStreamOpsUser=%p pfnProgress=%p pvProgressUser=%p fTeleporting=%RTbool\n",
     1946             pUVM, pStreamOps, pvStreamOpsUser, pfnProgress, pvProgressUser, fTeleporting));
    19461947
    19471948    /*
     
    19571958    int rc = VMR3ReqCallWaitU(pUVM, 0 /*idDstCpu*/, (PFNRT)vmR3Load, 7,
    19581959                              pUVM, (uintptr_t)NULL /*pszFilename*/, pStreamOps, pvStreamOpsUser, pfnProgress,
    1959                               pvProgressUser, true /*fTeleporting*/);
     1960                              pvProgressUser, fTeleporting);
    19601961    LogFlow(("VMR3LoadFromStream: returns %Rrc\n", rc));
    19611962    return rc;
Note: See TracChangeset for help on using the changeset viewer.

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