x86/alternatives: Add cond_resched() to text_poke_bp_batch()
authorSteven Rostedt (Google) <rostedt@goodmis.org>
Wed, 31 May 2023 13:24:19 +0000 (09:24 -0400)
committerBorislav Petkov (AMD) <bp@alien8.de>
Wed, 14 Jun 2023 16:50:00 +0000 (18:50 +0200)
commit9350a629e839ca1c2b529a83a916cf2370bd1c64
tree98fec5701d857871dda0824f7c8d394b6a4b56a3
parent3496d1c64a0fcc9bae3ed40decc3ecd7f8ac072f
x86/alternatives: Add cond_resched() to text_poke_bp_batch()

Debugging in the kernel has started slowing down the kernel by a
noticeable amount. The ftrace start up tests are triggering the softlockup
watchdog on some boxes. This is caused by the start up tests that enable
function and function graph tracing several times. Sprinkling
cond_resched() just in the start up test code was not enough to stop the
softlockup from triggering. It would sometimes trigger in the
text_poke_bp_batch() code.

When function tracing enables all functions, it will call
text_poke_queue() to queue the places that need to be patched. Every
256 entries will do a "flush" that calls text_poke_bp_batch() to do the
update of the 256 locations. As this is in a scheduleable context,
calling cond_resched() at the start of text_poke_bp_batch() will ensure
that other tasks could get a chance to run while the patching is
happening. This keeps the softlockup from triggering in the start up
tests.

Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20230531092419.4d051374@rorschach.local.home
arch/x86/kernel/alternative.c