cancel_delayed_work_sync(9) cancel a delayed work and wait for it to finish

SYNOPSIS

bool cancel_delayed_work_sync(struct delayed_work * dwork);

ARGUMENTS

dwork

the delayed work cancel

DESCRIPTION

This is cancel_work_sync for delayed works.

RETURN

true if dwork was pending, false otherwise.

COPYRIGHT