kernel-testers.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
To: "Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org>
Cc: Arjan van de Ven <arjan-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>,
	Dimitrios Apostolou <jimis-hi6Y0CQ0nG0@public.gmane.org>,
	Linux Kernel Mailing List
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Kernel Testers List
	<kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Linus Torvalds
	<torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Subject: Re: [Bug #15040] High cpu temperature with 2.6.32
Date: Wed, 27 Jan 2010 15:25:39 -0800	[thread overview]
Message-ID: <20100127152539.eb2c8231.akpm@linux-foundation.org> (raw)
In-Reply-To: <201001261343.15685.rjw-KKrjLPT3xs0@public.gmane.org>

On Tue, 26 Jan 2010 13:43:15 +0100
"Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org> wrote:

> On Tuesday 26 January 2010, Arjan van de Ven wrote:
> > On Mon, 25 Jan 2010 21:52:32 +0100
> > "Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org> wrote:
> > 
> > > On Monday 25 January 2010, Dimitrios Apostolou wrote:
> > > > I will let you know when this bug is fixed in a regular kernel
> > > > release. I just tested 2.6.32.5 and the bug persists. BTW, Arjan, I
> > > > think this bug will be biting other people too, see the following
> > > > thread: http://bugs.archlinux.org/task/17771
> > > 
> > > I don't think it's fixed, I haven't seen the Arjan's patch anywhere
> > > close to the mainline.
> > > 
> > > Arjan, perhaps send it directly to Linus, please (unless it's already
> > > waiting somewhere for merging)?
> > 
> > I sent it to Len and Andrew (Len as maintainer, Andrew as maintainer of
> > last resort)..... what more would I need?
> 
> Well, Andrew, do you have the patch at http://patchwork.kernel.org/patch/71962/
> in your queue?  It's a regression fix.
> 

I had half of it, as
acpi-add-the-hp-pavilion-zv5000-to-the-power-dmi-table.patch.  Updated.



From: Arjan van de Ven <arjan-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>

Since the rewrite of the CPU idle governor in 2.6.32, two laptops have
surfaced where the BIOS advertises a C2 power state, but for some reason
this state is not functioning (as verified in both cases by powertop
before the patch in .32).

The old governor had the accidental behavior that if a non-working state
was chosen too many times, it would end up falling back to C1.  The new
governor works differently and this accidental behavior is no longer
there; the result is a high temperature on these two machines.

This patch adds these 2 machines to the DMI table for C state anomalies;
by just not using C2 both these machines are better off (the TSC can be
used instead of the pm timer, giving a performance boost for example).

Addresses http://bugzilla.kernel.org/show_bug.cgi?id=14742

Signed-off-by: Arjan van de Ven <arjan-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Reported-by: <akwatts-DaQTI0RpDDMAvxtiuMwx3w@public.gmane.org>
Cc: Dimitrios Apostolou <jimis-hi6Y0CQ0nG0@public.gmane.org>
Cc: Alex Chiang <achiang-VXdhtT5mjnY@public.gmane.org>
Cc: Len Brown <lenb-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Bjorn Helgaas <bjorn.helgaas-VXdhtT5mjnY@public.gmane.org>
Cc: Yinghai Lu <yinghai-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Venkatesh Pallipadi <venkatesh.pallipadi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Lin Ming <ming.m.lin-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: "Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org>
Cc: <stable-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Signed-off-by: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
---

 drivers/acpi/processor_idle.c |    8 ++++++++
 1 file changed, 8 insertions(+)

diff -puN drivers/acpi/processor_idle.c~drivers-acpi-processor_idlec-add-two-laptops-to-the-c-state-dmi-table drivers/acpi/processor_idle.c
--- a/drivers/acpi/processor_idle.c~drivers-acpi-processor_idlec-add-two-laptops-to-the-c-state-dmi-table
+++ a/drivers/acpi/processor_idle.c
@@ -110,6 +110,14 @@ static struct dmi_system_id __cpuinitdat
 	  DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
 	  DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
 	 (void *)2},
