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 EAB85A0543; Mon, 3 Aug 2020 19:58:14 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2FEB72BD8; Mon, 3 Aug 2020 19:58:14 +0200 (CEST) Received: from mail-oi1-f195.google.com (mail-oi1-f195.google.com [209.85.167.195]) by dpdk.org (Postfix) with ESMTP id 12C002952 for ; Mon, 3 Aug 2020 19:58:13 +0200 (CEST) Received: by mail-oi1-f195.google.com with SMTP id k4so34027362oik.2 for ; Mon, 03 Aug 2020 10:58:12 -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=VP9UpL6xkPHWfs5yztvKZxVjKcb5eGXZ3M8qh0r9Tqk=; b=L9a6JPZkrYHDUVbNLVLHp8Jfp7mYUq66FLqIWjBP2qrQ+HB93rUVtVTdcO6TnYc8/K 7WZW31J4920c30ZolmOoElpsin5H8MmlwWw/o2Kz0Ego6l6D7WdP+OMcH3qsRu4T3FfJ j71SYGXqDZN1ErmgNTImRwQ6yH4JVwszKECfI= 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=VP9UpL6xkPHWfs5yztvKZxVjKcb5eGXZ3M8qh0r9Tqk=; b=BgEyUSQpOuTWTIQMbd+raYiOHyFeTQevFHKnplrl2FPMhFUCbIrwQUp+qLdEJ7RLCd 1Bu7sYHSL77WXXCNf9rrN2eFFmEfnOvFXwKL4ewftRJq8AFVtoN1Wc2yDEhDVqBcyDTb +vANjh0+mUrfvS/PlT4AXUsswItUuEfwJXh+bYP1YlMBLsmwWBnM0CCCu+UK1xuJ70IL gU2zITIv3nNSCQIDEDCu5nLW19D0eW7xM1tioJ94TyO7YC7lUINvJ9Dx0BHoRvWHt2ZW v7YEObL5ZzsyvHIt3GrWd/NjACglND4kWFCjvLw8N7f5RRsiLSWzDo0C8Cxbp39DaprW pLGA== X-Gm-Message-State: AOAM533ir+ozH4h0S7QG0HaNY8Fn9xqgVgiC0I4WS/GmYj15Jodsq1dU e8bUkb0AQ1iSXkEy/fRWl+ybt4LI55F8KvXYk3dYOA== X-Google-Smtp-Source: ABdhPJz2CJu9Olv8QEQkIdQgnC5ue96C9TZJDzJvAGrexsh9JH3BJ+LCaIg604cHYeqsyq/KzylOVaOceAzHOomUtM8= X-Received: by 2002:a54:4f85:: with SMTP id g5mr427669oiy.27.1596477492096; Mon, 03 Aug 2020 10:58:12 -0700 (PDT) MIME-Version: 1.0 References: <20200803174909.3290046-1-thomas@monjalon.net> In-Reply-To: <20200803174909.3290046-1-thomas@monjalon.net> From: Ajit Khaparde Date: Mon, 3 Aug 2020 10:57:55 -0700 Message-ID: To: Thomas Monjalon Cc: dpdk-dev , Adrien Mazarguil , Shahaf Shuler , David Marchand , Jerin Jacob Kollanukkaran , Andrew Rybchenko , Ferruh Yigit , Bruce Richardson , Hemant Agrawal , Stephen Hemminger , John Daley , "Wei Hu (Xavier" , Ziyang Xuan , "Zhao1, Wei" , Rasesh Mody 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 ethdev flow director 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 10:49 AM Thomas Monjalon wrote: > The flow director config, part of the legacy filtering API, > was marked as deprecated last year. > A separate notice is added to make clear that these specific structs > will be removed as well in DPDK 20.11, as the rest of the legacy > filtering API. > > Signed-off-by: Thomas Monjalon > Acked-by: Ajit Khaparde > --- > doc/guides/rel_notes/deprecation.rst | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst > b/doc/guides/rel_notes/deprecation.rst > index ea4cfa7a48..24474c563f 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -84,6 +84,10 @@ Deprecation Notices > Target release for removal of the legacy API will be defined once most > PMDs have switched to rte_flow. > > +* ethdev: The flow director API, including ``rte_eth_conf.fdir_conf`` > field, > + and the related structures (``rte_fdir_*`` and ``rte_eth_fdir_*``), > + 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 > >