diff options
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/file.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index ee140c53dba6..6bcbc4d676c4 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c | |||
@@ -399,7 +399,10 @@ static int do_getlk(struct file *filp, int cmd, struct file_lock *fl) | |||
399 | lock_kernel(); | 399 | lock_kernel(); |
400 | /* Try local locking first */ | 400 | /* Try local locking first */ |
401 | if (posix_test_lock(filp, fl, &cfl)) { | 401 | if (posix_test_lock(filp, fl, &cfl)) { |
402 | locks_copy_lock(fl, &cfl); | 402 | fl->fl_start = cfl.fl_start; |
403 | fl->fl_end = cfl.fl_end; | ||
404 | fl->fl_type = cfl.fl_type; | ||
405 | fl->fl_pid = cfl.fl_pid; | ||
403 | goto out; | 406 | goto out; |
404 | } | 407 | } |
405 | 408 | ||