]> git.baikalelectronics.ru Git - kernel.git/commit
net/core: disable NET_RX_BUSY_POLL on PREEMPT_RT
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Fri, 1 Oct 2021 14:58:41 +0000 (16:58 +0200)
committerJakub Kicinski <kuba@kernel.org>
Fri, 1 Oct 2021 22:45:10 +0000 (15:45 -0700)
commitc4d590ebbaa4a4183da1117e3b78208076d584f5
treeab60af79e4689c98dc28042557aac8abcd586572
parent1f95ee816e37267445f822312dd6cce80dbc4478
net/core: disable NET_RX_BUSY_POLL on PREEMPT_RT

napi_busy_loop() disables preemption and performs a NAPI poll. We can't acquire
sleeping locks with disabled preemption which would be required while
__napi_poll() invokes the callback of the driver.

A threaded interrupt performing the NAPI-poll can be preempted on PREEMPT_RT.
A RT thread on another CPU may observe NAPIF_STATE_SCHED bit set and busy-spin
until it is cleared or its spin time runs out. Given it is the task with the
highest priority it will never observe the NEED_RESCHED bit set.
In this case the time is better spent by simply sleeping.

The NET_RX_BUSY_POLL is disabled by default (the system wide sysctls for
poll/read are set to zero). Disabling NET_RX_BUSY_POLL on PREEMPT_RT to avoid
wrong locking context in case it is used.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: https://lore.kernel.org/r/20211001145841.2308454-1-bigeasy@linutronix.de
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/Kconfig