Re: [PATCH] net/iavf: remove reset of Tx prepare function ptr

2025-01-20 Thread Bruce Richardson
On Mon, Jan 20, 2025 at 03:01:47PM +, Medvedkin, Vladimir wrote: > On 13/12/2024 14:33, Bruce Richardson wrote: > > The iavf driver only contains a single Tx prepare function, so when > > selecting the Tx path, there is no need to reset and reassign the > > function pointer in the ethdev struct

Re: [PATCH] net/iavf: remove reset of Tx prepare function ptr

2025-01-20 Thread Medvedkin, Vladimir
On 13/12/2024 14:33, Bruce Richardson wrote: The iavf driver only contains a single Tx prepare function, so when selecting the Tx path, there is no need to reset and reassign the function pointer in the ethdev structure. This fixes an issue where the pointer was reset to NULL, but never assigned

[PATCH] net/iavf: remove reset of Tx prepare function ptr

2024-12-13 Thread Bruce Richardson
The iavf driver only contains a single Tx prepare function, so when selecting the Tx path, there is no need to reset and reassign the function pointer in the ethdev structure. This fixes an issue where the pointer was reset to NULL, but never assigned back later on function selection. Fixes: 5712b