analysis: let the soft irq raised state appear in the Resources view
authorCédric Biancheri <cdc.biancheri@gmail.com>
Sun, 8 May 2016 05:08:14 +0000 (01:08 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 23 Sep 2016 14:42:44 +0000 (10:42 -0400)
When a soft irq was raised during an irq the view was swhowing nothing between
the end of the irq and the beginning of the soft irq for a cpu entry.

Change-Id: I22d5e3014efc531c7cf3ee9c48ac59af3a772a2e
Signed-off-by: Cédric Biancheri <cdc.biancheri@gmail.com>
Reviewed-on: https://git.eclipse.org/r/72230
Reviewed-by: Hudson CI
Reviewed-by: Genevieve Bastien <gbastien+lttng@versatic.net>
Tested-by: Genevieve Bastien <gbastien+lttng@versatic.net>
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
analysis/org.eclipse.tracecompass.analysis.os.linux.ui/src/org/eclipse/tracecompass/internal/analysis/os/linux/ui/views/resources/ResourcesPresentationProvider.java

index a25a8ad48a0c59a7727743a0f00f69a481d7121f..c1c69e0f838bc049fbe6eef84cd90e5fc323c9e6 100644 (file)
@@ -107,6 +107,8 @@ public class ResourcesPresentationProvider extends TimeGraphPresentationProvider
                     return State.IRQ;
                 } else if (value == StateValues.CPU_STATUS_SOFTIRQ) {
                     return State.SOFT_IRQ;
+                } else if (value == StateValues.CPU_STATUS_SOFT_IRQ_RAISED) {
+                    return State.SOFT_IRQ_RAISED;
                 }
             } else if (entry.getType() == Type.IRQ) {
                 return State.IRQ_ACTIVE;
This page took 0.024784 seconds and 5 git commands to generate.