Symbol: KVM_X86_SEV_ES_VM
arch/x86/kvm/svm/sev.c
2934
case KVM_X86_SEV_ES_VM:
arch/x86/kvm/svm/sev.c
3192
vm_types |= BIT(KVM_X86_SEV_ES_VM);
arch/x86/kvm/svm/sev.c
3205
sev_str_feature_state(sev_es_supported, vm_types & BIT(KVM_X86_SEV_ES_VM)),
arch/x86/kvm/svm/sev.c
590
vm_type = (argp->id == KVM_SEV_INIT ? KVM_X86_SEV_VM : KVM_X86_SEV_ES_VM);
arch/x86/kvm/svm/sev.c
596
if (vm_type == KVM_X86_SEV_ES_VM)
arch/x86/kvm/svm/sev.c
610
kvm->arch.vm_type != KVM_X86_SEV_ES_VM &&
drivers/crypto/ccp/sev-dev.c
2971
supported_vm_types |= BIT(KVM_X86_SEV_ES_VM);
drivers/crypto/ccp/sev-dev.c
2979
supported_vm_types &= ~BIT(KVM_X86_SEV_ES_VM);
tools/testing/selftests/kvm/include/x86/sev.h
41
return is_sev_snp_vm(vm) || vm->type == KVM_X86_SEV_ES_VM;
tools/testing/selftests/kvm/lib/x86/sev.c
69
TEST_ASSERT_EQ(vm->type, KVM_X86_SEV_ES_VM);
tools/testing/selftests/kvm/x86/sev_dbg_test.c
116
test_sev_dbg(KVM_X86_SEV_ES_VM, SEV_POLICY_ES);
tools/testing/selftests/kvm/x86/sev_init2_tests.c
145
have_sev_es = kvm_check_cap(KVM_CAP_VM_TYPES) & BIT(KVM_X86_SEV_ES_VM);
tools/testing/selftests/kvm/x86/sev_init2_tests.c
158
test_flags(KVM_X86_SEV_ES_VM);
tools/testing/selftests/kvm/x86/sev_init2_tests.c
164
test_features(KVM_X86_SEV_ES_VM, supported_vmsa_features);
tools/testing/selftests/kvm/x86/sev_init2_tests.c
85
test_init2(KVM_X86_SEV_ES_VM, &(struct kvm_sev_init){});
tools/testing/selftests/kvm/x86/sev_migrate_tests.c
420
have_sev_es = kvm_check_cap(KVM_CAP_VM_TYPES) & BIT(KVM_X86_SEV_ES_VM);
tools/testing/selftests/kvm/x86/sev_smoke_test.c
259
if (kvm_check_cap(KVM_CAP_VM_TYPES) & BIT(KVM_X86_SEV_ES_VM))
tools/testing/selftests/kvm/x86/sev_smoke_test.c
260
test_sev_smoke(guest_sev_es_code, KVM_X86_SEV_ES_VM, SEV_POLICY_ES);