Re: [PATCH v7] app/testpmd : fix packets not getting flushed in heavy-weight mode API

2024-02-15 Thread Stephen Hemminger
On Fri, 16 Feb 2024 09:10:25 +0530 Kumara Parameshwaran wrote: > +#ifndef RTE_LIB_GRO > return false; > +#else > + gro_enable = gro_ports[fs->rx_port].enable; > + /* > + * Make sure that in case of Heavyweight mode GRO the packets in > +

[PATCH v7] app/testpmd : fix packets not getting flushed in heavy-weight mode API

2024-02-15 Thread Kumara Parameshwaran
In heavy-weight mode GRO which is based on timer, the GRO packets will not be flushed in spite of timer expiry if there is no packet in the current poll. If timer mode GRO is enabled the rte_gro_timeout_flush API should be invoked. Fixes: b7091f1dcfbc ("app/testpmd: enable the heavyweight mode TCP