From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zachary Amsden Subject: [PATCH 1/4] Fix tboot enabled macro Date: Tue, 25 May 2010 17:33:26 -1000 Message-ID: <4BFC9686.9050300@redhat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------010509070405080809010908" To: kvm , Jan Kiszka , Avi Kivity , Gleb Natapov Return-path: Received: from mx1.redhat.com ([209.132.183.28]:25776 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753919Ab0EZDda (ORCPT ); Tue, 25 May 2010 23:33:30 -0400 Sender: kvm-owner@vger.kernel.org List-ID: This is a multi-part message in MIME format. --------------010509070405080809010908 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit --------------010509070405080809010908 Content-Type: text/plain; name="0001-Fix-tboot_enabled-macro-was-present-in-2.6.33.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-Fix-tboot_enabled-macro-was-present-in-2.6.33.patch" >>From 614d5fa8bba5f98fd3cb1d66d63b0b70ca98fe51 Mon Sep 17 00:00:00 2001 From: Zachary Amsden Date: Fri, 14 May 2010 12:25:14 -1000 Subject: [PATCH 1/5] Fix tboot_enabled macro; was present in 2.6.33 Signed-off-by: Zachary Amsden --- x86/external-module-compat.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/x86/external-module-compat.h b/x86/external-module-compat.h index 7d793a0..09bf232 100644 --- a/x86/external-module-compat.h +++ b/x86/external-module-compat.h @@ -770,7 +770,7 @@ static inline void hw_breakpoint_restore(void) #define percpu_write(t, v) __get_cpu_var(t) = v #endif -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) #define tboot_enabled() 0 #endif -- 1.7.0.1 --------------010509070405080809010908--