|
@@ -398,7 +398,7 @@ void call_srcu(struct srcu_struct *sp, struct rcu_head *head,
|
|
|
rcu_batch_queue(&sp->batch_queue, head);
|
|
|
if (!sp->running) {
|
|
|
sp->running = true;
|
|
|
- schedule_delayed_work(&sp->work, 0);
|
|
|
+ queue_delayed_work(system_power_efficient_wq, &sp->work, 0);
|
|
|
}
|
|
|
spin_unlock_irqrestore(&sp->queue_lock, flags);
|
|
|
}
|
|
@@ -674,7 +674,8 @@ static void srcu_reschedule(struct srcu_struct *sp)
|
|
|
}
|
|
|
|
|
|
if (pending)
|
|
|
- schedule_delayed_work(&sp->work, SRCU_INTERVAL);
|
|
|
+ queue_delayed_work(system_power_efficient_wq,
|
|
|
+ &sp->work, SRCU_INTERVAL);
|
|
|
}
|
|
|
|
|
|
/*
|