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 B1978A0577; Tue, 14 Apr 2020 16:23:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1C4641C0CB; Tue, 14 Apr 2020 16:23:39 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id D2A061C0B0 for ; Tue, 14 Apr 2020 16:23:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1586874217; 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=b3z5lg/C2P50XjO1gxJ29q010WDPo5kCjn5nvF1fabo=; b=SUbyjaoleqGMV3r8KEuJKxZ90Up7d+HNMQa3BIHNvR436wRNn3lL7mZ+ps5lyg5dmswPie i1QKWdErgd0R/ShWOnZqIYVPH376fT/C31YGNdxRiBWOr1LPwIcm8iZOkjwkiiMgaWdt1L Adbsrd1GiGinVqzGzTtDdEK2b31iGfI= Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-56-6NURv5f3MgGGNmzNr5DuUQ-1; Tue, 14 Apr 2020 10:23:33 -0400 X-MC-Unique: 6NURv5f3MgGGNmzNr5DuUQ-1 Received: by mail-vs1-f70.google.com with SMTP id l7so1747258vsc.17 for ; Tue, 14 Apr 2020 07:23:32 -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=j9pRqxDrEk/HHqXsL+Mmuni9zMwOKqIMCD2ApcNgCQ8=; b=Wjco+0Xp90v/kwEv1lRrQ1F1eDPQzCSI72ahDDdnCP6Lvil1sl3TI5lyAFZhLdfMNI o8hzlFHUOrNqtUnPbLOblA/QOQ7mG5VXBJf6oq9jF7zGjvTa60JVDJLnSTLvu6VAGlex 3XB9DOjrKRw9W7+9TWoVDXIc6lfi5EZMJZmrXQvqUylCViUCkMJKXHtwOHbBF/35agyi 9c/+z1Zwt16KavZGHsbkcPsoYdh2HodM2pbXaxJB3gHdvudUqS1N+/wADEK2zKZmfDY2 Ay7wKnSQVLr8dt0V5wWAifDn8s8nfOB9OF1u/PJacKsy7sLCtQleFMj6eCVx0Tvm9Tl7 FGJA== X-Gm-Message-State: AGi0PuYcWSllRf/7Jf/mgD03ofGbdymwps5gmBp2ChTzPYW9DSjyhFpm quLqZd2ui3TWe4yK3SIXhAwe+eTpcNr4IJcja+/gQSfF7yB/LBY17D8MJYciX9YMNlFQHI2eID3 UVn9e0c9LmoL0Lqt8t6c= X-Received: by 2002:a9f:2204:: with SMTP id 4mr389790uad.87.1586874211665; Tue, 14 Apr 2020 07:23:31 -0700 (PDT) X-Google-Smtp-Source: APiQypJo+8NAR6J72YRQ9i4wg2fwyW9GuKC7h5O6pqhVC+rVtlP2crAb8WfqK9FYJgPJhSHfOaGicAgksgrrrkF92uo= X-Received: by 2002:a9f:2204:: with SMTP id 4mr389755uad.87.1586874211243; Tue, 14 Apr 2020 07:23:31 -0700 (PDT) MIME-Version: 1.0 References: <20200402183253.866-1-jerinjacobk@gmail.com> <20200413145530.8464-1-david.marchand@redhat.com> In-Reply-To: <20200413145530.8464-1-david.marchand@redhat.com> From: David Marchand Date: Tue, 14 Apr 2020 16:23:19 +0200 Message-ID: To: dev Cc: Jerin Jacob , Pavan Nikhilesh , Bruce Richardson , Thomas Monjalon , "Yigit, Ferruh" , Hemant Agrawal X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v5] build: disable experimental API check internally X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Apr 13, 2020 at 4:56 PM David Marchand wrote: > > From: Pavan Nikhilesh > > Remove setting ALLOW_EXPERIMENTAL_API individually for each Makefile and > meson.build. Instead, enable ALLOW_EXPERIMENTAL_API flag across app, lib > and drivers. > This changes reduces the clutter across the project while still > maintaining the functionality of ALLOW_EXPERIMENTAL_API i.e. warning > external applications about experimental API usage. > > Signed-off-by: Pavan Nikhilesh > Acked-by: Hemant Agrawal > Signed-off-by: David Marchand Applied. --=20 David Marchand