Skip to content

Commit

Permalink
lockd: Fix a typo in nlmsvc_grant_release()
Browse files Browse the repository at this point in the history
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Trond Myklebust authored and Trond Myklebust committed Mar 20, 2006
1 parent d471662 commit 6041b79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fs/lockd/svclock.c
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,9 @@ static void nlmsvc_grant_callback(struct rpc_task *task, void *data)

void nlmsvc_grant_release(void *data)
{
nlmsvc_release_block(data);
struct nlm_rqst *call = data;

nlmsvc_release_block(call->a_block);
}

static const struct rpc_call_ops nlmsvc_grant_ops = {
Expand Down

0 comments on commit 6041b79

Please sign in to comment.