- Timestamp:
- Oct 8, 2015 4:51:02 PM (9 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r58120 r58121 1102 1102 RTGCPHYS GCPhys = 0; 1103 1103 1104 LogRel(("HM: Using VT-x implementation 2.0 !\n"));1104 LogRel(("HM: Using VT-x implementation 2.0\n")); 1105 1105 LogRel(("HM: Host CR4 = %#RX64\n", pVM->hm.s.vmx.u64HostCr4)); 1106 1106 LogRel(("HM: Host EFER = %#RX64\n", pVM->hm.s.vmx.u64HostEfer)); … … 1371 1371 1372 1372 LogRel(("HM: Supports VMCS EFER fields = %RTbool\n", pVM->hm.s.vmx.fSupportsVmcsEfer)); 1373 LogRel(("HM: Enabled VMX !\n"));1373 LogRel(("HM: Enabled VMX\n")); 1374 1374 pVM->hm.s.vmx.fEnabled = true; 1375 1375 … … 1404 1404 if (pVM->hm.s.fNestedPaging) 1405 1405 { 1406 LogRel(("HM: Enabled Nested paging\n"));1406 LogRel(("HM: Enabled nested paging\n")); 1407 1407 if (pVM->hm.s.vmx.enmFlushEpt == VMXFLUSHEPT_SINGLE_CONTEXT) 1408 1408 LogRel(("HM: EPT flush type = VMXFLUSHEPT_SINGLE_CONTEXT\n")); … … 1415 1415 1416 1416 if (pVM->hm.s.vmx.fUnrestrictedGuest) 1417 LogRel(("HM: Enabled Unrestricted guest execution\n"));1417 LogRel(("HM: Enabled unrestricted guest execution\n")); 1418 1418 1419 1419 #if HC_ARCH_BITS == 64 … … 1422 1422 /* Use large (2 MB) pages for our EPT PDEs where possible. */ 1423 1423 PGMSetLargePageUsage(pVM, true); 1424 LogRel(("HM: Enabled Large page support\n"));1424 LogRel(("HM: Enabled large page support\n")); 1425 1425 } 1426 1426 #endif … … 1465 1465 Log(("pVM->hm.s.svm.fSupported = %d\n", pVM->hm.s.svm.fSupported)); 1466 1466 1467 LogRel(("HM: Using AMD-V implementation 2.0 !\n"));1467 LogRel(("HM: Using AMD-V implementation 2.0\n")); 1468 1468 1469 1469 uint32_t u32Family; … … 1530 1530 } 1531 1531 1532 LogRel(("HM: Enabled AMD-V\n"));1532 LogRel(("HM: Enabled SVM\n")); 1533 1533 pVM->hm.s.svm.fEnabled = true; 1534 1534 1535 1535 if (pVM->hm.s.fNestedPaging) 1536 1536 { 1537 LogRel(("HM: Enabled Nested paging\n"));1537 LogRel(("HM: Enabled nested paging\n")); 1538 1538 1539 1539 /* … … 1544 1544 { 1545 1545 PGMSetLargePageUsage(pVM, true); 1546 LogRel(("HM: Enabled Large page support\n"));1546 LogRel(("HM: Enabled large page support\n")); 1547 1547 } 1548 1548 #endif -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r57482 r58121 541 541 /* Log whether thread-context hooks are used (on Linux this can depend on how the kernel is configured). */ 542 542 if (pVM->aCpus[0].vmm.s.hCtxHook != NIL_RTTHREADCTXHOOK) 543 LogRel(("VMM: Thread-context hooks enabled!\n"));543 LogRel(("VMM: Enabled thread-context hooks\n")); 544 544 else 545 545 LogRel(("VMM: Thread-context hooks unavailable\n"));
Note:
See TracChangeset
for help on using the changeset viewer.