Hi Fiona, Sorry for my bad English, I will try to explain better here.
"cryptodev_configure_t" is a function prototype with only "rte_cryptodev *dev" as sole parameter. Structure ``rte_cryptodev_ops`` holds one function pointer "dev_configure" of it. The patch involves in the announcement of adding a parameter of "struct rte_cryptodev_config" pointer so the function prototype could look like: typedef int (*cryptodev_configure_t)(struct rte_cryptodev *dev, struct rte_cryptodev_config *config); Without this parameter, a specific crypto PMD may not have enough information to configure itself. Which may not be big problem as other Cryptodevs as all configures are done in rte_cryptodev_configure(), but it is important for the scheduler PMD as it needs this parameter to configure all its slaves. Currently the user have to configure every slave one by one. The problem is, although I want to change an API of the function prototype "cryptodev_configure_t", but in order to do that I have to break the ABI of structure "rte_cryptodev_ops". Any help on the grammar for stating this nicer would be appreciated. Best regards, Fan > -----Original Message----- > From: Trahe, Fiona > Sent: Friday, February 10, 2017 2:00 PM > To: Zhang, Roy Fan <roy.fan.zh...@intel.com>; dev@dpdk.org > Cc: De Lara Guarch, Pablo <pablo.de.lara.gua...@intel.com>; Trahe, Fiona > <fiona.tr...@intel.com> > Subject: RE: [dpdk-dev] [PATCH] doc: annouce ABI change for cryptodev ops > structure > > Hi Fan, > > > -----Original Message----- > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Fan Zhang > > Sent: Friday, February 10, 2017 11:39 AM > > To: dev@dpdk.org > > Cc: De Lara Guarch, Pablo <pablo.de.lara.gua...@intel.com> > > Subject: [dpdk-dev] [PATCH] doc: annouce ABI change for cryptodev ops > > structure > > > > Signed-off-by: Fan Zhang <roy.fan.zh...@intel.com> > > --- > > 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 755dc65..564d93a 100644 > > --- a/doc/guides/rel_notes/deprecation.rst > > +++ b/doc/guides/rel_notes/deprecation.rst > > @@ -62,3 +62,7 @@ Deprecation Notices > > PMDs that implement the latter. > > Target release for removal of the legacy API will be defined once most > > PMDs have switched to rte_flow. > > + > > +* ABI changes are planned for 17.05 in the ``rte_cryptodev_ops`` structure. > > + The field ``cryptodev_configure_t`` function prototype will be > > +added a > > + parameter of a struct rte_cryptodev_config type pointer. > > -- > > 2.7.4 > > Can you fix the grammar here please. I'm not sure what the change is?