Revert "net: linkwatch: use system_unbound_wq"

This reverts commit 511ce8b5bf.
This commit is contained in:
Ksawlii 2024-11-24 00:23:55 +01:00
parent 97133e2e2e
commit 403fa37a8b

View file

@ -138,9 +138,9 @@ static void linkwatch_schedule_work(int urgent)
* override the existing timer.
*/
if (test_bit(LW_URGENT, &linkwatch_flags))
mod_delayed_work(system_unbound_wq, &linkwatch_work, 0);
mod_delayed_work(system_wq, &linkwatch_work, 0);
else
queue_delayed_work(system_unbound_wq, &linkwatch_work, delay);
schedule_delayed_work(&linkwatch_work, delay);
}