Re: [dpdk-dev] [PATCH v2] net/ixgbe: fixed port can not link up in FreeBSD

2019-12-13 Thread Ananyev, Konstantin
Few small nits below. s/fixed/fix/ > In FreeBSD environment, nic_uio drivers do not support interrupts, > rte_intr_callback_register() will fail to register interrupts. > We can not make link status to change from down to up by interrupt > callback. So we need to wait for the controller to acquir

[dpdk-dev] [PATCH v2] net/ixgbe: fixed port can not link up in FreeBSD

2019-12-12 Thread Lunyuan Cui
In FreeBSD environment, nic_uio drivers do not support interrupts, rte_intr_callback_register() will fail to register interrupts. We can not make link status to change from down to up by interrupt callback. So we need to wait for the controller to acquire link when ports start. Through multiple tes