From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754240AbcB2LKL (ORCPT ); Mon, 29 Feb 2016 06:10:11 -0500 Received: from torg.zytor.com ([198.137.202.12]:53744 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753507AbcB2LKD (ORCPT ); Mon, 29 Feb 2016 06:10:03 -0500 Date: Mon, 29 Feb 2016 03:08:51 -0800 From: tip-bot for Thomas Gleixner Message-ID: Cc: acme@redhat.com, peterz@infradead.org, rusty@rustcorp.com.au, mingo@kernel.org, andi.kleen@intel.com, eranian@google.com, davem@davemloft.net, hpa@zytor.com, vincent.weaver@maine.edu, tglx@linutronix.de, jacob.jun.pan@linux.intel.com, jolsa@redhat.com, harish.chegondi@intel.com, bp@alien8.de, linux-kernel@vger.kernel.org, kan.liang@intel.com, torvalds@linux-foundation.org Reply-To: hpa@zytor.com, eranian@google.com, davem@davemloft.net, andi.kleen@intel.com, vincent.weaver@maine.edu, tglx@linutronix.de, acme@redhat.com, peterz@infradead.org, mingo@kernel.org, rusty@rustcorp.com.au, kan.liang@intel.com, torvalds@linux-foundation.org, jolsa@redhat.com, jacob.jun.pan@linux.intel.com, harish.chegondi@intel.com, linux-kernel@vger.kernel.org, bp@alien8.de In-Reply-To: <20160222221011.878299859@linutronix.de> References: <20160222221011.878299859@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] cpumask: Export cpumask_any_but() Git-Commit-ID: 3712bba1a260ad851f3aa8ddea9cb7326f6aa0b3 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: 3712bba1a260ad851f3aa8ddea9cb7326f6aa0b3 Gitweb: http://git.kernel.org/tip/3712bba1a260ad851f3aa8ddea9cb7326f6aa0b3 Author: Thomas Gleixner AuthorDate: Mon, 22 Feb 2016 22:19:18 +0000 Committer: Ingo Molnar CommitDate: Mon, 29 Feb 2016 09:35:20 +0100 cpumask: Export cpumask_any_but() Almost every cpumask function is exported, just not the one I need to make the Intel uncore driver modular. Signed-off-by: Thomas Gleixner Signed-off-by: Peter Zijlstra (Intel) Cc: Andi Kleen Cc: Arnaldo Carvalho de Melo Cc: Borislav Petkov Cc: David S. Miller Cc: Harish Chegondi Cc: Jacob Pan Cc: Jiri Olsa Cc: Kan Liang Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Rusty Russell Cc: Stephane Eranian Cc: Vince Weaver Cc: linux-kernel@vger.kernel.org Link: http://lkml.kernel.org/r/20160222221011.878299859@linutronix.de Signed-off-by: Ingo Molnar --- lib/cpumask.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cpumask.c b/lib/cpumask.c index 5a70f61..81dedaa 100644 --- a/lib/cpumask.c +++ b/lib/cpumask.c @@ -41,6 +41,7 @@ int cpumask_any_but(const struct cpumask *mask, unsigned int cpu) break; return i; } +EXPORT_SYMBOL(cpumask_any_but); /* These are not inline because of header tangles. */ #ifdef CONFIG_CPUMASK_OFFSTACK