Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix port close in FreeBSD OS

2019-11-03 Thread Ye Xiaolong
Seems i40e driver has the same issue, could you help to cook another fix patch as well? On 11/01, Di ChenxuX wrote: >FreeBSD OS don't support igb_uio interrupt, so it will fail > when unregister the interrupt callback in port close. >We can fix the issue by passing -ENOENT when check the > return

[dpdk-dev] [PATCH v2] net/ixgbe: fix port close in FreeBSD OS

2019-10-31 Thread Di ChenxuX
FreeBSD OS don't support igb_uio interrupt, so it will fail when unregister the interrupt callback in port close. We can fix the issue by passing -ENOENT when check the return value of unregister interrupt callback function. Fixes: f2f4990eff94 ("net/ixgbe: release port upon close") Signed-off-