From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Holasek 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 Message-ID: <1345737719-11433-4-git-send-email-pholasek@redhat.com> References: <1345737719-11433-1-git-send-email-pholasek@redhat.com> Return-path: In-Reply-To: <1345737719-11433-1-git-send-email-pholasek@redhat.com> Sender: linux-numa-owner@vger.kernel.org List-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Cliff Wickman Cc: linux-numa@vger.kernel.org, Andi Kleen , Anton Arapov , Petr Holasek 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 --- 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