NLM: Fix a bogus 'return' in nlmclnt_rpc_release
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
883bb163f8
commit
65fdf7d264
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ void nlm_release_call(struct nlm_rqst *call)
|
||||||
|
|
||||||
static void nlmclnt_rpc_release(void *data)
|
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)
|
static int nlm_wait_on_grace(wait_queue_head_t *queue)
|
||||||
|
|
Loading…
Reference in a new issue