2023-05-05 12:16:16

by Eric Dumazet

[permalink] [raw]
Subject: Re: [PATCH 4/9] softirq: Allow early break

On Fri, May 5, 2023 at 1:24 PM Liu Jian <[email protected]> wrote:
>
> From: Peter Zijlstra <[email protected]>
>
> Allow terminating the softirq processing loop without finishing the
> vectors.
>
> Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
> Signed-off-by: Liu Jian <[email protected]>
> ---
> kernel/softirq.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/kernel/softirq.c b/kernel/softirq.c
> index 48a81d8ae49a..e2cad5d108c8 100644
> --- a/kernel/softirq.c
> +++ b/kernel/softirq.c
> @@ -582,6 +582,9 @@ asmlinkage __visible void __softirq_entry __do_softirq(void)
> prev_count, preempt_count());
> preempt_count_set(prev_count);
> }
> +
> + if (pending && __softirq_needs_break(start))
> + break;

This means that some softirq may starve, because

for_each_set_bit(vec_nr, &pending, NR_SOFTIRQS)

Always iterate using the same order (of bits)




> }
>
> if (!IS_ENABLED(CONFIG_PREEMPT_RT) &&
> @@ -590,13 +593,14 @@ asmlinkage __visible void __softirq_entry __do_softirq(void)
>
> local_irq_disable();
>
> - pending = local_softirq_pending();
> - if (pending) {
> - if (!__softirq_needs_break(start) && --max_restart)
> - goto restart;
> + if (pending)
> + or_softirq_pending(pending);
> + else if ((pending = local_softirq_pending()) &&
> + !__softirq_needs_break(start) &&
> + --max_restart)
> + goto restart;
>
> - wakeup_softirqd();
> - }
> + wakeup_softirqd();
>
> account_softirq_exit(current);
> lockdep_softirq_end(in_hardirq);
> --
> 2.34.1
>