Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1342450 > unrolled thread

[PATCH v6 1/4] cpumask: export cpumask_any_but

Started byJacob Pan <jacob.jun.pan@linux.intel.com>
First post2016-02-24 22:40 +0100
Last post2016-02-24 22:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v6 1/4] cpumask: export cpumask_any_but Jacob Pan <jacob.jun.pan@linux.intel.com> - 2016-02-24 22:40 +0100

#1342450 — [PATCH v6 1/4] cpumask: export cpumask_any_but

FromJacob Pan <jacob.jun.pan@linux.intel.com>
Date2016-02-24 22:40 +0100
Subject[PATCH v6 1/4] cpumask: export cpumask_any_but
Message-ID<r5Pk6-27v-3@gated-at.bofh.it>
Export cpumask_any_but() for module use. This will be used by drivers
such as intel_rapl to locate an active cpu on a socket.

Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
---
 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
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web