Commit 544304b200c3869bc1312bcf941c4cf04d65b56c

Authored by Daniel Guilak
Committed by Linus Torvalds
1 parent 08405b8bd1

kernel/kprobes.c: Made kprobe_blacklist static.

Signed-off-by: Daniel Guilak <daniel@danielguilak.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -79,7 +79,7 @@
79 79 *
80 80 * For such cases, we now have a blacklist
81 81 */
82   -struct kprobe_blackpoint kprobe_blacklist[] = {
  82 +static struct kprobe_blackpoint kprobe_blacklist[] = {
83 83 {"preempt_schedule",},
84 84 {NULL} /* Terminator */
85 85 };