1FLUSH_DELAYED_WORK(9) Driver Basics FLUSH_DELAYED_WORK(9)
2
3
4
6 flush_delayed_work - wait for a dwork to finish executing the last
7 queueing
8
10 bool flush_delayed_work(struct delayed_work * dwork);
11
13 dwork
14 the delayed work to flush
15
17 Delayed timer is cancelled and the pending work is queued for immediate
18 execution. Like flush_work, this function only considers the last
19 queueing instance of dwork.
20
22 true if flush_work waited for the work to finish execution, false if it
23 was already idle.
24
26Kernel Hackers Manual 3.10 June 2019 FLUSH_DELAYED_WORK(9)