aboutsummaryrefslogtreecommitdiffstats
path: root/fs/lockd
diff options
context:
space:
mode:
Diffstat (limited to 'fs/lockd')
-rw-r--r--fs/lockd/clntproc.c2
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;