From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753500Ab0BLKqT (ORCPT ); Fri, 12 Feb 2010 05:46:19 -0500 Received: from mail-iw0-f201.google.com ([209.85.223.201]:38033 "EHLO mail-iw0-f201.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750825Ab0BLKqS (ORCPT ); Fri, 12 Feb 2010 05:46:18 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=mavxECuAsha8Serolh0a2E3HByq/kThvdc9RO0LlRGtkRHDAuVNCw5JWcRXj+kFoq5 xJQov2Q8pkuTbFwzL3YPN1K35JOySxLh7+puL2xBRva97wR/Sls0IJHiZmOZuTjnKTa1 rTEDeOn+NpBOIrJ/GQXnzlRh5Csipi8WJhBcw= Message-ID: <4B7531E0.1080602@gmail.com> Date: Fri, 12 Feb 2010 02:48:00 -0800 From: "Justin P. Mattock" User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.4pre) Gecko/20091114 Lightning/1.0pre Thunderbird/3.0b4 MIME-Version: 1.0 To: =?UTF-8?B?TWloYWkgRG9uyJt1?= CC: linux-kernel , Ingo Molnar Subject: Re: [PATCH] Add an Apple iMac9,1 DMI entry to reboot.c so the machine reboot's properly. References: <1265484976-13414-1-git-send-email-justinmattock@gmail.com> <4B717980.2030802@gmail.com> <4B751C1A.5020404@gmail.com> <201002121202.44822.mihai.dontu@gmail.com> In-Reply-To: <201002121202.44822.mihai.dontu@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/12/10 02:02, Mihai Donțu wrote: > On Friday 12 February 2010 11:15:06 Justin P. Mattock wrote: >> On 02/09/10 07:04, Justin P. Mattock wrote: >>> Whats the status if this patch? >>> >>>> On the iMac9,1 sudo /sbin/reboot results in >>>> a black screen. Adding this DMI entry gets the >>>> machine to reboot cleanly as it should. >>>> >>>> >>>> Signed-off-by: Justin P. Mattock >>>> --- >>>> arch/x86/kernel/reboot.c | 8 ++++++++ >>>> 1 files changed, 8 insertions(+), 0 deletions(-) >>>> >>>> diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c >>>> index 704bddc..2de6645 100644 >>>> --- a/arch/x86/kernel/reboot.c >>>> +++ b/arch/x86/kernel/reboot.c >>>> @@ -461,6 +461,14 @@ static struct dmi_system_id __initdata >>>> pci_reboot_dmi_table[] = { >>>> DMI_MATCH(DMI_PRODUCT_NAME, "Macmini3,1"), >>>> }, >>>> }, >>>> + { /* Handle problems with rebooting on Apple iMac9,1 */ >>>> + .callback = set_pci_reboot, >>>> + .ident = "Apple iMac9,1", >>>> + .matches = { >>>> + DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), >>>> + DMI_MATCH(DMI_PRODUCT_NAME, "iMac9,1"), >>>> + }, >>>> + }, >>>> { } >>>> }; >> >> so what do I have todo file a bugreport against this >> to get a response from you people? > > Looking at Linus' git tree, it would seem that Ingo Molnar is the "entry > point" for the patches in arch/x86/kernel/reboot.c. Maybe you should try CC- > ing him? > Thank you.. I'm not familiar with whom to send to. (even though I've been developing to lkml for a while I'm still a newbie). In any case I will send to ingo(as you had mentioned) and see what he says Justin P. Mattock