From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.0 required=3.0 tests=BAYES_20, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2D23DC433E0 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 E4AED20771 for ; Thu, 23 Jul 2020 01:18:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E4AED20771 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: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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; -- 2.26.2 _______________________________________________ Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org To unsubscribe send an email to linux-nvdimm-leave@lists.01.org