From patchwork Thu Jul 23 01:00:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Verma, Vishal L" X-Patchwork-Id: 11679511 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2795913A4 for ; Thu, 23 Jul 2020 01:18:28 +0000 (UTC) Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E4E0920888 for ; Thu, 23 Jul 2020 01:18:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E4E0920888 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-nvdimm-bounces@lists.01.org Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 8CE1E124B445F; Wed, 22 Jul 2020 18:18:27 -0700 (PDT) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=134.134.136.65; helo=mga03.intel.com; envelope-from=vishal.l.verma@intel.com; receiver= Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 8AB87123323D2 for ; Wed, 22 Jul 2020 18:18:25 -0700 (PDT) IronPort-SDR: 6DkMM46T6iXroZACxaIY0KsFwCPJLzjsHQPbmSoO5E/K1xemdFE5lCueZySj4om941+vTTEOmx GhWLSDPIxOSw== X-IronPort-AV: E=McAfee;i="6000,8403,9690"; a="150434263" X-IronPort-AV: E=Sophos;i="5.75,383,1589266800"; d="scan'208";a="150434263" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Jul 2020 18:18:24 -0700 IronPort-SDR: TqB/ygLKZ5Ngd0Lm4i0UzCt5Rb2vPVBcLyo7hEM9TWy/GZBGZPVf6Td4tJ8qyuEYRYXwkoHtY3 pFbA3zDuJEQg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,383,1589266800"; d="scan'208";a="272160023" Received: from vverma7-mobl4.lm.intel.com ([10.255.75.57]) by fmsmga008.fm.intel.com with ESMTP; 22 Jul 2020 18:18:24 -0700 From: Vishal Verma To: Cc: Vishal Verma , Santosh Sivaraj Subject: [ndctl PATCH] ndctl/lib: fix new symbol location in the symbol script Date: Wed, 22 Jul 2020 19:00:34 -0600 Message-Id: <20200723010034.28561-1-vishal.l.verma@intel.com> X-Mailer: git-send-email 2.21.3 MIME-Version: 1.0 Message-ID-Hash: 6ATHMND3SXTYZQF5NCPYGVNIBR336UVI X-Message-ID-Hash: 6ATHMND3SXTYZQF5NCPYGVNIBR336UVI X-MailFrom: vishal.l.verma@intel.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.1.1 Precedence: list List-Id: "Linux-nvdimm developer list." Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: The commit referenced below added a new symbol in an existing section in the symbol script, which is incorrect. Move it to the new LIBNDCTL_24 section. Fixes: 1e840d56f123 ("Skip region filtering if numa_node attribute is not present") Cc: Santosh Sivaraj Signed-off-by: Vishal Verma --- ndctl/lib/libndctl.sym | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index 805c3ca..7ba1dcc 100644 --- a/ndctl/lib/libndctl.sym +++ b/ndctl/lib/libndctl.sym @@ -430,10 +430,10 @@ LIBNDCTL_23 { ndctl_region_get_target_node; ndctl_region_get_align; ndctl_region_set_align; - ndctl_region_has_numa; } LIBNDCTL_22; LIBNDCTL_24 { ndctl_bus_has_of_node; ndctl_bus_is_papr_scm; + ndctl_region_has_numa; } LIBNDCTL_23;