From: Daniel Guilak Date: Thu, 10 Jul 2008 16:38:19 +0000 (-0700) Subject: kernel/kprobes.c: Made kprobe_blacklist static. X-Git-Tag: v2.6.26~34 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=544304b200c3869bc1312bcf941c4cf04d65b56c;p=~emulex%2Finfiniband.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 d4998f81e22..1485ca8d0e0 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 */ };