]> sourceware.org Git - systemtap.git/commitdiff
PR13112 Add include/asm/io_64.h blacklist.
authorMark Wielaard <mjw@redhat.com>
Mon, 5 Sep 2011 21:57:44 +0000 (23:57 +0200)
committerMark Wielaard <mjw@redhat.com>
Mon, 5 Sep 2011 21:57:44 +0000 (23:57 +0200)
Also simplify blfile include list (starting .* pattern needed for all
asm/include files means we can collapse some).

dwflpp.cxx

index 23f5713c128b10755d534a0742d690e13139e39a..a05f530062e60dc789d67583e2b8e2716d8c2427 100644 (file)
@@ -2958,16 +2958,13 @@ dwflpp::build_blacklist()
      so prefix those with '.*' - see PR13108 and PR13112. */
   blfile += "kernel/kprobes\\.c"; // first alternative, no "|"
   blfile += "|arch/.*/kernel/kprobes\\.c";
-  // Older kernels need ...
   blfile += "|.*/include/asm/io\\.h";
+  blfile += "|.*/include/asm/io_64\\.h";
   blfile += "|.*/include/asm/bitops\\.h";
-  // While newer ones need ...
-  blfile += "|.*/arch/.*/include/asm/io\\.h";
-  blfile += "|.*/arch/.*/include/asm/bitops\\.h";
   blfile += "|drivers/ide/ide-iops\\.c";
   // paravirt ops
   blfile += "|arch/.*/kernel/paravirt\\.c";
-  blfile += "|.*/arch/.*/include/asm/paravirt\\.h";
+  blfile += "|.*/include/asm/paravirt\\.h";
 
   // XXX: it would be nice if these blacklisted functions were pulled
   // in dynamically, instead of being statically defined here.
This page took 0.088398 seconds and 5 git commands to generate.