Эх сурвалжийг харах

CRISv32: annotate irq enable in idle loop

Use a call to local_irq_enable() instead of incline asm so that the
irqsoff latency tracer knows that interrupts are enabled here.

Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Rabin Vincent 10 жил өмнө
parent
commit
3fffa23ee0

+ 2 - 2
arch/cris/arch-v32/kernel/process.c

@@ -23,9 +23,9 @@ extern void stop_watchdog(void);
 /* We use this if we don't have any better idle routine. */
 /* We use this if we don't have any better idle routine. */
 void default_idle(void)
 void default_idle(void)
 {
 {
+	local_irq_enable();
 	/* Halt until exception. */
 	/* Halt until exception. */
-	__asm__ volatile("ei    \n\t"
-			 "halt      ");
+	__asm__ volatile("halt");
 }
 }
 
 
 /*
 /*