]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mlx4_core: Don't double-free IRQs when falling back from MSI-X to INTx
authorRoland Dreier <rolandd@cisco.com>
Sun, 14 Jun 2009 20:30:45 +0000 (13:30 -0700)
committerRoland Dreier <rolandd@cisco.com>
Sun, 14 Jun 2009 20:30:45 +0000 (13:30 -0700)
When both MSI-X and legacy INTx fail to generate an interrupt, the
driver frees the MSI-X interrupts twice.  Fix this by clearing the
have_irq flag for the MSI-X interrupts when they are freed the first
time.  This is the same bug that was reported in ib_mthca by Yinghai
Lu <yhlu.kernel@gmail.com>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/net/mlx4/eq.c

index 8830dcb92ec8b9c9348f00c8aa1ec4bddbad3e30..ce064e324200ab58de0836a2f6fc4bcff40e3715 100644 (file)
@@ -497,8 +497,10 @@ static void mlx4_free_irqs(struct mlx4_dev *dev)
        if (eq_table->have_irq)
                free_irq(dev->pdev->irq, dev);
        for (i = 0; i < dev->caps.num_comp_vectors + 1; ++i)
-               if (eq_table->eq[i].have_irq)
+               if (eq_table->eq[i].have_irq) {
                        free_irq(eq_table->eq[i].irq, eq_table->eq + i);
+                       eq_table->eq[i].have_irq = 0;
+               }
 
        kfree(eq_table->irq_names);
 }