diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-06-17 16:23:01 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-06-17 16:23:01 -0400 |
commit | 5cd973c44a92f4abf8f7084c804089b3eaa7b4bf (patch) | |
tree | 7bea559ab6c0a2ab4885a6064147b0cae20b8293 /fs/lockd/clntproc.c | |
parent | 3f09df70e3a33590ae5a97b8a15486d3711c7065 (diff) |
NFSv4/NLM: Push file locking BKL dependencies down into the NLM layer
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/lockd/clntproc.c')
-rw-r--r-- | fs/lockd/clntproc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/lockd/clntproc.c b/fs/lockd/clntproc.c index dd7957064a8c..273e229353f3 100644 --- a/fs/lockd/clntproc.c +++ b/fs/lockd/clntproc.c | |||
@@ -165,6 +165,7 @@ int nlmclnt_proc(struct nlm_host *host, int cmd, struct file_lock *fl) | |||
165 | /* Set up the argument struct */ | 165 | /* Set up the argument struct */ |
166 | nlmclnt_setlockargs(call, fl); | 166 | nlmclnt_setlockargs(call, fl); |
167 | 167 | ||
168 | lock_kernel(); | ||
168 | if (IS_SETLK(cmd) || IS_SETLKW(cmd)) { | 169 | if (IS_SETLK(cmd) || IS_SETLKW(cmd)) { |
169 | if (fl->fl_type != F_UNLCK) { | 170 | if (fl->fl_type != F_UNLCK) { |
170 | call->a_args.block = IS_SETLKW(cmd) ? 1 : 0; | 171 | call->a_args.block = IS_SETLKW(cmd) ? 1 : 0; |
@@ -178,6 +179,7 @@ int nlmclnt_proc(struct nlm_host *host, int cmd, struct file_lock *fl) | |||
178 | 179 | ||
179 | fl->fl_ops->fl_release_private(fl); | 180 | fl->fl_ops->fl_release_private(fl); |
180 | fl->fl_ops = NULL; | 181 | fl->fl_ops = NULL; |
182 | unlock_kernel(); | ||
181 | 183 | ||
182 | dprintk("lockd: clnt proc returns %d\n", status); | 184 | dprintk("lockd: clnt proc returns %d\n", status); |
183 | return status; | 185 | return status; |