mbox series

[net-next,0/4] net: dev: PREEMPT_RT fixups.

Message ID 20220202122848.647635-1-bigeasy@linutronix.de (mailing list archive)
Headers show
Series net: dev: PREEMPT_RT fixups. | expand

Message

Sebastian Andrzej Siewior Feb. 2, 2022, 12:28 p.m. UTC
Hi,

this series removes or replaces preempt_disable() and local_irq_save()
sections which are problematic on PREEMPT_RT.
Patch 3 makes netif_rx() work from any context after I found suggestions
for it in an old thread. Should that work, then the context-specific
variants could be removed.

Sebastian

Comments

Jakub Kicinski Feb. 2, 2022, 4:14 p.m. UTC | #1
On Wed,  2 Feb 2022 13:28:44 +0100 Sebastian Andrzej Siewior wrote:
> Hi,
> 
> this series removes or replaces preempt_disable() and local_irq_save()
> sections which are problematic on PREEMPT_RT.
> Patch 3 makes netif_rx() work from any context after I found suggestions
> for it in an old thread. Should that work, then the context-specific
> variants could be removed.

Let's CC Toke, lest it escapes his attention.
Toke Høiland-Jørgensen Feb. 3, 2022, 11:59 a.m. UTC | #2
Jakub Kicinski <kuba@kernel.org> writes:

> On Wed,  2 Feb 2022 13:28:44 +0100 Sebastian Andrzej Siewior wrote:
>> Hi,
>> 
>> this series removes or replaces preempt_disable() and local_irq_save()
>> sections which are problematic on PREEMPT_RT.
>> Patch 3 makes netif_rx() work from any context after I found suggestions
>> for it in an old thread. Should that work, then the context-specific
>> variants could be removed.
>
> Let's CC Toke, lest it escapes his attention.

Thanks! I'll take a look :)

-Toke