diff options
author | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-02-12 20:00:27 +0530 |
---|---|---|
committer | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-02-12 20:00:27 +0530 |
commit | 275a898f43b2e6f7a55112fce91cbeb8a32f99ac (patch) | |
tree | e230902bdbdf55554be8f5e4d76c0cd197559ba0 /tapsets.cxx | |
parent | ccae4f38c9107f56b99bfc19ed01cea03d370576 (diff) | |
download | systemtap-steved-275a898f43b2e6f7a55112fce91cbeb8a32f99ac.tar.gz systemtap-steved-275a898f43b2e6f7a55112fce91cbeb8a32f99ac.tar.xz systemtap-steved-275a898f43b2e6f7a55112fce91cbeb8a32f99ac.zip |
Extend blacklist to cover bitops.h. While there, fixup paths for existing blacklisted files
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index d479efda..17fea0c4 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -3144,7 +3144,12 @@ dwarf_query::build_blacklist() blfile += "kernel/kprobes.c"; // first alternative, no "|" blfile += "|arch/.*/kernel/kprobes.c"; + // Older kernels need ... blfile += "|include/asm/io.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"; // XXX: it would be nice if these blacklisted functions were pulled |