From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758381AbYB1I1V (ORCPT ); Thu, 28 Feb 2008 03:27:21 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755284AbYB1I0o (ORCPT ); Thu, 28 Feb 2008 03:26:44 -0500 Received: from mtaout02-winn.ispmail.ntl.com ([81.103.221.48]:49310 "EHLO mtaout02-winn.ispmail.ntl.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754921AbYB1I0n (ORCPT ); Thu, 28 Feb 2008 03:26:43 -0500 From: Ian Campbell To: linux-kernel@vger.kernel.org Cc: Ian Campbell , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Jeremy Fitzhardinge , Mark McLoughlin Date: Thu, 28 Feb 2008 08:26:14 +0000 Message-Id: <1204187174-27143-2-git-send-email-ijc@hellion.org.uk> X-Mailer: git-send-email 1.5.4.2 In-Reply-To: <1204187174-27143-1-git-send-email-ijc@hellion.org.uk> References: <1204187174-27143-1-git-send-email-ijc@hellion.org.uk> X-SA-Exim-Connect-IP: 192.168.1.223 X-SA-Exim-Mail-From: ijc@hellion.org.uk Subject: [PATCH 2/2] x86/xen: Disable DMI parsing in Xen kernel. X-SA-Exim-Version: 4.2.1 (built Tue, 09 Jan 2007 17:23:22 +0000) X-SA-Exim-Scanned: Yes (on hopkins.hellion.org.uk) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Ian Campbell Cc: Thomas Gleixner Cc: Ingo Molnar Cc: H. Peter Anvin Cc: Jeremy Fitzhardinge Cc: Mark McLoughlin --- arch/x86/xen/enlighten.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 49e5358..69e11ef 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -1209,6 +1210,9 @@ asmlinkage void __init xen_start_kernel(void) ? __pa(xen_start_info->mod_start) : 0; boot_params.hdr.ramdisk_size = xen_start_info->mod_len; + /* Disable DMI parsing */ + dmi_available = 1; + /* Start the world */ start_kernel(); } -- 1.5.4.2