* [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11
@ 2026-07-17 9:01 Robin Jarry
2026-07-21 10:23 ` Jerin Jacob
2026-07-21 11:49 ` David Marchand
0 siblings, 2 replies; 5+ messages in thread
From: Robin Jarry @ 2026-07-17 9:01 UTC (permalink / raw)
To: dev
The graph library internal scheduling will change from a circular
buffer to a topological bitmap. This affects struct rte_graph and
struct rte_node layouts.
Signed-off-by: Robin Jarry <rjarry@redhat.com>
---
doc/guides/rel_notes/deprecation.rst | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index f5c12cc74762..6183f33b893a 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -61,6 +61,13 @@ Deprecation Notices
* mempool: The object array in ``struct rte_mempool_cache`` is oversize by factor two,
and will be reduced to ``RTE_MEMPOOL_CACHE_MAX_SIZE`` in DPDK 26.11.
+* graph: The internal scheduling mechanism of ``struct rte_graph`` will change
+ in DPDK 26.11. The circular buffer fields (``head``, ``tail``, ``cir_mask``,
+ ``cir_start``) will be replaced with a topological bitmap scheduler.
+ A new field will be added to ``struct rte_node`` for the scheduling order.
+ The graph walk functions will process nodes in topological order using bitmap
+ scanning instead of the circular buffer.
+
* lib: will fix extending some enum/define breaking the ABI. There are multiple
samples in DPDK that enum/define terminated with a ``.*MAX.*`` value which is
used by iterators, and arrays holding these values are sized with this
--
2.55.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11
2026-07-17 9:01 [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11 Robin Jarry
@ 2026-07-21 10:23 ` Jerin Jacob
2026-07-21 11:51 ` Bruce Richardson
2026-07-21 11:49 ` David Marchand
1 sibling, 1 reply; 5+ messages in thread
From: Jerin Jacob @ 2026-07-21 10:23 UTC (permalink / raw)
To: Robin Jarry; +Cc: dev
On Fri, Jul 17, 2026 at 2:47 PM Robin Jarry <rjarry@redhat.com> wrote:
>
> The graph library internal scheduling will change from a circular
> buffer to a topological bitmap. This affects struct rte_graph and
> struct rte_node layouts.
>
> Signed-off-by: Robin Jarry <rjarry@redhat.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
> ---
> doc/guides/rel_notes/deprecation.rst | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index f5c12cc74762..6183f33b893a 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -61,6 +61,13 @@ Deprecation Notices
> * mempool: The object array in ``struct rte_mempool_cache`` is oversize by factor two,
> and will be reduced to ``RTE_MEMPOOL_CACHE_MAX_SIZE`` in DPDK 26.11.
>
> +* graph: The internal scheduling mechanism of ``struct rte_graph`` will change
> + in DPDK 26.11. The circular buffer fields (``head``, ``tail``, ``cir_mask``,
> + ``cir_start``) will be replaced with a topological bitmap scheduler.
> + A new field will be added to ``struct rte_node`` for the scheduling order.
> + The graph walk functions will process nodes in topological order using bitmap
> + scanning instead of the circular buffer.
> +
> * lib: will fix extending some enum/define breaking the ABI. There are multiple
> samples in DPDK that enum/define terminated with a ``.*MAX.*`` value which is
> used by iterators, and arrays holding these values are sized with this
> --
> 2.55.0
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11
2026-07-21 10:23 ` Jerin Jacob
@ 2026-07-21 11:51 ` Bruce Richardson
2026-07-22 12:50 ` Thomas Monjalon
0 siblings, 1 reply; 5+ messages in thread
From: Bruce Richardson @ 2026-07-21 11:51 UTC (permalink / raw)
To: Jerin Jacob; +Cc: Robin Jarry, dev
On Tue, Jul 21, 2026 at 03:53:56PM +0530, Jerin Jacob wrote:
> On Fri, Jul 17, 2026 at 2:47 PM Robin Jarry <rjarry@redhat.com> wrote:
> >
> > The graph library internal scheduling will change from a circular
> > buffer to a topological bitmap. This affects struct rte_graph and
> > struct rte_node layouts.
> >
> > Signed-off-by: Robin Jarry <rjarry@redhat.com>
>
>
> Acked-by: Jerin Jacob <jerinj@marvell.com>
>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11
2026-07-21 11:51 ` Bruce Richardson
@ 2026-07-22 12:50 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2026-07-22 12:50 UTC (permalink / raw)
To: Robin Jarry; +Cc: Jerin Jacob, dev, dev, Bruce Richardson, David Marchand
21/07/2026 13:51, Bruce Richardson:
> On Tue, Jul 21, 2026 at 03:53:56PM +0530, Jerin Jacob wrote:
> > On Fri, Jul 17, 2026 at 2:47 PM Robin Jarry <rjarry@redhat.com> wrote:
> > >
> > > The graph library internal scheduling will change from a circular
> > > buffer to a topological bitmap. This affects struct rte_graph and
> > > struct rte_node layouts.
> > >
> > > Signed-off-by: Robin Jarry <rjarry@redhat.com>
> >
> > Acked-by: Jerin Jacob <jerinj@marvell.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: David Marchand <david.marchand@redhat.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11
2026-07-17 9:01 [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11 Robin Jarry
2026-07-21 10:23 ` Jerin Jacob
@ 2026-07-21 11:49 ` David Marchand
1 sibling, 0 replies; 5+ messages in thread
From: David Marchand @ 2026-07-21 11:49 UTC (permalink / raw)
To: Robin Jarry; +Cc: dev
On Fri, 17 Jul 2026 at 11:01, Robin Jarry <rjarry@redhat.com> wrote:
>
> The graph library internal scheduling will change from a circular
> buffer to a topological bitmap. This affects struct rte_graph and
> struct rte_node layouts.
>
> Signed-off-by: Robin Jarry <rjarry@redhat.com>
I would prefer those (internal) details get hidden entirely, but I
guess this will affect performance.
Maybe something to rediscuss during 26.11, but for now:
Acked-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-07-22 12:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17 9:01 [PATCH dpdk] doc: announce rte_graph ABI changes for 26.11 Robin Jarry
2026-07-21 10:23 ` Jerin Jacob
2026-07-21 11:51 ` Bruce Richardson
2026-07-22 12:50 ` Thomas Monjalon
2026-07-21 11:49 ` David Marchand
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox