From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [PATCH 2/2] ACPI: add DMI info to enable OSI(Linux) on PRIMEQUEST Date: Tue, 27 May 2008 16:20:29 -0700 Message-ID: <20080527162029.e549a226.akpm@linux-foundation.org> References: <4816F9B9.3090609@jp.fujitsu.com> <4836660B.3080406@jp.fujitsu.com> <483667A4.9000606@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from smtp1.linux-foundation.org ([140.211.169.13]:57474 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751616AbYE0XVE (ORCPT ); Tue, 27 May 2008 19:21:04 -0400 In-Reply-To: <483667A4.9000606@jp.fujitsu.com> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Taku Izumi Cc: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org On Fri, 23 May 2008 15:43:48 +0900 Taku Izumi wrote: > This patch adds DMI info to enable OSI(Linux) on PRIMEQUEST. > (PRIMEQUEST is ia64 machine.) > > Signed-off-by: Taku Izumi > > --- > drivers/acpi/blacklist.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > Index: linux-2.6.25.4/drivers/acpi/blacklist.c > =================================================================== > --- linux-2.6.25.4.orig/drivers/acpi/blacklist.c > +++ linux-2.6.25.4/drivers/acpi/blacklist.c > @@ -626,6 +626,20 @@ static struct dmi_system_id acpi_osi_dmi > DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), > }, > }, > + /* > + * Enable OSI(Linux) on Fujitsu PRIMEQUEST > + * > + * DMI_MATCH(DMI_BIOS_VERSION, "PRIMEQUEST"), > + * > + */ > + { > + .callback = dmi_enable_osi_linux, > + .ident = "Fujitsu PRIMEQUEST", > + .matches = { > + DMI_MATCH(DMI_BIOS_VENDOR, "FUJITSU LIMITED"), > + DMI_MATCH(DMI_BIOS_VERSION, "PRIMEQUEST"), > + }, > + }, > {} > }; It is unclear (to me) what the impact of this patch is. Does it fix a problem which would justify including these patches in 2.6.26? Also, your email client is performing space-stuffing. That is easy enough to repair at this end (s/^ / /) but please do sort that out for next time. http://mbligh.org/linuxdocs/Email/Clients/Thunderbird should help. Thanks.