Re: [PATCH] x86/alternatives: Add cond_resched() to text_poke_bp_batch()

From: Steven Rostedt
Date: Wed May 31 2023 - 05:10:02 EST


On Tue, 30 May 2023 14:01:48 +0200
Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote:


> > diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c
> > index f615e0cb6d93..e024eddd457f 100644
> > --- a/arch/x86/kernel/alternative.c
> > +++ b/arch/x86/kernel/alternative.c
> > @@ -1953,6 +1953,14 @@ static void text_poke_bp_batch(struct text_poke_loc *tp, unsigned int nr_entries
> > */
> > atomic_set_release(&bp_desc.refs, 1);
> >
> > + /*
> > + * Function tracing can enable thousands of places that need to be
> > + * updated. This can take quite some time, and with full kernel debugging
> > + * enabled, this could cause the softlockup watchdog to trigger.
> > + * Add cond_resched() calls to each phase.
> > + */
> > + cond_resched();
>
> But but but... you can only have TP_VEC_MAX pokes queued, which is 256
> on normal setups.
>
> Please explain how this leads to problems and why you need _3_
> reschedule points here.

I removed all but this first one and it works fine.

I'll resend with the update.

-- Steve