+	{ set_max_cstate, "Pavilion zv5000", {
+	  DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
+	  DMI_MATCH(DMI_PRODUCT_NAME,"Pavilion zv5000 (DS502A#ABA)")},
+	 (void *)1},
+	{ set_max_cstate, "Asus L8400B", {
+	  DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
+	  DMI_MATCH(DMI_PRODUCT_NAME,"L8400B series Notebook PC")},
+	 (void *)1},
 	{},
 };
 
_

  parent reply	other threads:[~2010-01-27 23:25 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-24 22:15 2.6.33-rc5: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-01-24 22:15 ` [Bug #14297] console resume broken since ba15ab0e8d Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14376] Kernel NULL pointer dereference/ kvm subsystem Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14298] warning at manage.c:361 (set_irq_wake), matrix-keypad related? Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14417] [Regression] Wireless driver iwlagn+iwlcore doesn't work after resume (needs reloading) Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14426] CE: hpet increasing min_delta_ns flood Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14487] PANIC: early exception 08 rip 246:10 error ffffffff810251b5 cr2 0 Rafael J. Wysocki
2010-01-24 23:02   ` Justin P. Mattock
2010-01-24 22:22 ` [Bug #14482] kernel BUG at fs/dcache.c:670 +lvm +md +ext3 Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14442] resume after hibernate: /dev/sdb drops and returns as /dev/sde Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14504] intermittent hibernation problem again Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14621] specjbb2005 and aim7 regression with 2.6.32-rc kernels Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14656] Oops at __rmqueue+0x98 with 2.6.32-rc6 Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14624] ath9k: BUG kmalloc-8192: Poison overwritten Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14625] Commit d451564 breaks ARM Rafael J. Wysocki
2010-01-24 23:29   ` Russell King
     [not found]     ` <20100124232912.GA10805-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2010-01-24 23:39       ` Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14657] perf subsystem breakage in 2.6.32-rc7 Rafael J. Wysocki
2010-01-27 12:41   ` Pekka Enberg
     [not found]     ` <84144f021001270441t75441bebpc605ac8c0cfedbd1-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-27 13:00       ` Ingo Molnar
     [not found]         ` <20100127130013.GA16698-X9Un+BFzKDI@public.gmane.org>
2010-01-27 15:31           ` Arjan van de Ven
2010-01-24 22:22 ` [Bug #14667] bisected 2.6.32 EC regression - Temperatures not correctly detected after suspend - Dell Studio XPS 16 laptop Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14670] i915: playing video via XVideo extension makes the screen flicker Rafael J. Wysocki
2010-01-27 17:59   ` Jesse Barnes
2010-01-27 22:12     ` Thomas Meyer
2010-01-24 22:22 ` [Bug #14695] regression in karmic thermal control Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14742] 2.6.32 new menu idle governor causes very high CPU temp Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14748] e1000e NIC not working after reboot Rafael J. Wysocki
2010-01-26 22:44   ` Maciej Sitarz
     [not found]     ` <4B5F706B.60905-yngNwrTfnRnVItvQsEIGlw@public.gmane.org>
2010-01-27  0:52       ` Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14782] Suspend hangs Lenovo SL300 after gdm login Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14783] Unhandled IRQ on Thinkpad R61i: "irq 16: nobody cared" Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14817] When is system under load, then freeze/HD fail Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14868] flood of "don't try to register things with the same name in the same directory." on upgrade to 2.6.32 Rafael J. Wysocki
2010-01-24 22:22 ` [Bug #14886] Asus P2B-DS not detected as SMP moterboard Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14894] pohmelfs: NULL pointer dereference Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14891] Deadlock regression related to NFS root Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14898] ksoftirqd problem Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14897] i915: Commit 0e442c60 causes flickering Rafael J. Wysocki
2010-01-27 12:44   ` Pekka Enberg
     [not found]     ` <84144f021001270444o1a2eba51t7917fb447cdc247d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-27 12:53       ` David John
