[PATCH 6/7] powerpc/crashdump: Do not fail on NULL pointerdereferencing

From: Kamalesh Babulal
Date: Mon Mar 07 2011 - 06:54:34 EST


powerpc/crashdump: Do not fail on NULL pointer dereferencing

Commit: 426b6cb478e60352a463a0d1ec75c1c9fab30b13 upstream

Signed-off-by: Maxim Uvarov <muvarov@xxxxxxxxx>
Signed-off-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx>
Signed-off-by: Kamalesh babulal <kamalesh@xxxxxxxxxxxxxxxxxx>
cc: Anton Blanchard <anton@xxxxxxxxx>
---
arch/powerpc/kernel/crash.c | 3 +++
1 file changed, 3 insertions(+)

Index: b/arch/powerpc/kernel/crash.c
===================================================================
--- a/arch/powerpc/kernel/crash.c 2011-03-07 00:59:25.108253005 -0800
+++ b/arch/powerpc/kernel/crash.c 2011-03-07 01:01:07.004296733 -0800
@@ -378,6 +378,9 @@
for_each_irq(i) {
struct irq_desc *desc = irq_desc + i;

+ if (!desc || !desc->chip || !desc->chip->eoi)
+ continue;
+
if (desc->status & IRQ_INPROGRESS)
desc->chip->eoi(i);

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