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 AFB97A053A; Tue, 4 Aug 2020 05:54:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7E3261BFFE; Tue, 4 Aug 2020 05:54:27 +0200 (CEST) Received: from mail-oi1-f193.google.com (mail-oi1-f193.google.com [209.85.167.193]) by dpdk.org (Postfix) with ESMTP id 6DF212BA8 for ; Tue, 4 Aug 2020 05:54:26 +0200 (CEST) Received: by mail-oi1-f193.google.com with SMTP id 25so11634990oir.0 for ; Mon, 03 Aug 2020 20:54:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1hakaeoxDixJh1l0iPzIuNMpgndq0KE/jIGuPjGXKc4=; b=P8N7pqNVOUeG++Kw6J2pVkx0fGazGYeDzy2DhdVz5YesInS08mHsIh7bC30fAfkPQL sYFfxqNonO3QA3fm6kG6RjYEmhCJgineQAAxa38k/MpZ42VC+9Jc9/paMiFzGmb6kVmX PdJjgZniUkTbJ8s3vm+LCFMQvvWFHjpmqbKmo= 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=1hakaeoxDixJh1l0iPzIuNMpgndq0KE/jIGuPjGXKc4=; b=OqwIN3oJoYJDqMzvPY8W1Rd/lwonBa+AdEHQLVGX024QOryiK9KkdAuojtlnCBrRAF t0EUYrLq6pc75hRMvntLmXeEjOKKqdS94m1VY51kmcCPRb1qa+nZRnQbB8yZlXOCtAEr 9nEqk41yVFGFeF0XS9GP9qoVeQnB+wF0vmysKiGILlzljt7QQld+940yRiyCNqWvXtfV 5jkm2Tx0ejWy6Xwdskn4Pvg2FT/tf9jKfagAJszXAqu4JaYoxL9IK0ppkodBgSvIfPeh JegkbK7fW/XJBH/+fBPACr7YQ4GiGjq1P76OzLBbHLn0uld5EUrwF6tPpgwURR+KHaKK CQ3g== X-Gm-Message-State: AOAM533qjeqowh2tqnsaVkB3WuLZJVl1UcbUr1ChjuEf8t1kPV2DC9EE n486bGCbCc4BehvqyDshfY4xJICvKW/FG1NoPda6jw== X-Google-Smtp-Source: ABdhPJztGVwuz1ZawcFdjfjMVLQUq30jsrbJQn2MIrsPyDWC5l4kP0IZXC3LjimammZC2lmXde5vwN240ATx3Rr5SI0= X-Received: by 2002:a54:4f85:: with SMTP id g5mr1942767oiy.27.1596513265533; Mon, 03 Aug 2020 20:54:25 -0700 (PDT) MIME-Version: 1.0 References: <20200803180627.3292763-1-thomas@monjalon.net> In-Reply-To: <20200803180627.3292763-1-thomas@monjalon.net> From: Ajit Khaparde Date: Mon, 3 Aug 2020 20:54:09 -0700 Message-ID: To: Thomas Monjalon Cc: dpdk-dev , Adrien Mazarguil , Shahaf Shuler , David Marchand , Andrew Rybchenko , Ferruh Yigit , Bruce Richardson , Stephen Hemminger , "Zhao1, Wei" Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH] doc: announce removal of L2 tunnel filtering API 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, Aug 3, 2020 at 11:06 AM Thomas Monjalon wrote: > The functions for L2 tunnel were missed when marking the legacy > filtering API as deprecated. That's why a separate notice is done > to make clear that it will be removed as well in DPDK 20.11. > > Signed-off-by: Thomas Monjalon > Acked-by: Ajit Khaparde > --- > doc/guides/rel_notes/deprecation.rst | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst > b/doc/guides/rel_notes/deprecation.rst > index ea4cfa7a48..cad2f777f2 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -84,6 +84,12 @@ Deprecation Notices > Target release for removal of the legacy API will be defined once most > PMDs have switched to rte_flow. > > +* ethdev: the legacy L2 tunnel filtering API is deprecated as the rest of > + the legacy filtering API. > + The functions ``rte_eth_dev_l2_tunnel_eth_type_conf`` and > + ``rte_eth_dev_l2_tunnel_offload_set`` which were not marked as > deprecated, > + will be removed in DPDK 20.11. > + > * ethdev: Update API functions returning ``void`` to return ``int`` with > negative errno values to indicate various error conditions (e.g. > invalid port ID, unsupported operation, failed operation): > -- > 2.27.0 > >