We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8d608 commit 2cd9542Copy full SHA for 2cd9542
arch/arm64/kvm/arm.c
@@ -2806,11 +2806,12 @@ static __init int kvm_arm_init(void)
2806
if (err)
2807
goto out_hyp;
2808
2809
- kvm_info("%s%sVHE mode initialized successfully\n",
+ kvm_info("%s%sVHE%s mode initialized successfully\n",
2810
in_hyp_mode ? "" : (is_protected_kvm_enabled() ?
2811
"Protected " : "Hyp "),
2812
in_hyp_mode ? "" : (cpus_have_final_cap(ARM64_KVM_HVHE) ?
2813
- "h" : "n"));
+ "h" : "n"),
2814
+ cpus_have_final_cap(ARM64_HAS_NESTED_VIRT) ? "+NV2": "");
2815
2816
/*
2817
* FIXME: Do something reasonable if kvm_init() fails after pKVM
0 commit comments