diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | tapsets.cxx | 12 |
2 files changed, 2 insertions, 16 deletions
@@ -43,12 +43,6 @@ --ignore-vmlinux, and --ignore-dwarf. * testsuite/{semok,semko}/nodwf*.stp -2008-05-09 Frank Ch. Eigler <fche@elastic.org> - - PR 6487. - * main.cxx (dwarf_query::build_blacklist): Add kernel/relay.c - and kernel/timer.c to probing blacklist. - 2008-05-07 Frank Ch. Eigler <fche@elastic.org> PR 6492. diff --git a/tapsets.cxx b/tapsets.cxx index ef9cf0c6..9528066f 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2704,11 +2704,8 @@ dwarf_query::build_blacklist() // XXX: it would be nice if these blacklisted functions were pulled // in dynamically, instead of being statically defined here. - // Perhaps it could be populated from script files. A - // - // noprobe kernel.function("...")" - // - // construct might do the trick. + // Perhaps it could be populated from script files. A "noprobe + // kernel.function("...")" construct might do the trick. // Most of these are marked __kprobes in newer kernels. We list // them here (anyway) so the translator can block them on older @@ -2779,11 +2776,6 @@ dwarf_query::build_blacklist() blfn += "|.*preempt_count.*"; blfn += "|preempt_schedule"; - // PR 6487, relay/timer interactions - blfile += "|kernel/relay.c"; - blfile += "|kernel/timer.c"; - // blfile += "|kernel/workqueue.c"; - // These functions don't return, so return probes would never be recovered blfn_ret += "do_exit"; // no "|" blfn_ret += "|sys_exit"; |