summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordsmith <dsmith>2006-10-24 14:55:23 +0000
committerdsmith <dsmith>2006-10-24 14:55:23 +0000
commitd390ce2fc97e02822fd285e7a7491020fb1900cb (patch)
tree2b2ba314ea434122713c37ada5e6608fcf3a6f85
parentc787c3a8563790e6c3b3b8d23a294841c9ea8a42 (diff)
downloadsystemtap-steved-d390ce2fc97e02822fd285e7a7491020fb1900cb.tar.gz
systemtap-steved-d390ce2fc97e02822fd285e7a7491020fb1900cb.tar.xz
systemtap-steved-d390ce2fc97e02822fd285e7a7491020fb1900cb.zip
2006-10-24 David Smith <dsmith@redhat.com>
* tapsets.cxx (build_blacklist): Added "atomic_notifier_call_chain" to the blacklist (Bugzilla #3379).
-rw-r--r--ChangeLog5
-rw-r--r--tapsets.cxx1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b5f76da1..1b41669e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-24 David Smith <dsmith@redhat.com>
+
+ * tapsets.cxx (build_blacklist): Added
+ "atomic_notifier_call_chain" to the blacklist (Bugzilla #3379).
+
2006-10-23 David Smith <dsmith@redhat.com>
* main.cxx (printscript): New function containing code moved from
diff --git a/tapsets.cxx b/tapsets.cxx
index 0fe16115..4c2fa2ab 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -2097,6 +2097,7 @@ dwarf_query::build_blacklist()
// Most of these are marked __kprobes in newer kernels. We list them here so
// the translator can block them on older kernels that don't have the
// __kprobes function decorator.
+ blacklisted_probes.insert("atomic_notifier_call_chain");
blacklisted_probes.insert("default_do_nmi");
blacklisted_probes.insert("__die");
blacklisted_probes.insert("die_nmi");