VMX is in FeatureNames, but SVM is in ExtraFeatureNames This meant that detection *always* failed for SVM (AMD) Thanks to user @hilbertxia Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
15 lines
277 B
Go
15 lines
277 B
Go
// +build 386 amd64
|
|
|
|
package virtualbox
|
|
|
|
import "github.com/intel-go/cpuid"
|
|
|
|
// IsVTXDisabled checks if VT-x is disabled in the CPU.
|
|
func (d *Driver) IsVTXDisabled() bool {
|
|
if cpuid.HasFeature(cpuid.VMX) || cpuid.HasExtraFeature(cpuid.SVM) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|