[PATCH] lockd: remove interruptible_sleep_on_timeout() usage From: Nishanth Aravamudan Replace deprecated interruptible_sleep_on_timeout() with direct wait-queue usage. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan Signed-off-by: Domen Puncer Signed-off-by: Alexey Dobriyan Index: linux-kj/fs/lockd/svc.c =================================================================== --- linux-kj.orig/fs/lockd/svc.c 2005-10-11 18:36:46.000000000 +0400 +++ linux-kj/fs/lockd/svc.c 2005-10-11 18:37:15.000000000 +0400 @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -283,6 +284,7 @@ EXPORT_SYMBOL(lockd_up); void lockd_down(void) { + DEFINE_WAIT(wait); static int warned; down(&nlmsvc_sema); @@ -305,7 +307,9 @@ lockd_down(void) * the lockd semaphore, we can't wait around forever ... */ clear_thread_flag(TIF_SIGPENDING); - interruptible_sleep_on_timeout(&lockd_exit, HZ); + prepare_to_wait(&lockd_exit, &wait, TASK_INTERRUPTIBLE); + schedule_timeout(HZ); + finish_wait(&lockd_exit, &wait); if (nlmsvc_pid) { printk(KERN_WARNING "lockd_down: lockd failed to exit, clearing pid\n");