igb_uio: fix legacy MSI masking
authorMarkus Theil <markus.theil@tu-ilmenau.de>
Fri, 13 Oct 2017 16:03:47 +0000 (18:03 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 19:57:48 +0000 (21:57 +0200)
MSI masks contain a 1 if interrupt is masked, 0 if unmasked.
I got that wrong with the !!state calculation. For better
readability, the mask is now changed like in igbuio_msi_mask_irq.

Fixes: a8ea1e5fb647 ("igb_uio: fix unknown MSI symbols")

Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
Tested-by: Markus Theil <markus.theil@tu-ilmenau.de>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_eal/linuxapp/igb_uio/igb_uio.c

index 0dda26c..b67d775 100644 (file)
@@ -122,13 +122,14 @@ igbuio_msi_mask_irq(struct pci_dev *pdev, struct msi_desc *desc, int32_t state)
        u32 mask_bits = desc->masked;
        u32 offset = desc->irq - pdev->irq;
        u32 mask = 1 << offset;
-       u32 flag = !!state << offset;
 
        if (!desc->msi_attrib.maskbit)
                return;
 
-       mask_bits &= ~mask;
-       mask_bits |= flag;
+       if (state != 0)
+               mask_bits &= ~mask;
+       else
+               mask_bits |= mask;
 
        if (mask_bits != desc->masked) {
                pci_write_config_dword(pdev, desc->mask_pos, mask_bits);