net/sfc: fix LSC interrupt support for UIO cases
authorAndrew Rybchenko <arybchenko@solarflare.com>
Fri, 21 Apr 2017 12:16:42 +0000 (13:16 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 28 Apr 2017 12:46:17 +0000 (14:46 +0200)
Recently link status change interrupt was enabled by default in testpmd,
it has opened the driver bug with not working LSC interrupt if either
igb_uio or uio_pci_generic kernel driver is used.

Fixes: 06bc197796e2 ("net/sfc: interrupts support sufficient for event queue init")
Cc: stable@dpdk.org
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/sfc_intr.c

index 7d91a2a..7eb4b86 100644 (file)
@@ -312,9 +312,11 @@ sfc_intr_attach(struct sfc_adapter *sa)
 
        switch (pci_dev->intr_handle.type) {
 #ifdef RTE_EXEC_ENV_LINUXAPP
+       case RTE_INTR_HANDLE_UIO_INTX:
        case RTE_INTR_HANDLE_VFIO_LEGACY:
                intr->type = EFX_INTR_LINE;
                break;
+       case RTE_INTR_HANDLE_UIO:
        case RTE_INTR_HANDLE_VFIO_MSI:
        case RTE_INTR_HANDLE_VFIO_MSIX:
                intr->type = EFX_INTR_MESSAGE;