From: Adrien Mazarguil <adrien.mazarguil@6wind.com>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Cc: dev@dpdk.org
Subject: Re: [PATCH v2 0/7] ethdev: add flow API object converter
Date: Mon, 27 Aug 2018 17:14:02 +0200 [thread overview]
Message-ID: <20180827151402.GF3695@6wind.com> (raw)
In-Reply-To: <30a6f2d0-1f0c-c549-9fd1-7e1782990943@intel.com>
On Thu, Aug 23, 2018 at 02:48:37PM +0100, Ferruh Yigit wrote:
> On 8/3/2018 2:36 PM, Adrien Mazarguil wrote:
> > This is a follow up to the "Flow API helpers enhancements" series submitted
> > almost a year ago [1]. The new title is due to the reduced scope of this
> > version.
> >
> > rte_flow_conv() is a flexible replacement to rte_flow_copy(), itself a
> > temporary solution pending something better [2]. It replaces a lot of
> > duplicated code found in testpmd and removes some of the maintenance burden
> > that developers tend to forget (me included) when modifying pattern
> > item or actions (updating app/test-pmd/config.c to be clear).
> >
> > This series was unearthed in order to complete the implementation of
> > RTE_FLOW_ACTION_TYPE_ENCAP_(VXLAN|NVGRE) in testpmd [3] without having to
> > duplicate existing code once again.
> >
> > See individual patches for specific changes in this version.
> >
> > v2 changes:
> >
> > - rte_flow_copy() is kept, albeit deprecated, no API/ABI impact.
> > - Updated bonding PMD.
> > - No more automatic generation of rte_flow_conv.h.
> >
> > [1] https://mails.dpdk.org/archives/dev/2017-October/077551.html
> > [2] https://mails.dpdk.org/archives/dev/2017-July/070492.html
> > [3] Currently the command-line parser (cmdline_flow.c) is aware of these
> > actions, however config.c isn't. Flow rules with such actions cannot
> > be created and cannot be validated with PMDs that implement them.
> >
> > Adrien Mazarguil (7):
> > ethdev: add flow API object converter
> > ethdev: add flow API item/action name conversion
> > app/testpmd: rely on flow API conversion function
> > net/failsafe: switch to flow API object conversion function
> > net/bonding: switch to flow API object conversion function
> > ethdev: deprecate rte_flow_copy function
> > ethdev: add missing item/actions to flow object converter
>
> Patch needs to be rebased to target v18.11 (in map file),
Right, will do it for v3.
> and indeed new APIs
> (rte_flow_conv) needs to be experimental.
This is what I did at first. Problem is that experimental APIs cannot be
used in internal code without triggering a compilation error unless
ALLOW_EXPERIMENTAL_API is defined (bonding cannot rely on an API marked as
experimental).
Since this series reimplements rte_flow_copy() as a wrapper to
rte_flow_conv(), I thought it didn't make sense for internal code to keep
using the former either.
Considering this, shall I add -DDALLOW_EXPERIMENTAL_API to bonding PMD or
keep things not experimental?
> And needs to remove deprecation notice in this patchset.
Doesn't it make sense to deprecate this function immediately after providing
a replacement on top of which it is reimplemented? Users end up using the
new function whether they want it or not. I don't think maintaining the
old duplicated code around is the right thing to do either.
> Also do you think does make sense to announce this change in release notes?
I'm not sure it's worth a release note. It's a rather obscure helper
function part of rte_flow. We didn't do it for rte_flow_copy() for
instance. Please confirm if you think it's needed.
> Apart from above, any volunteer for reviewing actual implementation?
I hope Gaetan will take a look, he added rte_flow_copy() after all :)
--
Adrien Mazarguil
6WIND
next prev parent reply other threads:[~2018-08-27 15:14 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-05 9:49 [PATCH v1 0/7] Flow API helpers enhancements Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 1/7] ethdev: expose flow API error helper Adrien Mazarguil
2017-10-11 9:23 ` Thomas Monjalon
2017-10-11 11:56 ` Adrien Mazarguil
2017-10-11 19:05 ` Aaron Conole
2017-10-12 13:37 ` Neil Horman
2017-10-12 14:02 ` Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 2/7] ethdev: replace flow API object copy function Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 3/7] ethdev: add flow API item/action name conversion Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 4/7] app/testpmd: rely on flow API conversion function Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 5/7] ethdev: enhance flow API item/action descriptions Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 6/7] ethdev: generate flow API conversion header Adrien Mazarguil
2017-10-05 9:49 ` [PATCH v1 7/7] ethdev: update " Adrien Mazarguil
2017-10-06 1:13 ` [PATCH v1 0/7] Flow API helpers enhancements Ferruh Yigit
2017-10-06 8:05 ` Adrien Mazarguil
2017-10-10 18:05 ` Ferruh Yigit
2017-10-11 9:57 ` Adrien Mazarguil
2017-10-11 18:07 ` Ferruh Yigit
2017-10-12 12:53 ` Adrien Mazarguil
2017-10-12 16:37 ` Ferruh Yigit
2017-10-13 10:42 ` Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 0/7] ethdev: add flow API object converter Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 1/7] " Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 2/7] ethdev: add flow API item/action name conversion Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 3/7] app/testpmd: rely on flow API conversion function Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 4/7] net/failsafe: switch to flow API object " Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 5/7] net/bonding: " Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 6/7] ethdev: deprecate rte_flow_copy function Adrien Mazarguil
2018-08-03 13:36 ` [PATCH v2 7/7] ethdev: add missing item/actions to flow object converter Adrien Mazarguil
2018-08-03 14:06 ` [PATCH v2 0/7] ethdev: add flow API " Thomas Monjalon
2018-08-23 13:48 ` Ferruh Yigit
2018-08-27 15:14 ` Adrien Mazarguil [this message]
2018-08-24 10:58 ` Ferruh Yigit
2018-08-27 14:12 ` Adrien Mazarguil
2018-08-31 9:00 ` [PATCH v3 " Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 1/7] " Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 2/7] ethdev: add flow API item/action name conversion Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 3/7] app/testpmd: rely on flow API conversion function Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 4/7] net/failsafe: switch to flow API object " Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 5/7] net/bonding: " Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 6/7] ethdev: add missing items/actions to flow object converter Adrien Mazarguil
2018-08-31 9:01 ` [PATCH v3 7/7] ethdev: deprecate rte_flow_copy function Adrien Mazarguil
2018-10-04 14:21 ` Ferruh Yigit
2018-08-31 11:32 ` [PATCH v3 0/7] ethdev: add flow API object converter Nélio Laranjeiro
2018-10-03 20:31 ` Thomas Monjalon
2018-10-04 14:25 ` Ferruh Yigit
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180827151402.GF3695@6wind.com \
--to=adrien.mazarguil@6wind.com \
--cc=dev@dpdk.org \
--cc=ferruh.yigit@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.