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 32329A04B5; Wed, 16 Sep 2020 18:58:30 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EAD531D167; Wed, 16 Sep 2020 18:58:28 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id D5BF11D166 for ; Wed, 16 Sep 2020 18:58:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1600275506; 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: in-reply-to:in-reply-to:references:references; bh=vRrs9rYHJgCloa3ubMuEejPg9XKm0Up3UrMASqWyBAE=; b=QmugLPeHgczGl+UK/UdOWYXBtKeoG0dxCCu3fG0C4jRmYcU99WZxUQICxuM1ZWZYtQReMT Rmwr6RYLrD8ESEA8CM6nifx3mAlsrj1xoRAbIlk+lWJAxq27r2cDyta684MztxzgFWu+Ff 0phmYs2X102RXajp9zivs2CMGzqWZp8= Received: from mail-vs1-f69.google.com (mail-vs1-f69.google.com [209.85.217.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-373-KHvoLq02MMSrj0AZsX7Qww-1; Wed, 16 Sep 2020 12:58:22 -0400 X-MC-Unique: KHvoLq02MMSrj0AZsX7Qww-1 Received: by mail-vs1-f69.google.com with SMTP id x190so2369044vsx.1 for ; Wed, 16 Sep 2020 09:58:21 -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=vRrs9rYHJgCloa3ubMuEejPg9XKm0Up3UrMASqWyBAE=; b=nYGbIeiXkY55yAfzXw4P120zXM4MuxtO4ZiRoAvd7rQvg5ArynbbK5Jm+qUaySt7Tn DhTv1gDRvBw5tJZ16ETOR4kv3z+VrwHHUTqYr091SL4CggCjEVsm170+x3I4oVK0OAY9 Xa3O8qko+b1RLq6Fn/KVluq7ZU5CZNcNr1tiCHAKiRsu3vlWQepYglcZ0duUnzUU1CQM 5imf4jsBHczEyssDn9dnWcCMYrhjWTn/DRM73PTjQRUjzAF8CsE3D2nZcUfEvbq6nBfX Pn4QWNz01O1z1Ikn4X+sUxb7m9E8sbUzvFHesmQTW/v0yK9HXcRVDgMvcefnao0nMfAH VhlA== X-Gm-Message-State: AOAM532mRLQCBvGNh/Kmw+6Z3frJpQ0pkyeK9/DfxIU9ON1rWROSFBm7 oSsvTW1JEN1Ogh28fDQob/+ont7Ga1Dl9SNHr/I7riZYeCY+mAjnWudbafSPRmmyz4J8lGqKz9X L5WHtfghCib7al8pPFZU= X-Received: by 2002:a05:6102:10c2:: with SMTP id t2mr15561360vsr.10.1600275501517; Wed, 16 Sep 2020 09:58:21 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzElgHu8Oo732ZkaAAa8xkOz2Xa6PYuiPQXNbLXBsy8j63D0IMZVuaSGj4a6HSkzeR8w33cla+oLiDIHOYFY7E= X-Received: by 2002:a05:6102:10c2:: with SMTP id t2mr15561341vsr.10.1600275501148; Wed, 16 Sep 2020 09:58:21 -0700 (PDT) MIME-Version: 1.0 References: <20200914125621.272304-1-conor.walsh@intel.com> <20200914141142.273601-1-conor.walsh@intel.com> In-Reply-To: <20200914141142.273601-1-conor.walsh@intel.com> From: David Marchand Date: Wed, 16 Sep 2020 18:58:10 +0200 Message-ID: To: Conor Walsh Cc: dev , "Ananyev, Konstantin" Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0.001 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3] bpf: remove experimental tag 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, Sep 14, 2020 at 4:11 PM Conor Walsh wrote: > > The BPF lib was introduced in 18.05. > There were no changes in it's public API since 19.11. > It should be mature enough to remove it's 'experimental' tag. > RTE_BPF_XTYPE_NUM is also being dropped from rte_bpf_xtype to > avoid possible ABI problems in the future. > > --- > v2: RTE_BPF_XTYPE_NUM dropped from rte_bpf_xtype > > --- > v3: fix commit title and move from ABI to API in release notes > > Signed-off-by: Conor Walsh Acked-by: Konstantin Ananyev Things after --- are recognised as annotations and ignored by git when applying. I fixed your SoB tag and applied, thanks. -- David Marchand