From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1CC88A04DD for ; Tue, 26 Nov 2019 09:10:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C477F2B88; Tue, 26 Nov 2019 09:10:21 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id F03D62A5D for ; Tue, 26 Nov 2019 09:10:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574755820; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VUG7QWEnU/Lv9W5oY//hKfqDsY/h6GtX71hg1XvcMJY=; b=iZguqVHUNFbGKVURlqbsDslGR5GYqkdk0XASSblYTkeIupbTXWRSNIjJBa5IGejweAkVT/ mvl8trsdvNgXOq8TsmpFgLrGyAVWS4oAMGz/mbiQEHYb0jKTzr335xipkTuHXOHpiUtgsa SPPlomh5S6KuVPDz2r2yihL1gPbiX3I= Received: from mail-vs1-f71.google.com (mail-vs1-f71.google.com [209.85.217.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-216-xhp4t5ZDOa2Adz8qZYFw_w-1; Tue, 26 Nov 2019 03:10:18 -0500 Received: by mail-vs1-f71.google.com with SMTP id x72so2661830vsx.3 for ; Tue, 26 Nov 2019 00:10:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=n8GmwnB9k5zpI3Xp2hSilr6Sah1aIVC1cJ3khD1Oaqg=; b=ZwrFGuOFM49YsO3xYAFPDmwQaCJZYHwRTKKKc7FqY3DUSuSbcSnJiHRnroEQ76j9CA BFaRnLqinDos1gkeWRHlQAuaf6NIk3dUxRkux1/oZWiasb+RKbj1b3aXE2lxkLdm95Cq NLwQ3FOwm1ZOWCnw1HIy8+sg53vRrlwadnDgLylYivHIlBfynu5pQst0NGVrgKQjgnr8 IJjrEHJMcap7sYCu2WrG9y0zY1UwwbqpiWrM9l806/4/5TIEptqOuLXZoaYCtQpcnUSW 5QfOFlblfb+oTLnabjP/joFLTLY+I0JsAkjQye+CLf9pMDvYzjNfiAGrpJsxkSyrVFTM Ijtg== X-Gm-Message-State: APjAAAXzH3k4f8eaFh4gGV3bZL49kWZUnEQ4InwFIavOpIQ4mWCoHZbG ziuyotu7xcPZToT6o8jZrejgVYW/698/SgTm9IvzqaNpg+uwoyw2xcYFKvBciNyIbsGi1ZOnHFR s5vuff2TQ3S8L570HnInwlno= X-Received: by 2002:a67:f3c7:: with SMTP id j7mr21873783vsn.141.1574755818213; Tue, 26 Nov 2019 00:10:18 -0800 (PST) X-Google-Smtp-Source: APXvYqwWGclw21q0Jo5DDU/nqEz483fsei1RvinN1cBtEQ4ZHhn14hAn7P0jnQudFLL5hXcEq72OrefyQSDSuNR+RjI= X-Received: by 2002:a67:f3c7:: with SMTP id j7mr21873760vsn.141.1574755817828; Tue, 26 Nov 2019 00:10:17 -0800 (PST) MIME-Version: 1.0 References: <20191125081007.12396-1-david.marchand@redhat.com> <20191125132620.GB14928@hmswarspite.think-freely.org> In-Reply-To: <20191125132620.GB14928@hmswarspite.think-freely.org> From: David Marchand Date: Tue, 26 Nov 2019 09:10:06 +0100 Message-ID: To: David Marchand Cc: dev , Thomas Monjalon , Andrew Rybchenko , dpdk stable , Neil Horman X-MC-Unique: xhp4t5ZDOa2Adz8qZYFw_w-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-stable] [PATCH 1/2] buildtools: fix experimental symbols listing X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Mon, Nov 25, 2019 at 2:26 PM Neil Horman wrote: > > On Mon, Nov 25, 2019 at 09:10:06AM +0100, David Marchand wrote: > > The map-list-symbol.sh script displays the filename, section and symbol > > names of map files. > > > > Example: > > $ buildtools/map-list-symbol.sh -S EXPERIMENTAL \ > > lib/librte_ethdev/rte_ethdev_version.map |grep rte_mtr_create > > lib/librte_ethdev/rte_ethdev_version.map EXPERIMENTAL rte_mtr_create > > > > The experimental symbol check should only consider the symbol name. > > > > Fixes: 3290ac14eb94 ("buildtools: detect discrepancies for experimental= symbols") > > Cc: stable@dpdk.org > > > > Signed-off-by: David Marchand > On 11/25/19 11:10 AM, David Marchand wrote: > The map-list-symbol.sh script displays the filename, section and symbol > names of map files. > > Example: > $ buildtools/map-list-symbol.sh -S EXPERIMENTAL \ > lib/librte_ethdev/rte_ethdev_version.map |grep rte_mtr_create > lib/librte_ethdev/rte_ethdev_version.map EXPERIMENTAL rte_mtr_create > > The experimental symbol check should only consider the symbol name. > > Fixes: 3290ac14eb94 ("buildtools: detect discrepancies for experimental s= ymbols") > Cc: stable@dpdk.org > > Signed-off-by: David Marchand Tested-by: Andrew Rybchenko > Acked-by: Neil Horman Series applied. -- David Marchand