提交 3d5631e0 编写于 作者: A Anil S Keshavamurthy 提交者: Linus Torvalds

[PATCH] Kprobes registers for notify page fault

Kprobes now registers for page fault notifications.
Signed-off-by: NAnil S Keshavamurthy <anil.s.keshavmurthy@intel.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 d98f8f05
......@@ -556,6 +556,11 @@ void __kprobes unregister_kprobe(struct kprobe *p)
}
static struct notifier_block kprobe_exceptions_nb = {
.notifier_call = kprobe_exceptions_notify,
.priority = 0x7fffffff /* we need to be notified first */
};
static struct notifier_block kprobe_page_fault_nb = {
.notifier_call = kprobe_exceptions_notify,
.priority = 0x7fffffff /* we need to notified first */
};
......@@ -673,6 +678,9 @@ static int __init init_kprobes(void)
if (!err)
err = register_die_notifier(&kprobe_exceptions_nb);
if (!err)
err = register_page_fault_notifier(&kprobe_page_fault_nb);
return err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册