Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S939634AbXFHHxw (ORCPT ); Fri, 8 Jun 2007 03:53:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S938173AbXFHHZR (ORCPT ); Fri, 8 Jun 2007 03:25:17 -0400 Received: from 216-99-217-87.dsl.aracnet.com ([216.99.217.87]:55346 "EHLO sous-sol.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S967641AbXFHHZG (ORCPT ); Fri, 8 Jun 2007 03:25:06 -0400 Message-Id: <20070608072224.040409000@sous-sol.org> References: <20070608072127.352723000@sous-sol.org> User-Agent: quilt/0.46-1 Date: Fri, 08 Jun 2007 00:22:06 -0700 From: Chris Wright To: linux-kernel@vger.kernel.org, stable@kernel.org, torvalds@linux-foundation.org Cc: Justin Forbes , Zwane Mwaikambo , "Theodore Ts'o" , Randy Dunlap , Dave Jones , Chuck Wolber , Chris Wedgwood , Michael Krufky , Chuck Ebbert , Domenico Andreoli , akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk, Tim Gardner , Matt_Domsch@dell.com, ak@suse.de, Greg Kroah-Hartman Subject: [patch 39/54] Work around Dell E520 BIOS reboot bug Content-Disposition: inline; filename=work-around-dell-e520-bios-reboot-bug.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1605 Lines: 49 -stable review patch. If anyone has any objections, please let us know. --------------------- From: Tim Gardner Force Dell E520 to use the BIOS to shutdown/reboot. I have at least one report that this patch fixes shutdown/reboot problems on the Dell E520 platform. (Andi says: People can always set the boot option. It hardly seems like a critical issue needing a backport.) Signed-off-by: Tim Gardner Acked-by: Andi Kleen Acked-by: Matt Domsch Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman Signed-off-by: Chris Wright --- arch/i386/kernel/reboot.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- linux-2.6.21.4.orig/arch/i386/kernel/reboot.c +++ linux-2.6.21.4/arch/i386/kernel/reboot.c @@ -88,6 +88,14 @@ static int __init set_bios_reboot(struct } static struct dmi_system_id __initdata reboot_dmi_table[] = { + { /* Handle problems with rebooting on Dell E520's */ + .callback = set_bios_reboot, + .ident = "Dell E520", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell DM061"), + }, + }, { /* Handle problems with rebooting on Dell 1300's */ .callback = set_bios_reboot, .ident = "Dell PowerEdge 1300", -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/