Re: [PATCH v2 1/3] hrtimer: Use __raise_softirq_irqoff() to raise the softirq.

2024-10-28 Thread Frederic Weisbecker
Le Thu, Oct 24, 2024 at 04:55:49PM +0200, Sebastian Andrzej Siewior a écrit : > As an optimisation use __raise_softirq_irqoff() to raise the softirq. > This is always called from an interrupt handler so it can be reduced to > just or set softirq flag and let softirq be invoked on return from > inte

[PATCH v2 1/3] hrtimer: Use __raise_softirq_irqoff() to raise the softirq.

2024-10-24 Thread Sebastian Andrzej Siewior
As an optimisation use __raise_softirq_irqoff() to raise the softirq. This is always called from an interrupt handler so it can be reduced to just or set softirq flag and let softirq be invoked on return from interrupt. Use __raise_softirq_irqoff() to raise the softirq. Signed-off-by: Sebastian A