* [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8
@ 2025-12-26 8:17 Liangxing Wang
2025-12-26 17:09 ` Stephen Hemminger
2025-12-27 8:53 ` fengchengwen
0 siblings, 2 replies; 4+ messages in thread
From: Liangxing Wang @ 2025-12-26 8:17 UTC (permalink / raw)
To: dev; +Cc: Liangxing Wang, stable
For platforms with more than 8 NUMA nodes, the l3fwd example fails when
using cores on NUMA node 8 or above.
Use RTE_MAX_NUMA_NODES instead of 8 to extend NUMA nodes limit.
Cc: stable@dpdk.org
Signed-off-by: Liangxing Wang <wangliangxing@hygon.cn>
---
examples/l3fwd/l3fwd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/l3fwd/l3fwd.h b/examples/l3fwd/l3fwd.h
index 471e3b488f..ca9d0d2dd0 100644
--- a/examples/l3fwd/l3fwd.h
+++ b/examples/l3fwd/l3fwd.h
@@ -33,7 +33,7 @@
#define VECTOR_SIZE_DEFAULT MAX_PKT_BURST
#define VECTOR_TMO_NS_DEFAULT 1E6 /* 1ms */
-#define NB_SOCKETS 8
+#define NB_SOCKETS RTE_MAX_NUMA_NODES
/* Configure how many packets ahead to prefetch, when reading packets */
#define PREFETCH_OFFSET 3
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8
2025-12-26 8:17 [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8 Liangxing Wang
@ 2025-12-26 17:09 ` Stephen Hemminger
2025-12-27 8:53 ` fengchengwen
1 sibling, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2025-12-26 17:09 UTC (permalink / raw)
To: Liangxing Wang; +Cc: dev, stable
On Fri, 26 Dec 2025 08:17:19 +0000
Liangxing Wang <wangliangxing@hygon.cn> wrote:
> For platforms with more than 8 NUMA nodes, the l3fwd example fails when
> using cores on NUMA node 8 or above.
>
> Use RTE_MAX_NUMA_NODES instead of 8 to extend NUMA nodes limit.
>
> Cc: stable@dpdk.org
>
> Signed-off-by: Liangxing Wang <wangliangxing@hygon.cn>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8
2025-12-26 8:17 [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8 Liangxing Wang
2025-12-26 17:09 ` Stephen Hemminger
@ 2025-12-27 8:53 ` fengchengwen
2025-12-29 2:55 ` Liangxing Wang
1 sibling, 1 reply; 4+ messages in thread
From: fengchengwen @ 2025-12-27 8:53 UTC (permalink / raw)
To: Liangxing Wang, dev; +Cc: stable
Acked-by: Chengwen Feng <fengchengwen@huawei.com>
BTW: Other examples also defined the NB_SOCKTS (e.g. l3fwd-power/l3fwd-graph/ipsec-secgw),
how about add more commits to fix.
On 12/26/2025 4:17 PM, Liangxing Wang wrote:
> For platforms with more than 8 NUMA nodes, the l3fwd example fails when
> using cores on NUMA node 8 or above.
>
> Use RTE_MAX_NUMA_NODES instead of 8 to extend NUMA nodes limit.
>
> Cc: stable@dpdk.org
>
> Signed-off-by: Liangxing Wang <wangliangxing@hygon.cn>
> ---
> examples/l3fwd/l3fwd.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/examples/l3fwd/l3fwd.h b/examples/l3fwd/l3fwd.h
> index 471e3b488f..ca9d0d2dd0 100644
> --- a/examples/l3fwd/l3fwd.h
> +++ b/examples/l3fwd/l3fwd.h
> @@ -33,7 +33,7 @@
> #define VECTOR_SIZE_DEFAULT MAX_PKT_BURST
> #define VECTOR_TMO_NS_DEFAULT 1E6 /* 1ms */
>
> -#define NB_SOCKETS 8
> +#define NB_SOCKETS RTE_MAX_NUMA_NODES
>
> /* Configure how many packets ahead to prefetch, when reading packets */
> #define PREFETCH_OFFSET 3
^ permalink raw reply [flat|nested] 4+ messages in thread* RE: [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8
2025-12-27 8:53 ` fengchengwen
@ 2025-12-29 2:55 ` Liangxing Wang
0 siblings, 0 replies; 4+ messages in thread
From: Liangxing Wang @ 2025-12-29 2:55 UTC (permalink / raw)
To: fengchengwen, dev; +Cc: stable
Thanks for the reminder. Noticed that too. Maybe I can use another commit to cover all other examples that need modification.
Regards,
Liangxing
> -----Original Message-----
> From: fengchengwen <fengchengwen@huawei.com>
> Sent: 2025年12月27日 16:53
> To: Liangxing Wang <wangliangxing@hygon.cn>; dev@dpdk.org
> Cc: stable@dpdk.org
> Subject: Re: [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8
>
> Acked-by: Chengwen Feng <fengchengwen@huawei.com>
>
> BTW: Other examples also defined the NB_SOCKTS (e.g.
> l3fwd-power/l3fwd-graph/ipsec-secgw),
> how about add more commits to fix.
>
> On 12/26/2025 4:17 PM, Liangxing Wang wrote:
> > For platforms with more than 8 NUMA nodes, the l3fwd example fails
> > when using cores on NUMA node 8 or above.
> >
> > Use RTE_MAX_NUMA_NODES instead of 8 to extend NUMA nodes limit.
> >
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Liangxing Wang <wangliangxing@hygon.cn>
> > ---
> > examples/l3fwd/l3fwd.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/examples/l3fwd/l3fwd.h b/examples/l3fwd/l3fwd.h index
> > 471e3b488f..ca9d0d2dd0 100644
> > --- a/examples/l3fwd/l3fwd.h
> > +++ b/examples/l3fwd/l3fwd.h
> > @@ -33,7 +33,7 @@
> > #define VECTOR_SIZE_DEFAULT MAX_PKT_BURST
> > #define VECTOR_TMO_NS_DEFAULT 1E6 /* 1ms */
> >
> > -#define NB_SOCKETS 8
> > +#define NB_SOCKETS RTE_MAX_NUMA_NODES
> >
> > /* Configure how many packets ahead to prefetch, when reading packets
> */
> > #define PREFETCH_OFFSET 3
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-12-29 2:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-26 8:17 [PATCH] examples/l3fwd: extend NUMA nodes limit beyond 8 Liangxing Wang
2025-12-26 17:09 ` Stephen Hemminger
2025-12-27 8:53 ` fengchengwen
2025-12-29 2:55 ` Liangxing Wang
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).