Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e24e132 authored by Tejun Heo's avatar Tejun Heo Committed by Steve French
Browse files

cifs: cancel_delayed_work() + flush_scheduled_work() -> cancel_delayed_work_sync()



flush_scheduled_work() is going away.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reviewed-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 89f150f4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -44,8 +44,7 @@ static void cifs_dfs_expire_automounts(struct work_struct *work)
void cifs_dfs_release_automount_timer(void)
{
	BUG_ON(!list_empty(&cifs_dfs_automount_list));
	cancel_delayed_work(&cifs_dfs_automount_task);
	flush_scheduled_work();
	cancel_delayed_work_sync(&cifs_dfs_automount_task);
}

/**