]> git.karo-electronics.de Git - linux-beck.git/commitdiff
genirq: Fix missing irq allocation affinity hint
authorVincent Stehle <vincent.stehle@laposte.net>
Mon, 18 Jul 2016 20:56:26 +0000 (22:56 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 19 Jul 2016 08:49:47 +0000 (10:49 +0200)
The new affinity hint argument of __irq_domain_alloc_irqs() is missing in
irq_reserve_ipi(). Add it.

This fixes the following compilation error:

  kernel/irq/ipi.c: In function ‘irq_reserve_ipi’:
  kernel/irq/ipi.c:85:9: error: too few arguments to function ‘__irq_domain_alloc_irqs’
    virq = __irq_domain_alloc_irqs(domain, virq, nr_irqs, NUMA_NO_NODE,
           ^
Fixes: 06ee6d571f0e ("genirq: Add affinity hint to irq allocation")
Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net>
Cc: linux-pci@vger.kernel.org
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/ipi.c

index 4fd23510d5f2f149cb3bcec379100fb299e28591..1a9abc1c8ea0046d6491d1786645f1c1e4e1eee2 100644 (file)
@@ -83,7 +83,7 @@ int irq_reserve_ipi(struct irq_domain *domain,
        }
 
        virq = __irq_domain_alloc_irqs(domain, virq, nr_irqs, NUMA_NO_NODE,
-                                      (void *) dest, true);
+                                      (void *) dest, true, NULL);
 
        if (virq <= 0) {
                pr_warn("Can't reserve IPI, failed to alloc hw irqs\n");