]> sourceware.org Git - systemtap.git/commitdiff
2006-02-07 Josh Stone <joshua.i.stone@intel.com>
authorjistone <jistone>
Wed, 8 Feb 2006 00:45:25 +0000 (00:45 +0000)
committerjistone <jistone>
Wed, 8 Feb 2006 00:45:25 +0000 (00:45 +0000)
PR 2068
* tapsets.cxx (dwarf_query::blacklisted_p): add __switch_to
to the blacklist for x86_64 architecture only.

ChangeLog
tapsets.cxx

index ba967de5bcc8fe88b4783e6a0e9057c67028d553..46e197ffdd8f79c1763c0366850c4ee37547ca80 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
 2006-02-06  Will Cohen  <wcohen@redhat.com>
 
        * tapset/syscall2.stp: Correct opening comment typo.
index 7705711e380efe2178b55d5b95e23b0a247014bf..6e5f2146176f788bcd50c0888cc16fa6734f1fb5 100644 (file)
@@ -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" ||
This page took 0.043411 seconds and 5 git commands to generate.