diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-11 17:41:29 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 02:06:08 -0500 |
commit | 65fdf7d264213a9a8de44f9a20e002a26c267a76 (patch) | |
tree | c7279d26e01d0d229a8ca7dd4a5667cc8be7f9b3 /fs/lockd | |
parent | 883bb163f84e0a54b29846c61621f52db3f27393 (diff) |
NLM: Fix a bogus 'return' in nlmclnt_rpc_release
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/clntproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/lockd/clntproc.c b/fs/lockd/clntproc.c index b1a4dba443bc..b6b74a60e1eb 100644 --- a/fs/lockd/clntproc.c +++ b/fs/lockd/clntproc.c | |||
@@ -244,7 +244,7 @@ void nlm_release_call(struct nlm_rqst *call) | |||
244 | 244 | ||
245 | static void nlmclnt_rpc_release(void *data) | 245 | static void nlmclnt_rpc_release(void *data) |
246 | { | 246 | { |
247 | return nlm_release_call(data); | 247 | nlm_release_call(data); |
248 | } | 248 | } |
249 | 249 | ||
250 | static int nlm_wait_on_grace(wait_queue_head_t *queue) | 250 | static int nlm_wait_on_grace(wait_queue_head_t *queue) |