From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 12E62A0AC5 for ; Fri, 3 May 2019 19:16:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D1E442BD8; Fri, 3 May 2019 19:16:34 +0200 (CEST) Received: from mail-ua1-f65.google.com (mail-ua1-f65.google.com [209.85.222.65]) by dpdk.org (Postfix) with ESMTP id 577CB2BD8 for ; Fri, 3 May 2019 19:16:33 +0200 (CEST) Received: by mail-ua1-f65.google.com with SMTP id g16so2282589uad.2 for ; Fri, 03 May 2019 10:16:33 -0700 (PDT) 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=1nPzEhcKcdW8kJWvCFPbPxUqozHgQm/2GKXxdf0t5PY=; b=H7f27cjhqiwXqOUOUUcz7rPHe0DCJFRF5adLIGbJk01ldbSFaz2QYdyBxVex6DuBiw tGGs7ae5kTjY8vDYHDG/t30te6kXAEB7L3TiXoS+EX4TEe5KLCi6BimptUlbYK0QQBsk ICXsa3SVEFMc5obVcIxmQe+XqGrw+NtG7clyjQX4h+kwdZYV9XG4bHNdCiJaYpSdeJw3 T0Tm8AiDKuA8zgkJZLrlv7DvHj6JtfN6A58c9nL4+kpfOB4RkO5NOaUxMplPDwQXY4bL VfTrhR9j17hE4oV8AT03mCpRTR66buODcZe+8/SlLLI6AhIZNZq/7AXi5UVMpRg7HGCt kbXA== X-Gm-Message-State: APjAAAVq3ot1Lxu5NaPf/Vc5+Q4O7VO58+a1xu/KsC335BP/kglMghiz m+4Ty2tOfl7GfpWFqImy0uywpkl6ddjHqFBW4Y9x6rKO X-Google-Smtp-Source: APXvYqwb9cIvLL1UCkqf4GuqBlUkLosBfHc7ygVhVLpdFmHXsrVmy9oy8wBohY49/cgiOCC/xs/ZozOW6E8iaN/n/xc= X-Received: by 2002:ab0:70d3:: with SMTP id r19mr5659043ual.126.1556903792721; Fri, 03 May 2019 10:16:32 -0700 (PDT) MIME-Version: 1.0 References: <1556894060-13573-1-git-send-email-david.marchand@redhat.com> <1556894060-13573-2-git-send-email-david.marchand@redhat.com> <20190503150346.GA32640@hmswarspite.think-freely.org> In-Reply-To: <20190503150346.GA32640@hmswarspite.think-freely.org> From: David Marchand Date: Fri, 3 May 2019 19:16:21 +0200 Message-ID: To: Neil Horman Cc: dev , Thomas Monjalon , dpdk stable Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-stable] [PATCH 2/4] devtools: handle section suppression 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 Fri, May 3, 2019 at 5:18 PM Neil Horman wrote: > On Fri, May 03, 2019 at 04:34:18PM +0200, David Marchand wrote: > > Even if rare, the check script should handle removing a section. > > > > Fixes: 4bec48184e33 ("devtools: add checks for ABI symbol addition") > > Cc: stable@dpdk.org > > > > Signed-off-by: David Marchand > > --- > > devtools/check-symbol-change.sh | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/devtools/check-symbol-change.sh > b/devtools/check-symbol-change.sh > > index 8da7650..d5fad04 100755 > > --- a/devtools/check-symbol-change.sh > > +++ b/devtools/check-symbol-change.sh > > @@ -32,6 +32,7 @@ build_map_changes() > > # symbol rule below > > /^.*{/ { > > gsub("+", ""); > > + gsub("-", ""); > > if (in_map == 1) { > > sec=$(NF-1); in_sec=1; > > } > > -- > > 1.8.3.1 > > > > > Don't you also need to add some logic in the symbol detection match rule to > print an appropriate indicator that a symbol is being removed? With just > this > change, you will note that you are parsing a section, but you will never > trigger > a symbol match > I do remember seeing a warning about the "-EXPERIMENTAL" section. And this is why I added this. But since then I reorganised my series and eliminated some parts... so you are most likely right. I will double check and repost. -- David Marchand