]> sourceware.org Git - systemtap.git/commitdiff
Minor fix to tapset/linux/target_set.stp.
authorDavid Smith <dsmith@redhat.com>
Thu, 19 Mar 2015 19:05:01 +0000 (14:05 -0500)
committerDavid Smith <dsmith@redhat.com>
Thu, 19 Mar 2015 19:05:01 +0000 (14:05 -0500)
* tapset/linux/target_set.stp: Remove special test for ia64, since it does
  support dwarfless probes.

tapset/linux/target_set.stp

index 46ed0758eed4e2c51c7ea31936854bd1db1a7c4e..645ed3ce68a1cc928b5f709ef463e72d7fcfb586 100644 (file)
@@ -22,11 +22,11 @@ probe init
 }
 
 
-# ia64 systems and pre-2.6.18 systems don't support dwarfless probes,
+# pre-2.6.18 systems don't support dwarfless probes,
 # so we'll use 'syscall' probes instead of 'nd_syscall' probes.
 
 probe process.begin!,
-%( arch != "ia64" && kernel_v >= "2.6.18" %?
+%( kernel_v >= "2.6.18" %?
       nd_syscall.fork.return!,
 %)
       syscall.fork.return
@@ -49,7 +49,7 @@ probe process.begin!,
 }
 
 probe process.end!,
-%( arch != "ia64" && kernel_v >= "2.6.18" %?
+%( kernel_v >= "2.6.18" %?
       nd_syscall.exit!,
 %)
       syscall.exit
This page took 0.029768 seconds and 5 git commands to generate.