Skip to content

Commit 097854a

Browse files
committed
ACPI: processor idle: avoid call to raw_local_irq_disable() from acpi_safe_halt()
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2217308 Upstream Status: RHEL-only Although it works upstream, for some reason calling raw_local_irq_disable() results in the following error during cpu idle: WARNING: CPU: 0 PID: 0 at kernel/sched/clock.c:397 sched_clock_tick+0xfa/0x150 For now call local_irq_disable() on RHEL until this issue is resolved. Signed-off-by: David Arcari <darcari@redhat.com>
1 parent 5889857 commit 097854a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/acpi/processor_idle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ static void __cpuidle acpi_safe_halt(void)
110110
{
111111
if (!tif_need_resched()) {
112112
raw_safe_halt();
113-
raw_local_irq_disable();
113+
local_irq_disable();
114114
}
115115
}
116116

0 commit comments

Comments
 (0)