NLM: Fix a bogus 'return' in nlmclnt_rpc_release
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Fri, 11 Jan 2008 22:41:29 +0000 (17:41 -0500)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Wed, 30 Jan 2008 07:06:08 +0000 (02:06 -0500)
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/lockd/clntproc.c

index b1a4dba..b6b74a6 100644 (file)
@@ -244,7 +244,7 @@ void nlm_release_call(struct nlm_rqst *call)
 
 static void nlmclnt_rpc_release(void *data)
 {
-       return nlm_release_call(data);
+       nlm_release_call(data);
 }
 
 static int nlm_wait_on_grace(wait_queue_head_t *queue)