From a11f4bae4d8bf226520308b44342a14cd02cb196 Mon Sep 17 00:00:00 2001 From: Srinivasa DS Date: Wed, 16 Apr 2008 12:30:09 -0400 Subject: PR6417: extend kprobe blacklist some more --- tapsets.cxx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tapsets.cxx') 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.*"; -- cgit