diff options
author | Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> | 2017-03-08 12:04:15 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-03-14 14:17:40 -0400 |
commit | 5f6bee34707973ea7879a7857fd63ddccc92fff3 (patch) | |
tree | 9e15f9494d9a70bd0d2295311f0c56a04113070c /kernel/kprobes.c | |
parent | c1ac094d5061e757624a47217d2195ba24a75450 (diff) |
kprobes: Convert kprobe_exceptions_notify to use NOKPROBE_SYMBOL
commit fc62d0207ae0 ("kprobes: Introduce weak variant of
kprobe_exceptions_notify()") used the __kprobes annotation to exclude
kprobe_exceptions_notify from being probed. Since NOKPROBE_SYMBOL() is a
better way to do this enabling the symbol to be discovered as being
blacklisted, change over to using NOKPROBE_SYMBOL().
Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/3f25bf400da5c222cd9b10eec6ded2d6b58209f8.1488991670.git.naveen.n.rao@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'kernel/kprobes.c')
-rw-r--r-- | kernel/kprobes.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/kprobes.c b/kernel/kprobes.c index 448759d4a263..4780ec236035 100644 --- a/kernel/kprobes.c +++ b/kernel/kprobes.c | |||
@@ -1740,11 +1740,12 @@ void unregister_kprobes(struct kprobe **kps, int num) | |||
1740 | } | 1740 | } |
1741 | EXPORT_SYMBOL_GPL(unregister_kprobes); | 1741 | EXPORT_SYMBOL_GPL(unregister_kprobes); |
1742 | 1742 | ||
1743 | int __weak __kprobes kprobe_exceptions_notify(struct notifier_block *self, | 1743 | int __weak kprobe_exceptions_notify(struct notifier_block *self, |
1744 | unsigned long val, void *data) | 1744 | unsigned long val, void *data) |
1745 | { | 1745 | { |
1746 | return NOTIFY_DONE; | 1746 | return NOTIFY_DONE; |
1747 | } | 1747 | } |
1748 | NOKPROBE_SYMBOL(kprobe_exceptions_notify); | ||
1748 | 1749 | ||
1749 | static struct notifier_block kprobe_exceptions_nb = { | 1750 | static struct notifier_block kprobe_exceptions_nb = { |
1750 | .notifier_call = kprobe_exceptions_notify, | 1751 | .notifier_call = kprobe_exceptions_notify, |