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

2019-11-07 Thread Ferruh Yigit
On 11/7/2019 2:42 PM, 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 v2] net/enic: re-enable link status change interrupt

2019-11-07 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