Re: [PATCH 1/2] net/iavf: fix missing check for interrupt errors

2025-03-19 Thread Medvedkin, Vladimir
Acked-by: Vladimir Medvedkin On 10/03/2025 13:11, Bruce Richardson wrote: When registering interrupts, there was no check if the registration of the interrupt succeeded. Add in such a check, and go to fallback path if the check fails. This prevents errors on FreeBSD due to missed admin queue me

Re: [PATCH 1/2] net/iavf: fix missing check for interrupt errors

2025-03-18 Thread Bruce Richardson
On Tue, Mar 18, 2025 at 12:35:01PM +, Medvedkin, Vladimir wrote: > Acked-by: Vladimir Medvedkin > > On 10/03/2025 13:11, Bruce Richardson wrote: > > When registering interrupts, there was no check if the registration of > > the interrupt succeeded. Add in such a check, and go to fallback path

[PATCH 1/2] net/iavf: fix missing check for interrupt errors

2025-03-13 Thread Bruce Richardson
When registering interrupts, there was no check if the registration of the interrupt succeeded. Add in such a check, and go to fallback path if the check fails. This prevents errors on FreeBSD due to missed admin queue messages. Fixes: cd3b124955d4 ("net/iavf: enable interrupt polling") Cc: sta...