VirtualBox

Changeset 24354 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 4, 2009 7:24:09 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
54377
Message:

Main: deleteSnapshot() fixes; should mostly work now

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/MachineImpl.cpp

    r24348 r24354  
    64406440        if (    mData->mMachineState == MachineState_Saved
    64416441             || mData->mMachineState == MachineState_Restoring
     6442                // when deleting a snapshot we may or may not have a saved state in the current state,
     6443                // so let's not assert here please
     6444             || (    (mData->mMachineState == MachineState_DeletingSnapshot)
     6445                  && (!mSSData->mStateFilePath.isEmpty())
     6446                )
    64426447           )
    64436448        {
  • trunk/src/VBox/Main/SnapshotImpl.cpp

    r24345 r24354  
    21112111                Assert(pAttach->medium());
    21122112                ComObjPtr<Medium> pHD = pAttach->medium();
    2113                 AutoReadLock mlock(pHD);
     2113                // do not lock, prepareDiscared() has a write lock which will hang otherwise
    21142114
    21152115                Medium::MergeChain *chain = NULL;
     
    22922292    }
    22932293
    2294     if (FAILED(rc))
    2295     {
    2296         /* saveSettings() below needs a VirtualBox write lock and we need to
    2297          * leave this object's lock to do this to follow the {parent-child}
    2298          * locking rule. This is the last chance to do that while we are
    2299          * still in a protective state which allows us to temporarily leave
    2300          * the lock */
    2301         alock.unlock();
    2302         AutoWriteLock vboxLock(mParent);
    2303         alock.lock();
    2304 
    2305         /* preserve existing error info */
     2294    alock.unlock();
     2295
     2296    // whether we were successful or not, we need to set the machine
     2297    // state and save the machine settings;
     2298    {
     2299        // preserve existing error info so that the result can
     2300        // be properly reported to the progress object below
    23062301        ErrorInfoKeeper eik;
    23072302
    2308         /* restore the machine state */
     2303        // restore the machine state that was saved when the
     2304        // task was started
    23092305        setMachineState(aTask.machineStateBackup);
    23102306        updateMachineStateOnClient();
    23112307
    23122308        if (settingsChanged)
     2309        {
     2310            // saveSettings needs VirtualBox write lock in addition to our own
     2311            // (parent -> child locking order!)
     2312            AutoWriteLock vboxLock(mParent);
     2313            alock.lock();
     2314
    23132315            saveSettings(SaveS_InformCallbacksAnyway);
    2314 
    2315         /* set the result (this will try to fetch current error info on failure) */
    2316         aTask.pProgress->notifyComplete(rc);
    2317     }
     2316        }
     2317    }
     2318
     2319    // report the result (this will try to fetch current error info on failure)
     2320    aTask.pProgress->notifyComplete(rc);
    23182321
    23192322    if (SUCCEEDED(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