diff options
author | Borislav Petkov <bp@suse.de> | 2013-04-25 18:22:01 -0400 |
---|---|---|
committer | Gleb Natapov <gleb@redhat.com> | 2013-04-28 05:42:41 -0400 |
commit | 6614c7d042eb1096d4eba253b4952bec349f8593 (patch) | |
tree | b65ca97e7bb72577f81c6c9b88f482c781ff7f0a /arch/x86 | |
parent | cb0c8cda1301842498d1154bd6d0d1c44d1e7030 (diff) |
kvm, svm: Fix typo in printk message
It is "exit_int_info". It is actually EXITINTINFO in the official docs
but we don't like screaming docs.
Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index d6713e18bbc1..15c9cccd716b 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -3473,7 +3473,7 @@ static int handle_exit(struct kvm_vcpu *vcpu) | |||
3473 | exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR && | 3473 | exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR && |
3474 | exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH && | 3474 | exit_code != SVM_EXIT_NPF && exit_code != SVM_EXIT_TASK_SWITCH && |
3475 | exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI) | 3475 | exit_code != SVM_EXIT_INTR && exit_code != SVM_EXIT_NMI) |
3476 | printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x " | 3476 | printk(KERN_ERR "%s: unexpected exit_int_info 0x%x " |
3477 | "exit_code 0x%x\n", | 3477 | "exit_code 0x%x\n", |
3478 | __func__, svm->vmcb->control.exit_int_info, | 3478 | __func__, svm->vmcb->control.exit_int_info, |
3479 | exit_code); | 3479 | exit_code); |