diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tapsets.cxx | 14 |
2 files changed, 19 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-04-16 Frank Ch. Eigler <fche@elastic.org> + + PR 6417: From Srinivasa DS <srinivasa@in.ibm.com>: + * tapsets.cxx (build_blacklist): Extend. + 2008-04-15 David Smith <dsmith@redhat.com> * session.h (struct systemtap_session): Added utrace_derived_probe diff --git a/tapsets.cxx b/tapsets.cxx index 69294120..9fc7b455 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2463,6 +2463,20 @@ dwarf_query::build_blacklist() blfn += "|raw_.*"; blfn += "|.*seq_.*lock.*"; + // atomic functions + blfn += "|atomic_long*"; + blfn += "|atomic_add*"; + blfn += "|atomic_dec*"; + blfn += "|atomic_inc*"; + blfn += "|atomic_set*"; + blfn += "|atomic_read*"; + blfn += "|atomic_sub*"; + blfn += "|atomic64_*"; + + // few other problematic cases + blfn += "|get_bh"; + blfn += "|put_bh"; + // Experimental blfn += "|.*apic.*|.*APIC.*"; blfn += "|.*softirq.*"; |