lttng: Fix Perf event layout error
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 3 Feb 2017 14:11:25 +0000 (09:11 -0500)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 3 Feb 2017 20:49:52 +0000 (15:49 -0500)
IRQ entries and exits were inverted.

Change-Id: I38b6ca07fb7bd26d8447d6eb47c786fb7522293b
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Reviewed-on: https://git.eclipse.org/r/90269
Reviewed-by: Hudson CI
analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/internal/analysis/os/linux/core/kernel/KernelStateProvider.java
lttng/org.eclipse.tracecompass.lttng2.kernel.core/src/org/eclipse/tracecompass/internal/lttng2/kernel/core/trace/layout/PerfEventLayout.java

index 780acba92c16da62ebff6cbadf28c22e7f3e5946..b5c04412387aab61c96a5531714382c4cc162cf6 100644 (file)
@@ -79,7 +79,7 @@ public class KernelStateProvider extends AbstractTmfStateProvider {
      * Version number of this state provider. Please bump this if you modify the
      * contents of the generated state history in some way.
      */
-    private static final int VERSION = 22;
+    private static final int VERSION = 23;
 
     // ------------------------------------------------------------------------
     // Fields
index 6c9b44ce45e2c26c5f743565bbec99f19fc7932c..e18022bcfb10133499d75af6ea24bc8236ec9644 100644 (file)
@@ -47,12 +47,12 @@ public final class PerfEventLayout implements IKernelAnalysisEventLayout {
 
     @Override
     public String eventIrqHandlerEntry() {
-        return "irq:irq_handler_exit"; //$NON-NLS-1$
+        return "irq:irq_handler_entry"; //$NON-NLS-1$
     }
 
     @Override
     public String eventIrqHandlerExit() {
-        return "irq:irq_handler_entry"; //$NON-NLS-1$
+        return "irq:irq_handler_exit"; //$NON-NLS-1$
     }
 
     @Override
This page took 0.025575 seconds and 5 git commands to generate.