kprobes: Add mcount to the kprobes blacklist
Since mcount function can be called from everywhere, it should be blacklisted. Moreover, the "mcount" symbol is a special symbol name. So, it is better to put it in the generic blacklist. Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com> Cc: systemtap <systemtap@sources.redhat.com> Cc: DLE <dle-develop@lists.sourceforge.net> Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <20100205062433.3745.36726.stgit@dhcp-100-2-132.bos.redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2161db9693
commit
5ecaafdbf4
|
@ -94,6 +94,7 @@ static struct kprobe_blackpoint kprobe_blacklist[] = {
|
||||||
{"native_get_debugreg",},
|
{"native_get_debugreg",},
|
||||||
{"irq_entries_start",},
|
{"irq_entries_start",},
|
||||||
{"common_interrupt",},
|
{"common_interrupt",},
|
||||||
|
{"mcount",}, /* mcount can be called from everywhere */
|
||||||
{NULL} /* Terminator */
|
{NULL} /* Terminator */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue