mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 05:11:48 +00:00
cifs: cancel_delayed_work() + flush_scheduled_work() -> cancel_delayed_work_sync()
flush_scheduled_work() is going away. Signed-off-by: Tejun Heo <tj@kernel.org> Reviewed-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
89f150f401
commit
3e24e13287
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user