Re: [dpdk-dev] [PATCH] net/enic: re-enable link status change interrupt

2019-11-06 Thread Ferruh Yigit
On 11/2/2019 1:35 AM, Hyong Youb Kim wrote: > When INTx is used, the interrupt handler needs to explicitly re-enable > interrupt in order to receive another one in future. The LSC interrupt > handler currently does not, and the link state never gets updated when > INTx is used (e.g. uio_pci_generic

[dpdk-dev] [PATCH] net/enic: re-enable link status change interrupt

2019-11-01 Thread Hyong Youb Kim
When INTx is used, the interrupt handler needs to explicitly re-enable interrupt in order to receive another one in future. The LSC interrupt handler currently does not, and the link state never gets updated when INTx is used (e.g. uio_pci_generic). Call rte_intr_ack() at the end of the handler, to