Commit 98aa468e, "irqdomain: Support for static IRQ mapping and
association" introduced an API for directly associating blocks of hwirqs
to linux irqs. However, if any irq in that block failed to map (say if
the mapping functions returns an error because the irq is already
mapped) then the whole thing will fail and roll back. This is probably
too aggressive since there are valid reasons why a mapping may fail.
ie. Firmware may have a particular IRQ marked as unusable.

This patch drops the error path out of irq_domain_associate(). If a
mapping fails, then it is simply skipped. There is no reason to fail the
entire allocation.

Signed-off-by: Grant Likely <[email protected]>
Cc: Paul Mundt <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Thomas Gleixner <[email protected]>
---
 kernel/irq/irqdomain.c | 29 +++--------------------------
 1 file changed, 3 insertions(+), 26 deletions(-)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 1db9e70..428ae1db 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -455,28 +455,9 @@ int irq_domain_associate_many(struct irq_domain *domain, 
unsigned int irq_base,
                irq_data->domain = domain;
                if (domain->ops->map) {
                        ret = domain->ops->map(domain, virq, hwirq);
-                       if (ret != 0) {
-                               /*
-                                * If map() returns -EPERM, this interrupt is 
protected
-                                * by the firmware or some other service and 
shall not
-                                * be mapped.
-                                *
-                                * Since on some platforms we blindly try to 
map everything
-                                * we end up with a log full of backtraces.
-                                *
-                                * So instead, we silently fail on -EPERM, it 
is the
-                                * responsibility of the PIC driver to display 
a relevant
-                                * message if needed.
-                                */
-                               if (ret != -EPERM) {
-                                       pr_err("irq-%i==>hwirq-0x%lx mapping 
failed: %d\n",
-                                              virq, hwirq, ret);
-                                       WARN_ON(1);
-                               }
-                               irq_data->domain = NULL;
-                               irq_data->hwirq = 0;
-                               goto err_unmap;
-                       }
+                       /* Some maps are refused; this is probably just fine */
+                       if (ret)
+                               continue;
                }
 
                switch (domain->revmap_type) {
@@ -495,10 +476,6 @@ int irq_domain_associate_many(struct irq_domain *domain, 
unsigned int irq_base,
        }
 
        return 0;
-
- err_unmap:
-       irq_domain_disassociate_many(domain, irq_base, i);
-       return -EINVAL;
 }
 EXPORT_SYMBOL_GPL(irq_domain_associate_many);
 
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to