* [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size @ 2018-02-09 9:53 Ferruh Yigit 2018-02-09 13:18 ` Nicolau, Radu 0 siblings, 1 reply; 5+ messages in thread From: Ferruh Yigit @ 2018-02-09 9:53 UTC (permalink / raw) To: Neil Horman, John McNamara, Marko Kovacevic Cc: dev, Ferruh Yigit, Thomas Monjalon, Boris Pismenny, Aviad Yehezkel, Radu Nicolau, Declan Doherty, Hemant Agrawal Fix rte_eth_dev_get_sec_ctx() parameter port_id storage size, form uint8_t to uint16_t Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> --- Cc: Boris Pismenny <borisp@mellanox.com> Cc: Aviad Yehezkel <aviadye@mellanox.com> Cc: Radu Nicolau <radu.nicolau@intel.com> Cc: Declan Doherty <declan.doherty@intel.com> Cc: Hemant Agrawal <hemant.agrawal@nxp.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 d59ad5988..bbd9456a7 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -45,6 +45,10 @@ Deprecation Notices Target release for removal of the legacy API will be defined once most PMDs have switched to rte_flow. +* ethdev: rte_eth_dev_get_sec_ctx() fix port id storage + rte_eth_dev_get_sec_ctx() is using uint8_t for port_id, which should be + uint16_t. + * i40e: The default flexible payload configuration which extracts the first 16 bytes of the payload for RSS will be deprecated starting from 18.02. If required the previous behavior can be configured using existing flow -- 2.14.3 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size 2018-02-09 9:53 [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size Ferruh Yigit @ 2018-02-09 13:18 ` Nicolau, Radu 2018-02-09 15:01 ` Hemant Agrawal 0 siblings, 1 reply; 5+ messages in thread From: Nicolau, Radu @ 2018-02-09 13:18 UTC (permalink / raw) To: Yigit, Ferruh, Neil Horman, Mcnamara, John, Kovacevic, Marko Cc: dev, Thomas Monjalon, Boris Pismenny, Aviad Yehezkel, Doherty, Declan, Hemant Agrawal > -----Original Message----- > From: Yigit, Ferruh > Sent: Friday, February 9, 2018 9:54 AM > To: Neil Horman <nhorman@tuxdriver.com>; Mcnamara, John > <john.mcnamara@intel.com>; Kovacevic, Marko > <marko.kovacevic@intel.com> > Cc: dev@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; Thomas Monjalon > <thomas@monjalon.net>; Boris Pismenny <borisp@mellanox.com>; Aviad > Yehezkel <aviadye@mellanox.com>; Nicolau, Radu > <radu.nicolau@intel.com>; Doherty, Declan <declan.doherty@intel.com>; > Hemant Agrawal <hemant.agrawal@nxp.com> > Subject: [PATCH] doc: fix ethdev API port_id parameter size > > Fix rte_eth_dev_get_sec_ctx() parameter port_id storage size, form uint8_t > to uint16_t > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> > --- Acked-by: Radu Nicolau <radu.nicolau@intel.com> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size 2018-02-09 13:18 ` Nicolau, Radu @ 2018-02-09 15:01 ` Hemant Agrawal 2018-02-10 12:01 ` Jerin Jacob 0 siblings, 1 reply; 5+ messages in thread From: Hemant Agrawal @ 2018-02-09 15:01 UTC (permalink / raw) To: Nicolau, Radu, Yigit, Ferruh, Neil Horman, Mcnamara, John, Kovacevic, Marko Cc: dev, Thomas Monjalon, Boris Pismenny, Aviad Yehezkel, Doherty, Declan > > > > Fix rte_eth_dev_get_sec_ctx() parameter port_id storage size, form > > uint8_t to uint16_t > > > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> > > --- > Acked-by: Radu Nicolau <radu.nicolau@intel.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size 2018-02-09 15:01 ` Hemant Agrawal @ 2018-02-10 12:01 ` Jerin Jacob 2018-02-14 17:25 ` Thomas Monjalon 0 siblings, 1 reply; 5+ messages in thread From: Jerin Jacob @ 2018-02-10 12:01 UTC (permalink / raw) To: Hemant Agrawal Cc: Nicolau, Radu, Yigit, Ferruh, Neil Horman, Mcnamara, John, Kovacevic, Marko, dev, Thomas Monjalon, Boris Pismenny, Aviad Yehezkel, Doherty, Declan -----Original Message----- > Date: Fri, 9 Feb 2018 15:01:28 +0000 > From: Hemant Agrawal <hemant.agrawal@nxp.com> > To: "Nicolau, Radu" <radu.nicolau@intel.com>, "Yigit, Ferruh" > <ferruh.yigit@intel.com>, Neil Horman <nhorman@tuxdriver.com>, "Mcnamara, > John" <john.mcnamara@intel.com>, "Kovacevic, Marko" > <marko.kovacevic@intel.com> > CC: "dev@dpdk.org" <dev@dpdk.org>, Thomas Monjalon <thomas@monjalon.net>, > Boris Pismenny <borisp@mellanox.com>, Aviad Yehezkel > <aviadye@mellanox.com>, "Doherty, Declan" <declan.doherty@intel.com> > Subject: Re: [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size > > > > > > > Fix rte_eth_dev_get_sec_ctx() parameter port_id storage size, form > > > uint8_t to uint16_t > > > > > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> > > > --- > > Acked-by: Radu Nicolau <radu.nicolau@intel.com> > > Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size 2018-02-10 12:01 ` Jerin Jacob @ 2018-02-14 17:25 ` Thomas Monjalon 0 siblings, 0 replies; 5+ messages in thread From: Thomas Monjalon @ 2018-02-14 17:25 UTC (permalink / raw) To: Yigit, Ferruh Cc: dev, Jerin Jacob, Hemant Agrawal, Nicolau, Radu, Neil Horman, Mcnamara, John, Kovacevic, Marko, Boris Pismenny, Aviad Yehezkel, Doherty, Declan > > > > Fix rte_eth_dev_get_sec_ctx() parameter port_id storage size, form > > > > uint8_t to uint16_t > > > > > > > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> > > > > --- > > > Acked-by: Radu Nicolau <radu.nicolau@intel.com> > > > > Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com> > > Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> Applied ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-02-14 17:25 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2018-02-09 9:53 [dpdk-dev] [PATCH] doc: fix ethdev API port_id parameter size Ferruh Yigit 2018-02-09 13:18 ` Nicolau, Radu 2018-02-09 15:01 ` Hemant Agrawal 2018-02-10 12:01 ` Jerin Jacob 2018-02-14 17:25 ` Thomas Monjalon
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).