Changeset 44461 in vbox
- Timestamp:
- Jan 30, 2013 12:36:50 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83465
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_KnownIssues.xml
r44452 r44461 85 85 <para><emphasis role="bold">NX (no execute, data execution 86 86 prevention)</emphasis> only works for guests running on 64-bit hosts 87 or guests running 32-bit hosts with PAE enabled and requires that87 or guests running on 32-bit hosts with PAE enabled and requires that 88 88 hardware virtualization be enabled.</para> 89 89 </listitem> -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r44452 r44461 1240 1240 CPUMSetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_NX); 1241 1241 # if RT_ARCH_X86 1242 LogRel(("NX is only supported for 64-bit guests!\n")); 1242 if ( !CPUMGetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_PAE) 1243 || !(pVM->hm.s.vmx.hostEFER & MSR_K6_EFER_NXE)) 1244 LogRel(("NX is only supported for 64-bit guests!\n")); 1243 1245 # endif 1244 1246 }
Note:
See TracChangeset
for help on using the changeset viewer.