[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20090624142801.GC8664@in.ibm.com>
Date: Wed, 24 Jun 2009 19:58:01 +0530
From: "M. Mohan Kumar" <mohan@...ibm.com>
To: torvalds@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org, ankita@...ibm.com
Subject: [PATCH] Use do_IRQ in lkdtm
[PATCH] Use do_IRQ in lkdtm
Current lkdtm code puts a probe on __do_IRQ for some of the kdump test
cases. Since __do_IRQ is deprecated, change lkdtm code to use do_IRQ
function.
Signed-off-by: M. Mohan Kumar <mohan@...ibm.com>
Cc: Ankita Garg <ankita@...ibm.com>
---
drivers/misc/lkdtm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/misc/lkdtm.c b/drivers/misc/lkdtm.c
index 1bfe5d1..3648b23 100644
--- a/drivers/misc/lkdtm.c
+++ b/drivers/misc/lkdtm.c
@@ -283,7 +283,7 @@ static int __init lkdtm_module_init(void)
switch (cpoint) {
case INT_HARDWARE_ENTRY:
- lkdtm.kp.symbol_name = "__do_IRQ";
+ lkdtm.kp.symbol_name = "do_IRQ";
lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
break;
case INT_HW_IRQ_EN:
--
1.6.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists