From: Daniel Guilak Date: Thu, 10 Jul 2008 16:38:19 +0000 (-0700) Subject: kernel/kprobes.c: Made kprobe_blacklist static. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=544304b200c3869bc1312bcf941c4cf04d65b56c;p=linux-beck.git kernel/kprobes.c: Made kprobe_blacklist static. Signed-off-by: Daniel Guilak Signed-off-by: Linus Torvalds --- diff --git a/kernel/kprobes.c b/kernel/kprobes.c index d4998f81e229..1485ca8d0e00 100644 --- a/kernel/kprobes.c +++ b/kernel/kprobes.c @@ -79,7 +79,7 @@ static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL; * * For such cases, we now have a blacklist */ -struct kprobe_blackpoint kprobe_blacklist[] = { +static struct kprobe_blackpoint kprobe_blacklist[] = { {"preempt_schedule",}, {NULL} /* Terminator */ };