Revert "ANDROID: arm64: smp: fix Lockdep warning: RCU used illegally from idle CPU."

This reverts commit 4af50419db.

This patch for an unused/undefined hook causes a kernelci build break:

arch/arm64/kernel/smp.c:885:3: error: implicit declaration of function
‘trace_android_vh_ipi_stop_rcuidle’

The hook is not even defined anywhere so there is no reason to carry it.

Fixes: 4af50419db ("ANDROID: arm64: smp: fix Lockdep warning: RCU used illegally from idle CPU.")

Change-Id: I59989920dd76db589cc9aa0d01ba1c740ea6c8d5
Signed-off-by: Todd Kjos <tkjos@google.com>
This commit is contained in:
Todd Kjos 2022-10-07 22:26:17 +00:00 committed by Treehugger Robot
parent 6c1433de4a
commit 1567e57cb6

View File

@ -882,7 +882,7 @@ static void do_handle_IPI(int ipinr)
break;
case IPI_CPU_STOP:
trace_android_vh_ipi_stop_rcuidle(get_irq_regs());
trace_android_vh_ipi_stop(get_irq_regs());
local_cpu_stop();
break;