NFS: Fix use of cancel_delayed_work_sync in nfs_release_automount_timer

Doh! We can't use cancel_delayed_work_sync because we may have been called
from an unmount that was being performed by nfs_automount_task.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

+1 -1
+1 -1
fs/nfs/namespace.c
··· 176 176 void nfs_release_automount_timer(void) 177 177 { 178 178 if (list_empty(&nfs_automount_list)) 179 - cancel_delayed_work_sync(&nfs_automount_task); 179 + cancel_delayed_work(&nfs_automount_task); 180 180 } 181 181 182 182 /*