diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 13:44:45 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 13:44:45 -0500 |
commit | 6041b79192bdf0e7ab18ea6859effa5d8311391b (patch) | |
tree | f1491d4dd0dbdc829273c71e707c0adf771f5d0b /fs/lockd | |
parent | d47166244860eb5dfdb12ee4703968beef8a0db2 (diff) |
lockd: Fix a typo in nlmsvc_grant_release()
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/svclock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/lockd/svclock.c b/fs/lockd/svclock.c index 185bf7ea1c0c..c16c94f5a856 100644 --- a/fs/lockd/svclock.c +++ b/fs/lockd/svclock.c | |||
@@ -638,7 +638,9 @@ static void nlmsvc_grant_callback(struct rpc_task *task, void *data) | |||
638 | 638 | ||
639 | void nlmsvc_grant_release(void *data) | 639 | void nlmsvc_grant_release(void *data) |
640 | { | 640 | { |
641 | nlmsvc_release_block(data); | 641 | struct nlm_rqst *call = data; |
642 | |||
643 | nlmsvc_release_block(call->a_block); | ||
642 | } | 644 | } |
643 | 645 | ||
644 | static const struct rpc_call_ops nlmsvc_grant_ops = { | 646 | static const struct rpc_call_ops nlmsvc_grant_ops = { |