]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
genirq/irqdomain: Remove WARN_ON() on out-of-memory condition
authorGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 27 May 2019 11:57:42 +0000 (13:57 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 28 May 2019 20:10:55 +0000 (13:10 -0700)
There is no need to print a backtrace when memory allocation fails, as
the memory allocation core already takes care of that.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/20190527115742.2693-1-geert+renesas@glider.be
kernel/irq/irqdomain.c

index a453e229f99caf404bf93575abff805b56c4d3d5..e7d17cc3a3d7bb7664ad3a1989da54dab424235b 100644 (file)
@@ -139,7 +139,7 @@ struct irq_domain *__irq_domain_add(struct fwnode_handle *fwnode, int size,
 
        domain = kzalloc_node(sizeof(*domain) + (sizeof(unsigned int) * size),
                              GFP_KERNEL, of_node_to_nid(of_node));
-       if (WARN_ON(!domain))
+       if (!domain)
                return NULL;
 
        if (fwnode && is_fwnode_irqchip(fwnode)) {