aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-05-11 16:09:32 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2007-07-18 19:17:19 -0400
commit6d34ac199a4af5c678a3a8f3275aeb2586b72da3 (patch)
tree4ab6cffcfe993baa0afb2ab361a8c94ebfc3a444 /fs
parent370f6599e8bc03fd9fc6d1a1be00ae0c6373ca59 (diff)
locks: make posix_test_lock() interface more consistent
Since posix_test_lock(), like fcntl() and ->lock(), indicates absence or presence of a conflict lock by setting fl_type to, respectively, F_UNLCK or something other than F_UNLCK, the return value is no longer needed. Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/locks.c10
-rw-r--r--fs/nfs/file.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/fs/locks.c b/fs/locks.c
index 4c73b857dded..4a8072736efa 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -659,7 +659,7 @@ static int locks_block_on_timeout(struct file_lock *blocker, struct file_lock *w
659 return result; 659 return result;
660} 660}
661 661
662int 662void
663posix_test_lock(struct file *filp, struct file_lock *fl) 663posix_test_lock(struct file *filp, struct file_lock *fl)
664{ 664{
665 struct file_lock *cfl; 665 struct file_lock *cfl;
@@ -671,14 +671,12 @@ posix_test_lock(struct file *filp, struct file_lock *fl)
671 if (posix_locks_conflict(cfl, fl)) 671 if (posix_locks_conflict(cfl, fl))
672 break; 672 break;
673 } 673 }
674 if (cfl) { 674 if (cfl)
675 __locks_copy_lock(fl, cfl); 675 __locks_copy_lock(fl, cfl);
676 unlock_kernel(); 676 else
677 return 1;
678 } else
679 fl->fl_type = F_UNLCK; 677 fl->fl_type = F_UNLCK;
680 unlock_kernel(); 678 unlock_kernel();
681 return 0; 679 return;
682} 680}
683 681
684EXPORT_SYMBOL(posix_test_lock); 682EXPORT_SYMBOL(posix_test_lock);
diff --git a/fs/nfs/file.c b/fs/nfs/file.c
index 13ac6fa2b62b..c87dc713b5d7 100644
--- a/fs/nfs/file.c
+++ b/fs/nfs/file.c
@@ -402,7 +402,9 @@ static int do_getlk(struct file *filp, int cmd, struct file_lock *fl)
402 402
403 lock_kernel(); 403 lock_kernel();
404 /* Try local locking first */ 404 /* Try local locking first */
405 if (posix_test_lock(filp, fl)) { 405 posix_test_lock(filp, fl);
406 if (fl->fl_type != F_UNLCK) {
407 /* found a conflict */
406 goto out; 408 goto out;
407 } 409 }
408 410