aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/kprobes.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/kprobes.c b/arch/x86_64/kernel/kprobes.c
index 14f0ced613b..218e015c319 100644
--- a/arch/x86_64/kernel/kprobes.c
+++ b/arch/x86_64/kernel/kprobes.c
@@ -601,6 +601,9 @@ int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
601 struct die_args *args = (struct die_args *)data; 601 struct die_args *args = (struct die_args *)data;
602 int ret = NOTIFY_DONE; 602 int ret = NOTIFY_DONE;
603 603
604 if (args->regs && user_mode(args->regs))
605 return ret;
606
604 switch (val) { 607 switch (val) {
605 case DIE_INT3: 608 case DIE_INT3:
606 if (kprobe_handler(args->regs)) 609 if (kprobe_handler(args->regs))