From patchwork Fri Mar 26 22:03:49 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julia Lawall X-Patchwork-Id: 88592 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o2QM4DD1009444 for ; Fri, 26 Mar 2010 22:04:13 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754351Ab0CZWDx (ORCPT ); Fri, 26 Mar 2010 18:03:53 -0400 Received: from mgw2.diku.dk ([130.225.96.92]:39867 "EHLO mgw2.diku.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754267Ab0CZWDw (ORCPT ); Fri, 26 Mar 2010 18:03:52 -0400 Received: from localhost (localhost [127.0.0.1]) by mgw2.diku.dk (Postfix) with ESMTP id 8971419BC03; Fri, 26 Mar 2010 23:03:51 +0100 (CET) Received: from mgw2.diku.dk ([127.0.0.1]) by localhost (mgw2.diku.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14988-19; Fri, 26 Mar 2010 23:03:50 +0100 (CET) Received: from nhugin.diku.dk (nhugin.diku.dk [130.225.96.140]) by mgw2.diku.dk (Postfix) with ESMTP id 1D47F19BBFA; Fri, 26 Mar 2010 23:03:50 +0100 (CET) Received: from ask.diku.dk (ask.diku.dk [130.225.96.225]) by nhugin.diku.dk (Postfix) with ESMTP id 0EDC96DFB75; Fri, 26 Mar 2010 22:57:44 +0100 (CET) Received: by ask.diku.dk (Postfix, from userid 3767) id 0328E200B0; Fri, 26 Mar 2010 23:03:49 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ask.diku.dk (Postfix) with ESMTP id F2389200AF; Fri, 26 Mar 2010 23:03:49 +0100 (CET) Date: Fri, 26 Mar 2010 23:03:49 +0100 (CET) From: Julia Lawall To: peterz@infradead.org, mingo@elte.hu, tglx@linutronix.de, oleg@redhat.com, Paul Mundt , linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [PATCH 6/7] arch/sh/kernel: Use set_cpus_allowed_ptr Message-ID: MIME-Version: 1.0 X-Virus-Scanned: amavisd-new at diku.dk Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 26 Mar 2010 22:04:13 +0000 (UTC) diff -u -p a/arch/sh/kernel/cpufreq.c b/arch/sh/kernel/cpufreq.c --- a/arch/sh/kernel/cpufreq.c +++ b/arch/sh/kernel/cpufreq.c @@ -48,7 +48,7 @@ static int sh_cpufreq_target(struct cpuf return -ENODEV; cpus_allowed = current->cpus_allowed; - set_cpus_allowed(current, cpumask_of_cpu(cpu)); + set_cpus_allowed_ptr(current, cpumask_of(cpu)); BUG_ON(smp_processor_id() != cpu); @@ -66,7 +66,7 @@ static int sh_cpufreq_target(struct cpuf freqs.flags = 0; cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); - set_cpus_allowed(current, cpus_allowed); + set_cpus_allowed_ptr(current, &cpus_allowed); clk_set_rate(cpuclk, freq); cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);