lttng: Add irq_softirq_raise to lttng 2.7 layout
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 18 Feb 2016 22:39:52 +0000 (17:39 -0500)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 19 Feb 2016 22:52:16 +0000 (17:52 -0500)
This patch adds the definition for soft irq raises.

When LTTng 2.7 came out, it renamed softirq raise, entry and exit
events. That patch[1] was tested using the critical path analysis which
does not look up the raise event, only entry and exit. The only view
that shows raised states is the resources view, This patch fixes the
regression on that patch. Testing is only done with an LTTng 2.0 trace
therefore it fell through the cracks on that side too.

[1] e8e9291 lttng: additions definitions for lttng 2.7 and 2.8

Change-Id: Ibd9902d57a8dfb908153df257650235f369a48e0
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/66877
Reviewed-by: Hudson CI
lttng/org.eclipse.tracecompass.lttng2.kernel.core/src/org/eclipse/tracecompass/internal/lttng2/kernel/core/trace/layout/Lttng27EventLayout.java

index dbd151d1fee0d16fbcae16ade7d0877a70ed530e..18dd70fc8aadee81a7cad71067db2e28ef0624f4 100644 (file)
@@ -109,6 +109,11 @@ public class Lttng27EventLayout extends Lttng26EventLayout {
         return "timer_hrtimer_expire_exit"; //$NON-NLS-1$
     }
 
+    @Override
+    public String eventSoftIrqRaise() {
+        return "irq_softirq_raise"; //$NON-NLS-1$
+    }
+
     @Override
     public String eventSoftIrqEntry() {
         return "irq_softirq_entry"; //$NON-NLS-1$
This page took 0.025401 seconds and 5 git commands to generate.