diff options
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
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.*"; |