Commit f58f2fa9 authored by M. Mohan Kumar's avatar M. Mohan Kumar Committed by Linus Torvalds

kprobes: 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: default avatarM. Mohan Kumar <mohan@in.ibm.com>
Cc: Ankita Garg <ankita@in.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ca976c53
...@@ -283,7 +283,7 @@ static int __init lkdtm_module_init(void) ...@@ -283,7 +283,7 @@ static int __init lkdtm_module_init(void)
switch (cpoint) { switch (cpoint) {
case INT_HARDWARE_ENTRY: case INT_HARDWARE_ENTRY:
lkdtm.kp.symbol_name = "__do_IRQ"; lkdtm.kp.symbol_name = "do_IRQ";
lkdtm.entry = (kprobe_opcode_t*) jp_do_irq; lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
break; break;
case INT_HW_IRQ_EN: case INT_HW_IRQ_EN:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment