DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched
@ 2015-07-16 21:21 Stephen Hemminger
  2015-07-16 21:25 ` Dumitrescu, Cristian
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Stephen Hemminger @ 2015-07-16 21:21 UTC (permalink / raw)
  To: Cristian Dumitrescu; +Cc: dev

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 doc/guides/rel_notes/abi.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst
index 9e98d62..a4d100b 100644
--- a/doc/guides/rel_notes/abi.rst
+++ b/doc/guides/rel_notes/abi.rst
@@ -34,3 +34,12 @@ Deprecation Notices
   creates a dummy/empty malloc library to fulfill binaries with dynamic linking
   dependencies on librte_malloc.so. Such dummy library will not be created from
   release 2.2 so binaries will need to be rebuilt.
+
+* librte_sched (rte_sched.h): The scheduler hierarchy structure
+  (rte_sched_port_hierarchy) will change to allow for a larger number of subport
+  entries. The number of available traffic_classes and queues may also change.
+  The mbuf structure element for sched hierarchy will also change from a single
+  32 bit to a 64 bit structure.
+
+* librte_sched (rte_sched.h): The scheduler statistics structure will change
+  to allow keeping track of RED actions.
-- 
2.1.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched
  2015-07-16 21:21 [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched Stephen Hemminger
@ 2015-07-16 21:25 ` Dumitrescu, Cristian
  2015-07-16 21:28 ` Neil Horman
  2015-07-23 10:18 ` Dumitrescu, Cristian
  2 siblings, 0 replies; 5+ messages in thread
From: Dumitrescu, Cristian @ 2015-07-16 21:25 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev



> -----Original Message-----
> From: Stephen Hemminger [mailto:stephen@networkplumber.org]
> Sent: Thursday, July 16, 2015 10:22 PM
> To: Dumitrescu, Cristian
> Cc: dev@dpdk.org; Stephen Hemminger
> Subject: [PATCH] doc: announce ABI change for librte_sched
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  doc/guides/rel_notes/abi.rst | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst
> index 9e98d62..a4d100b 100644
> --- a/doc/guides/rel_notes/abi.rst
> +++ b/doc/guides/rel_notes/abi.rst
> @@ -34,3 +34,12 @@ Deprecation Notices
>    creates a dummy/empty malloc library to fulfill binaries with dynamic linking
>    dependencies on librte_malloc.so. Such dummy library will not be created
> from
>    release 2.2 so binaries will need to be rebuilt.
> +
> +* librte_sched (rte_sched.h): The scheduler hierarchy structure
> +  (rte_sched_port_hierarchy) will change to allow for a larger number of
> subport
> +  entries. The number of available traffic_classes and queues may also
> change.
> +  The mbuf structure element for sched hierarchy will also change from a
> single
> +  32 bit to a 64 bit structure.
> +
> +* librte_sched (rte_sched.h): The scheduler statistics structure will change
> +  to allow keeping track of RED actions.
> --
> 2.1.4

Hi Stephen,

Agree with both, how about the new clear flag to the stats read function, shall we add a separate note on this as well?

Thanks,
Cristian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched
  2015-07-16 21:21 [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched Stephen Hemminger
  2015-07-16 21:25 ` Dumitrescu, Cristian
@ 2015-07-16 21:28 ` Neil Horman
  2015-08-15  8:58   ` Thomas Monjalon
  2015-07-23 10:18 ` Dumitrescu, Cristian
  2 siblings, 1 reply; 5+ messages in thread
From: Neil Horman @ 2015-07-16 21:28 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

On Thu, Jul 16, 2015 at 02:21:39PM -0700, Stephen Hemminger wrote:
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  doc/guides/rel_notes/abi.rst | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst
> index 9e98d62..a4d100b 100644
> --- a/doc/guides/rel_notes/abi.rst
> +++ b/doc/guides/rel_notes/abi.rst
> @@ -34,3 +34,12 @@ Deprecation Notices
>    creates a dummy/empty malloc library to fulfill binaries with dynamic linking
>    dependencies on librte_malloc.so. Such dummy library will not be created from
>    release 2.2 so binaries will need to be rebuilt.
> +
> +* librte_sched (rte_sched.h): The scheduler hierarchy structure
> +  (rte_sched_port_hierarchy) will change to allow for a larger number of subport
> +  entries. The number of available traffic_classes and queues may also change.
> +  The mbuf structure element for sched hierarchy will also change from a single
> +  32 bit to a 64 bit structure.
> +
> +* librte_sched (rte_sched.h): The scheduler statistics structure will change
> +  to allow keeping track of RED actions.
> -- 
> 2.1.4
> 
> 
ACK

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched
  2015-07-16 21:21 [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched Stephen Hemminger
  2015-07-16 21:25 ` Dumitrescu, Cristian
  2015-07-16 21:28 ` Neil Horman
@ 2015-07-23 10:18 ` Dumitrescu, Cristian
  2 siblings, 0 replies; 5+ messages in thread
From: Dumitrescu, Cristian @ 2015-07-23 10:18 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched
  2015-07-16 21:28 ` Neil Horman
@ 2015-08-15  8:58   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2015-08-15  8:58 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

> > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

> > +* librte_sched (rte_sched.h): The scheduler hierarchy structure
> > +  (rte_sched_port_hierarchy) will change to allow for a larger number of subport
> > +  entries. The number of available traffic_classes and queues may also change.
> > +  The mbuf structure element for sched hierarchy will also change from a single
> > +  32 bit to a 64 bit structure.
> > +
> > +* librte_sched (rte_sched.h): The scheduler statistics structure will change
> > +  to allow keeping track of RED actions.
> ACK

Applied, thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-15  9:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-16 21:21 [dpdk-dev] [PATCH] doc: announce ABI change for librte_sched Stephen Hemminger
2015-07-16 21:25 ` Dumitrescu, Cristian
2015-07-16 21:28 ` Neil Horman
2015-08-15  8:58   ` Thomas Monjalon
2015-07-23 10:18 ` Dumitrescu, Cristian

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).