Re: [EXTERNAL] [PATCH v2] examples/l3fwd: adjust Tx burst size based on Rx burst

2025-06-10 Thread Pavan Nikhilesh Bhagavatula
>Previously, the TX burst size was fixed at 256, leading to performance >degradation in certain scenarios. > >This patch introduces logic to set the TX burst size to match the >configured RX burst size (--burst option, default 32, max 512) >for better efficiency. > >Fixes: d5c4897ecfb2 ("examples/l

Re: [PATCH v2] examples/l3fwd: adjust Tx burst size based on Rx burst

2025-06-10 Thread fengchengwen
On 2025/6/10 14:42, huangdengdui wrote: > > On 2025/6/9 23:21, Stephen Hemminger wrote: >> On Mon, 9 Jun 2025 09:58:27 + >> Sivaprasad Tummala wrote: >> >>> Previously, the TX burst size was fixed at 256, leading to performance >>> degradation in certain scenarios. >>> >>> This patch introduc

Re: [PATCH v2] examples/l3fwd: adjust Tx burst size based on Rx burst

2025-06-09 Thread huangdengdui
On 2025/6/9 23:21, Stephen Hemminger wrote: > On Mon, 9 Jun 2025 09:58:27 + > Sivaprasad Tummala wrote: > >> Previously, the TX burst size was fixed at 256, leading to performance >> degradation in certain scenarios. >> >> This patch introduces logic to set the TX burst size to match the >>

[PATCH v2] examples/l3fwd: adjust Tx burst size based on Rx burst

2025-06-09 Thread Sivaprasad Tummala
Previously, the TX burst size was fixed at 256, leading to performance degradation in certain scenarios. This patch introduces logic to set the TX burst size to match the configured RX burst size (--burst option, default 32, max 512) for better efficiency. Fixes: d5c4897ecfb2 ("examples/l3fwd: ad