Changeset 80281 in vbox for trunk/src/VBox/VMM/VMMR3/GMM.cpp
- Timestamp:
- Aug 15, 2019 7:29:37 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132736
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GMM.cpp
r80191 r80281 24 24 #include <VBox/vmm/gmm.h> 25 25 #include <VBox/vmm/vmm.h> 26 #include <VBox/vmm/vm .h>26 #include <VBox/vmm/vmcc.h> 27 27 #include <VBox/sup.h> 28 28 #include <VBox/err.h> … … 309 309 310 310 /* Must be callable from any thread, so can't use VMMR3CallR0. */ 311 int rc = SUPR3CallVMMR0Ex( pVM->pVMR0, NIL_VMCPUID, VMMR0_DO_GMM_QUERY_HYPERVISOR_MEM_STATS, 0, &Req.Hdr);311 int rc = SUPR3CallVMMR0Ex(VMCC_GET_VMR0_FOR_CALL(pVM), NIL_VMCPUID, VMMR0_DO_GMM_QUERY_HYPERVISOR_MEM_STATS, 0, &Req.Hdr); 312 312 if (rc == VINF_SUCCESS) 313 313 { … … 444 444 445 445 /* Must be callable from any thread, so can't use VMMR3CallR0. */ 446 int rc = SUPR3CallVMMR0Ex( pVM->pVMR0, NIL_VMCPUID, VMMR0_DO_GMM_FIND_DUPLICATE_PAGE, 0, &Req.Hdr);446 int rc = SUPR3CallVMMR0Ex(VMCC_GET_VMR0_FOR_CALL(pVM), NIL_VMCPUID, VMMR0_DO_GMM_FIND_DUPLICATE_PAGE, 0, &Req.Hdr); 447 447 if (rc == VINF_SUCCESS) 448 448 return Req.fDuplicate;
Note:
See TracChangeset
for help on using the changeset viewer.