From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH] KVM: x86: Update symbolic exit codes Date: Sun, 11 Aug 2013 10:25:21 +0200 Message-ID: <52074A71.7040908@redhat.com> References: <520738F0.4060303@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Gleb Natapov , kvm To: Jan Kiszka Return-path: Received: from mail-ee0-f48.google.com ([74.125.83.48]:36180 "EHLO mail-ee0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752361Ab3HKIZ5 (ORCPT ); Sun, 11 Aug 2013 04:25:57 -0400 Received: by mail-ee0-f48.google.com with SMTP id l10so2888408eei.35 for ; Sun, 11 Aug 2013 01:25:56 -0700 (PDT) In-Reply-To: <520738F0.4060303@web.de> Sender: kvm-owner@vger.kernel.org List-ID: Il 11/08/2013 09:10, Jan Kiszka ha scritto: > From: Jan Kiszka > > Add decoding for INVEPT and reorder the list according to the reason > numbers. > > Signed-off-by: Jan Kiszka > --- > > Applies on top of queue. > > arch/x86/include/uapi/asm/vmx.h | 5 +++-- > 1 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/arch/x86/include/uapi/asm/vmx.h b/arch/x86/include/uapi/asm/vmx.h > index 7a34e8f..8ac5b61 100644 > --- a/arch/x86/include/uapi/asm/vmx.h > +++ b/arch/x86/include/uapi/asm/vmx.h > @@ -107,12 +107,13 @@ > { EXIT_REASON_APIC_ACCESS, "APIC_ACCESS" }, \ > { EXIT_REASON_EPT_VIOLATION, "EPT_VIOLATION" }, \ > { EXIT_REASON_EPT_MISCONFIG, "EPT_MISCONFIG" }, \ > + { EXIT_REASON_INVEPT "INVEPT" }, \ > + { EXIT_REASON_PREEMPTION_TIMER, "PREEMPTION_TIMER" } \ > { EXIT_REASON_WBINVD, "WBINVD" }, \ > { EXIT_REASON_APIC_WRITE, "APIC_WRITE" }, \ > { EXIT_REASON_EOI_INDUCED, "EOI_INDUCED" }, \ > { EXIT_REASON_INVALID_STATE, "INVALID_STATE" }, \ > { EXIT_REASON_INVD, "INVD" }, \ > - { EXIT_REASON_INVPCID, "INVPCID" }, \ > - { EXIT_REASON_PREEMPTION_TIMER, "PREEMPTION_TIMER" } > + { EXIT_REASON_INVPCID, "INVPCID" } > > #endif /* _UAPIVMX_H */ > Applied, thanks. Paolo