Re: [PATCH] examples/l3fwd: add option to set RX burst size

2024-11-05 Thread Jie Hai
Hi, all maintainers, Kindly ping for review. Thanks, Jie Hai On 2024/10/12 16:40, Jie Hai wrote: Now the Rx burst size is fixed to MAX_PKT_BURST (32). This parameter needs to be modified in some performance optimization scenarios. So an option '--burst' is added to set the burst size explicit

RE: [PATCH] examples/l3fwd: add option to set RX burst size

2024-10-12 Thread Morten Brørup
> From: Jie Hai [mailto:haij...@huawei.com] > Sent: Saturday, 12 October 2024 10.41 > > Now the Rx burst size is fixed to MAX_PKT_BURST (32). This > parameter needs to be modified in some performance optimization > scenarios. So an option '--burst' is added to set the burst size > explicitly. The

Re: [PATCH] examples/l3fwd: add option to set RX burst size

2024-10-12 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/10/12 16:40, Jie Hai wrote: > Now the Rx burst size is fixed to MAX_PKT_BURST (32). This > parameter needs to be modified in some performance optimization > scenarios. So an option '--burst' is added to set the burst size > explicitly. The default value is DEFAULT_

[PATCH] examples/l3fwd: add option to set RX burst size

2024-10-12 Thread Jie Hai
Now the Rx burst size is fixed to MAX_PKT_BURST (32). This parameter needs to be modified in some performance optimization scenarios. So an option '--burst' is added to set the burst size explicitly. The default value is DEFAULT_PKT_BURST (32) and maximum value is MAX_PKT_BURST (512). Signed-off-b