Re: [PATCH] examples/l3fwd: fix conf propagation to RX queues

2024-03-07 Thread Thomas Monjalon
07/03/2024 11:14, Konstantin Ananyev: > > > When configuring RX queues, the default port configuration was used, > > even though it was modified before. This results in the > > 'relax-rx-offload' not being respected for RX queues. > > This commit uses 'rte_eth_dev_conf_get()' to obtain the device

Re: [PATCH] examples/l3fwd: fix conf propagation to RX queues

2024-03-07 Thread Kevin Traynor
On 16/02/2024 12:02, Kamil Vojanec wrote: > When configuring RX queues, the default port configuration was used, > even though it was modified before. This results in the > 'relax-rx-offload' not being respected for RX queues. > This commit uses 'rte_eth_dev_conf_get()' to obtain the device > confi

RE: [PATCH] examples/l3fwd: fix conf propagation to RX queues

2024-03-07 Thread Konstantin Ananyev
> When configuring RX queues, the default port configuration was used, > even though it was modified before. This results in the > 'relax-rx-offload' not being respected for RX queues. > This commit uses 'rte_eth_dev_conf_get()' to obtain the device > configuration structure instead. > > Fixes:

Re: [PATCH] examples/l3fwd: fix conf propagation to RX queues

2024-03-07 Thread Thomas Monjalon
Review please? 16/02/2024 13:02, Kamil Vojanec: > When configuring RX queues, the default port configuration was used, > even though it was modified before. This results in the > 'relax-rx-offload' not being respected for RX queues. > This commit uses 'rte_eth_dev_conf_get()' to obtain the device

[PATCH] examples/l3fwd: fix conf propagation to RX queues

2024-02-16 Thread Kamil Vojanec
When configuring RX queues, the default port configuration was used, even though it was modified before. This results in the 'relax-rx-offload' not being respected for RX queues. This commit uses 'rte_eth_dev_conf_get()' to obtain the device configuration structure instead. Fixes: 4b01cabfb0 ("exa