Wait for a dwork to finish executing the last queueing
bool flush_delayed_work(struct delayed_work * dwork);
dwork
the delayed work to flush
Delayed timer is cancelled and the pending work is queued for immediate execution. Like flush_work, this function only considers the last queueing instance of dwork.
true if flush_work waited for the work to finish execution, false if it was already idle.