RE: [PATCH v6 01/14] examples/l3fwd: fix queue ID restriction

2024-03-25 Thread Tummala, Sivaprasad
; cristian.dumitre...@intel.com; > Yigit, > Ferruh ; konstantin.anan...@huawei.com; > step...@networkplumber.org; m...@smartsharesystems.com; > tho...@monjalon.net; dev@dpdk.org; sta...@dpdk.org > Subject: Re: [PATCH v6 01/14] examples/l3fwd: fix queue ID restriction > > C

Re: [PATCH v6 01/14] examples/l3fwd: fix queue ID restriction

2024-03-22 Thread David Marchand
Hello, On Thu, Mar 21, 2024 at 7:48 PM Sivaprasad Tummala wrote: > > Currently application supports queue IDs up to 255 I think it only relates to Rx queue IDs. Before this patch, the Tx queue count is already stored as a uint32_t or uint16_t and checked against RTE_MAX_LCORE. So no limit on th

[PATCH v6 01/14] examples/l3fwd: fix queue ID restriction

2024-03-21 Thread Sivaprasad Tummala
Currently application supports queue IDs up to 255 and max queues of 256 irrespective of device support. This limits the number of active lcores to 256. The patch fixes these constraints by increasing the queue IDs to support up to 65535. Fixes: af75078fece3 ("first public release") Cc: sta...@dp