From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arbel Moshe Subject: [PATCH 3/5] x86: Add Definition for PCE bit in CR4 Date: Sun, 24 Dec 2017 12:07:59 +0200 Message-ID: <20171224100801.145806-4-arbel.moshe@oracle.com> References: <20171224100801.145806-1-arbel.moshe@oracle.com> Cc: idan.brown@oracle.com, liran.alon@oracle.com, Arbel Moshe , Konrad Rzeszutek Wilk To: pbonzini@redhat.com, rkrcmar@redhat.com, kvm@vger.kernel.org Return-path: Received: from userp2130.oracle.com ([156.151.31.86]:38402 "EHLO userp2130.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751323AbdLXKTS (ORCPT ); Sun, 24 Dec 2017 05:19:18 -0500 In-Reply-To: <20171224100801.145806-1-arbel.moshe@oracle.com> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Arbel Moshe Reviewed-by: Liran Alon Signed-off-by: Konrad Rzeszutek Wilk --- lib/x86/processor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/x86/processor.h b/lib/x86/processor.h index 2473862..e850029 100644 --- a/lib/x86/processor.h +++ b/lib/x86/processor.h @@ -27,6 +27,7 @@ #define X86_CR4_PSE 0x00000010 #define X86_CR4_PAE 0x00000020 #define X86_CR4_MCE 0x00000040 +#define X86_CR4_PCE 0x00000100 #define X86_CR4_VMXE 0x00002000 #define X86_CR4_PCIDE 0x00020000 #define X86_CR4_SMAP 0x00200000 -- 2.14.1