Cancel a delayed work and wait for it to finish
bool cancel_delayed_work_sync(struct delayed_work * dwork);
dwork
the delayed work cancel
This is cancel_work_sync for delayed works.
true if dwork was pending, false otherwise.