Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758536AbZDOImV (ORCPT ); Wed, 15 Apr 2009 04:42:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753461AbZDOImH (ORCPT ); Wed, 15 Apr 2009 04:42:07 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:39689 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752865AbZDOImF (ORCPT ); Wed, 15 Apr 2009 04:42:05 -0400 Date: Wed, 15 Apr 2009 01:34:56 -0700 From: Andrew Morton To: Ali Gholami Rudi Cc: Ingo Molnar , Linus Torvalds , Valdis.Kletnieks@vt.edu, Mike Travis , Linux Kernel Mailing List , mm-commits@vger.kernel.org, Rusty Russell , Dave Jones , Len Brown Subject: Re: mmotm 2009-04-10-02-21 uploaded - forkbombed by work_for_cpu Message-Id: <20090415013456.cf5ce205.akpm@linux-foundation.org> In-Reply-To: <20090415081534.GA2894@lilem.mirepesht> References: <200904100922.n3A9MOIV013828@imap1.linux-foundation.org> <4609.1239456126@turing-police.cc.vt.edu> <20090413171853.GA4601@elte.hu> <20090413102749.4ca3a217.akpm@linux-foundation.org> <20090415081534.GA2894@lilem.mirepesht> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.5; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2872 Lines: 76 On Wed, 15 Apr 2009 12:45:34 +0430 Ali Gholami Rudi wrote: > Hi, > > In today's tip (v2.6.30-rc2), when my cpu is idle (and the ondemand > governor correctly uses the lowest frequency) the temperature of my CPU > rises to above 50^C till the fan turns on (it used to be about 40^C > before). Git bisect points to this patch: > > commit 01599fca6758d2cd133e78f87426fc851c9ea725 > Author: Andrew Morton > Date: Mon Apr 13 10:27:49 2009 -0700 > > cpufreq: use smp_call_function_[single|many]() in acpi-cpufreq.c > > Atttempting to rid us of the problematic work_on_cpu(). Just use > smp_call_fuction_single() here. > > This repairs a 10% sysbench(oltp)+mysql regression which Mike reported, > due to > > commit 6b44003e5ca66a3fffeb5bc90f40ada2c4340896 > Author: Andrew Morton > Date: Thu Apr 9 09:50:37 2009 -0600 > > work_on_cpu(): rewrite it to create a kernel thread on demand > > It seems that the kernel calls these acpi-cpufreq functions at a quite > high frequency. > > Valdis Kletnieks also reports that this causes 70-90 forks per second on > his hardware. > > Cc: Valdis.Kletnieks@vt.edu > Cc: Rusty Russell > Cc: Venkatesh Pallipadi > Cc: Len Brown > Cc: Zhao Yakui > Acked-by: Dave Jones > Cc: Thomas Gleixner > Tested-by: Mike Galbraith > Cc: "Zhang, Yanmin" > Signed-off-by: Andrew Morton > Acked-by: Ingo Molnar > [ Made it use smp_call_function_many() instead of looping over cpu's > with smp_call_function_single() - Linus ] * smp_call_function_many(): Run a function on a set of other CPUs. "other". It refuses to call the function on *this* CPU. Tricky. Does this fix it up? --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c~a +++ a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c @@ -204,7 +204,10 @@ static void drv_read(struct drv_cmd *cmd static void drv_write(struct drv_cmd *cmd) { - smp_call_function_many(cmd->mask, do_drv_write, cmd, 1); + unsigned cpu; + + for_each_cpu(cpu, cmd->mask) + smp_call_function_single(cpu, do_drv_write, cmd, 1); } static u32 get_cur_val(const struct cpumask *mask) _ -- 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/