Changeset 26949 in vbox for trunk/src/VBox
- Timestamp:
- Mar 2, 2010 2:49:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r26947 r26949 872 872 873 873 /* Currently only used by the VMM device in responds to a balloon request. */ 874 875 /* We own the IOM lock here and could cause a deadlock by waiting for another VCPU that is blocking on the IOM lock. 876 * In the SMP case we post a request packet to postpone the job. 877 */ 874 878 if (pVM->cCpus > 1) 875 879 { … … 880 884 memcpy(paPhysPageCopy, paPhysPage, cbPhysPage); 881 885 882 /* We own the IOM lock here and could cause a deadlock by waiting for another VCPU that is blocking on the IOM lock. */883 886 rc = VMR3ReqCallNoWait(pVM, VMCPUID_ANY_QUEUE, (PFNRT)pgmR3PhysFreeRamPagesHelper, 3, pVM, cPages, paPhysPageCopy); 884 887 AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.