diff --git a/net/core/dev.c b/net/core/dev.c index 1e41971c0617..f80bc2ca888a 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -7143,6 +7143,8 @@ static int napi_threaded_poll(void *data) void *have; while (!napi_thread_wait(napi)) { + unsigned long last_qs = jiffies; + for (;;) { bool repoll = false; @@ -7157,6 +7159,7 @@ static int napi_threaded_poll(void *data) if (!repoll) break; + rcu_softirq_qs_periodic(last_qs); cond_resched(); } }