kernel: workqueue.c: Fix -Werror,-Wimplicit-function-declaration

This commit is contained in:
Ksawlii 2024-11-17 19:41:51 +01:00
parent b4441420c9
commit aa97f7f06c

View file

@ -1796,7 +1796,7 @@ bool queue_rcu_work(struct workqueue_struct *wq, struct rcu_work *rwork)
if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
rwork->wq = wq;
call_rcu_flush(&rwork->rcu, rcu_work_rcufn);
call_rcu(&rwork->rcu, rcu_work_rcufn);
return true;
}