From: Petr Holasek <pholasek@redhat.com>
To: Cliff Wickman <cpw@sgi.com>
Cc: linux-numa@vger.kernel.org, Andi Kleen <andi@firstfloor.org>,
	Anton Arapov <anton@redhat.com>, Petr Holasek <pholasek@redhat.com>
Subject: [PATCH v2 3/7] libnuma: numa_num_possible_cpus symbol is exported from the library
Date: Thu, 23 Aug 2012 18:01:55 +0200

Function numa_num_possible_cpus is declared in numa.h but not exported.
Seems like mistakenly forgotten because all similar function are exported.

Signed-off-by: Petr Holasek <pholasek@redhat.com>
---
 versions.ldscript | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/versions.ldscript b/versions.ldscript
index f2071cc..2f2d254 100755
--- a/versions.ldscript
+++ b/versions.ldscript
@@ -152,3 +152,16 @@ libnuma_1.2 {
   local:
     *;
 } libnuma_1.1;
+
+# New parsing interface for cpu/numastrings
+# was added into version 1.3
+
+libnuma_1.3 {
+  global:
+    numa_parse_cpustring_all;
+    numa_parse_nodestring_all;
+    numa_num_possible_cpus;
+  local:
+    *;
+} libnuma_1.2;
+
-- 
1.7.11.4

