1. NAME

cancel_delayed_work_sync - cancel a delayed work and wait for it to finish

2. SYNOPSIS

bool cancel_delayed_work_sync(struct delayed_work *  dwork );

3. ARGUMENTS

dwork
    the delayed work cancel

4. DESCRIPTION

This is cancel_work_sync for delayed works.

5. RETURNS

true if dwork was pending, false otherwise.

6. COPYRIGHT