2010-01-24 22:23 ` [Bug #14895] BUG in kernel 2.6.32 when using luks encrypted root and RAID0 Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14922] 2.6.32 seemed to have broken nVidia MCP7A sata controller Rafael J. Wysocki
2010-01-25  2:25   ` Robert Hancock
     [not found]     ` <51f3faa71001241825yec6e37br8032b7a3730ce840-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-25 20:47       ` Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14939] drm: random hang with i915 Rafael J. Wysocki
2010-01-27 18:01   ` Jesse Barnes
2010-01-24 22:23 ` [Bug #14933] OOM killer unexpectedly called Rafael J. Wysocki
2010-01-25  2:37   ` KOSAKI Motohiro
     [not found]     ` <20100125111948.493B.A69D9226-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2010-01-25  7:34       ` Arnaud Boulan
2010-01-24 22:23 ` [Bug #14943] nfs regression? Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14997] Closing and re-opening the lid does not reactivate the backlight Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #14998] Caught 32-bit read from uninitialized memory in acpi_system_read_event Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15004] i915: *ERROR* Execbuf while wedged Rafael J. Wysocki
2010-01-27 18:01   ` Jesse Barnes
2010-01-27 18:08     ` Chris Wilson
2010-01-24 22:23 ` [Bug #15042] socket(PF_INET6 hangs when ipv6 not yet initialized Rafael J. Wysocki
2010-01-27  9:10   ` Américo Wang
2010-02-14  6:20     ` Marc Haber
2010-01-24 22:23 ` [Bug #15015] blank screen at random times in laptop when sitting idle Rafael J. Wysocki
2010-01-25 14:10   ` Pekka Enberg
2010-01-25 14:44     ` Manish Katiyar
2010-01-25 18:39       ` Jesse Barnes
2010-01-25 20:50         ` Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15021] agpgart sometimes fails to initialize sometimes Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15040] High cpu temperature with 2.6.32 Rafael J. Wysocki
2010-01-24 23:21   ` Dimitrios Apostolou
     [not found]     ` <alpine.LNX.2.00.1001250115420.6323-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-01-25 20:52       ` Rafael J. Wysocki
     [not found]         ` <201001252152.33031.rjw-KKrjLPT3xs0@public.gmane.org>
2010-01-26  5:41           ` Arjan van de Ven
     [not found]             ` <20100125214150.1f2e1410-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2010-01-26 12:43               ` Rafael J. Wysocki
     [not found]                 ` <201001261343.15685.rjw-KKrjLPT3xs0@public.gmane.org>
2010-01-27 23:25                   ` Andrew Morton [this message]
     [not found]                     ` <20100127152539.eb2c8231.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2010-02-16  9:12                       ` Len Brown
2010-01-24 22:23 ` [Bug #15071] IBM/Lenovo Trackpoint speed, sensitivity reset after suspend if set via sysfs Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15096] Resume lock up -- bisected, commit 3a1151e3f124fd1a2c54b8153f510f1a7c715369 Rafael J. Wysocki
2010-01-24 22:44   ` Rafał Miłecki
2010-01-24 23:06     ` Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15134] gobi_loader hangs after commit 8e8dce065088 Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15127] Bluetooth: sleeping function called from invalid context Rafael J. Wysocki
2010-01-25  5:11   ` David John
     [not found]     ` <4B5D27F8.6070707-XRr60H37pjdAfugRpC6u6w@public.gmane.org>
2010-01-25 20:56       ` Rafael J. Wysocki
2010-01-24 22:23 ` [Bug #15135] Kernel 2.6.32.x hangs during boot process Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2010-01-10 22:45 2.6.33-rc3-git3: Reported regressions 2.6.31 -> 2.6.32 Rafael J. Wysocki
2010-01-10 22:56 ` [Bug #15040] High cpu temperature with 2.6.32 Rafael J. Wysocki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100127152539.eb2c8231.akpm@linux-foundation.org \
    --to=akpm-de/tnxtf+jlsfhdxvbkv3wd2fqjk+8+b@public.gmane.org \
    --cc=arjan-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
    --cc=jimis-hi6Y0CQ0nG0@public.gmane.org \
    --cc=kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=rjw-KKrjLPT3xs0@public.gmane.org \
    --cc=torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).