From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753463AbbE0OZP (ORCPT ); Wed, 27 May 2015 10:25:15 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36463 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753014AbbE0OZK (ORCPT ); Wed, 27 May 2015 10:25:10 -0400 Date: Wed, 27 May 2015 07:23:22 -0700 From: tip-bot for Bartosz Golaszewski Message-ID: Cc: catalin.marinas@arm.com, viresh.kumar@linaro.org, torvalds@linux-foundation.org, hpa@zytor.com, linux@arm.linux.org.uk, peterz@infradead.org, jdelvare@suse.de, mingo@kernel.org, tglx@linutronix.de, bgolaszewski@baylibre.com, linux@roeck-us.net, rjw@rjwysocki.net, oleg.drokin@intel.com, corbet@lwn.net, linux-kernel@vger.kernel.org, fenghua.yu@intel.com, bcousson@baylibre.com Reply-To: tglx@linutronix.de, bgolaszewski@baylibre.com, linux@roeck-us.net, rjw@rjwysocki.net, oleg.drokin@intel.com, corbet@lwn.net, linux-kernel@vger.kernel.org, fenghua.yu@intel.com, bcousson@baylibre.com, catalin.marinas@arm.com, viresh.kumar@linaro.org, torvalds@linux-foundation.org, hpa@zytor.com, peterz@infradead.org, linux@arm.linux.org.uk, jdelvare@suse.de, mingo@kernel.org In-Reply-To: <1432645896-12588-8-git-send-email-bgolaszewski@baylibre.com> References: <1432645896-12588-8-git-send-email-bgolaszewski@baylibre.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] speedstep-ich: Replace cpu_sibling_mask() with topology_sibling_cpumask() Git-Commit-ID: 265ea6248f6df4884c7ab622d3946375701adc54 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 265ea6248f6df4884c7ab622d3946375701adc54 Gitweb: http://git.kernel.org/tip/265ea6248f6df4884c7ab622d3946375701adc54 Author: Bartosz Golaszewski AuthorDate: Tue, 26 May 2015 15:11:34 +0200 Committer: Ingo Molnar CommitDate: Wed, 27 May 2015 15:22:16 +0200 speedstep-ich: Replace cpu_sibling_mask() with topology_sibling_cpumask() The former duplicates the functionality of the latter but is neither documented nor arch-independent. Signed-off-by: Bartosz Golaszewski Acked-by: Viresh Kumar Acked-by: Rafael J. Wysocki Cc: Benoit Cousson Cc: Catalin Marinas Cc: Fenghua Yu Cc: Guenter Roeck Cc: Jean Delvare Cc: Jonathan Corbet Cc: Linus Torvalds Cc: Oleg Drokin Cc: Peter Zijlstra Cc: Russell King Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1432645896-12588-8-git-send-email-bgolaszewski@baylibre.com Signed-off-by: Ingo Molnar --- drivers/cpufreq/speedstep-ich.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpufreq/speedstep-ich.c b/drivers/cpufreq/speedstep-ich.c index e56d632..37555c6 100644 --- a/drivers/cpufreq/speedstep-ich.c +++ b/drivers/cpufreq/speedstep-ich.c @@ -292,7 +292,7 @@ static int speedstep_cpu_init(struct cpufreq_policy *policy) /* only run on CPU to be set, or on its sibling */ #ifdef CONFIG_SMP - cpumask_copy(policy->cpus, cpu_sibling_mask(policy->cpu)); + cpumask_copy(policy->cpus, topology_sibling_cpumask(policy->cpu)); #endif policy_cpu = cpumask_any_and(policy->cpus, cpu_online_mask);