summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorjistone <jistone>2006-02-08 00:45:25 +0000
committerjistone <jistone>2006-02-08 00:45:25 +0000
commite0ed924a6755dd23e9b34589def18214ccb29849 (patch)
treef74221870822d596a7fb9035be4ee32ee6a589b4 /tapsets.cxx
parent491583109e528fb6144c7288598d650ec58a90df (diff)
downloadsystemtap-steved-e0ed924a6755dd23e9b34589def18214ccb29849.tar.gz
systemtap-steved-e0ed924a6755dd23e9b34589def18214ccb29849.tar.xz
systemtap-steved-e0ed924a6755dd23e9b34589def18214ccb29849.zip
2006-02-07 Josh Stone <joshua.i.stone@intel.com>
PR 2068 * tapsets.cxx (dwarf_query::blacklisted_p): add __switch_to to the blacklist for x86_64 architecture only.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 7705711e..6e5f2146 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -1974,6 +1974,7 @@ dwarf_query::blacklisted_p(string const & funcname,
string filename_s = filename; // is passed as const char*
if (funcname == "do_IRQ" ||
funcname == "notifier_call_chain" ||
+ (funcname == "__switch_to" && sess.architecture == "x86_64") ||
filename_s == "kernel/kprobes.c" ||
0 == fnmatch ("arch/*/kernel/kprobes.c", filename, 0) ||
(has_return && (funcname == "sys_exit" ||