From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Jenkins Subject: Re: [BISECTED] 20 ACPI interrupts per second on EEEPC 4G Date: Mon, 13 Apr 2009 19:42:01 +0100 Message-ID: <49E38779.9060705@tuffmail.co.uk> References: <49DF6835.9040501@tuffmail.co.uk> <49DFE345.3010109@gmail.com> <49E05F83.2090500@tuffmail.co.uk> <49E20EBA.2090708@tuffmail.co.uk> <1239588248.5564.19.camel@localhost.localdomain> <49E3085D.3060403@tuffmail.co.uk> <20090413170531.GA13188@srcf.ucam.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=iZx0YcSWpOscaOOH95QlFEbua6Q0GeWUP8DRgY4MKeY=; b=bLZSykEZb/KWctKvWXMg1vvjHaMd2fpOtrNqATKUbyeo9LBVlRmREs+zczDT9z6TYr dnhz3MvqcBDJ0u5csZEor8xlDmdJ2/bapvymwBpQFiTbtY7zzEzrFLdpIkAigqu5rrUB 5ZrqaOj+LmlzI3acj9e96MKFWnZ09vkSPMa50= In-Reply-To: <20090413170531.GA13188-1xO5oi07KQx4cg9Nei1l7Q@public.gmane.org> Sender: kernel-testers-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: Content-Type: text/plain; charset="us-ascii" To: Matthew Garrett Cc: yakui_zhao , Zhang Rui , Alexey Starikovskiy , "linux-acpi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" , Linux Kernel Mailing List , Kernel Testers List Matthew Garrett wrote: > Ok, I think I've got it. Does this fix things? Ridiculous thinko... > > diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c > index 9cd15e8..564ea14 100644 > --- a/drivers/acpi/thermal.c > +++ b/drivers/acpi/thermal.c > @@ -909,7 +909,7 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) > thermal_zone_device_register("acpitz", trips, tz, > &acpi_thermal_zone_ops, > 0, 0, 0, > - tz->polling_frequency); > + tz->polling_frequency*100); > if (IS_ERR(tz->thermal_zone)) > return -ENODEV; > > > Yup, that does it. Thanks! Alan From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752573AbZDMSmV (ORCPT ); Mon, 13 Apr 2009 14:42:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751226AbZDMSmJ (ORCPT ); Mon, 13 Apr 2009 14:42:09 -0400 Received: from fg-out-1718.google.com ([72.14.220.153]:10817 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751083AbZDMSmG (ORCPT ); Mon, 13 Apr 2009 14:42:06 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=l4dvImGNnJ8fvBg108YPWzBNdbVZI3lbP7fMTX5bkjO0AdSIc0Mx73nORIai65Fj2A SzPFlscwYmYZdVrUkgbQ4Ux7hOrkHxg1H8TEW9DMi/6LGtu7BGsDmamDaPcM2gsUYlVN NnwRlgpmJYqwpVQ3An1v3zFCTTnLjaCyWgybY= Message-ID: <49E38779.9060705@tuffmail.co.uk> Date: Mon, 13 Apr 2009 19:42:01 +0100 From: Alan Jenkins User-Agent: Thunderbird 2.0.0.21 (X11/20090318) MIME-Version: 1.0 To: Matthew Garrett CC: yakui_zhao , Zhang Rui , Alexey Starikovskiy , "linux-acpi@vger.kernel.org" , Linux Kernel Mailing List , Kernel Testers List Subject: Re: [BISECTED] 20 ACPI interrupts per second on EEEPC 4G References: <49DF6835.9040501@tuffmail.co.uk> <49DFE345.3010109@gmail.com> <49E05F83.2090500@tuffmail.co.uk> <49E20EBA.2090708@tuffmail.co.uk> <1239588248.5564.19.camel@localhost.localdomain> <49E3085D.3060403@tuffmail.co.uk> <20090413170531.GA13188@srcf.ucam.org> In-Reply-To: <20090413170531.GA13188@srcf.ucam.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Matthew Garrett wrote: > Ok, I think I've got it. Does this fix things? Ridiculous thinko... > > diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c > index 9cd15e8..564ea14 100644 > --- a/drivers/acpi/thermal.c > +++ b/drivers/acpi/thermal.c > @@ -909,7 +909,7 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) > thermal_zone_device_register("acpitz", trips, tz, > &acpi_thermal_zone_ops, > 0, 0, 0, > - tz->polling_frequency); > + tz->polling_frequency*100); > if (IS_ERR(tz->thermal_zone)) > return -ENODEV; > > > Yup, that does it. Thanks! Alan