]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/locks.c
[SCSI] lpfc 8.1.2: Change version number to 8.1.2
[linux-2.6-omap-h63xx.git] / fs / locks.c
index 75650d52fe60a126cdfbb523f039dc08f9954855..909eab8fb1d09ba157f578a4817fefb7d0937c36 100644 (file)
@@ -154,7 +154,7 @@ static struct file_lock *locks_alloc_lock(void)
 }
 
 /* Free a lock which is not in use. */
-static inline void locks_free_lock(struct file_lock *fl)
+static void locks_free_lock(struct file_lock *fl)
 {
        if (fl == NULL) {
                BUG();
@@ -475,8 +475,7 @@ static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
 /*
  * Check whether two locks have the same owner.
  */
-static inline int
-posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
+static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
 {
        if (fl1->fl_lmops && fl1->fl_lmops->fl_compare_owner)
                return fl2->fl_lmops == fl1->fl_lmops &&
@@ -487,7 +486,7 @@ posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
 /* Remove waiter from blocker's block list.
  * When blocker ends up pointing to itself then the list is empty.
  */
-static inline void __locks_delete_block(struct file_lock *waiter)
+static void __locks_delete_block(struct file_lock *waiter)
 {
        list_del_init(&waiter->fl_block);
        list_del_init(&waiter->fl_link);
@@ -1958,13 +1957,18 @@ EXPORT_SYMBOL(posix_block_lock);
  *
  *     lockd needs to block waiting for locks.
  */
-void
+int
 posix_unblock_lock(struct file *filp, struct file_lock *waiter)
 {
+       int status = 0;
+
        lock_kernel();
        if (waiter->fl_next)
                __locks_delete_block(waiter);
+       else
+               status = -ENOENT;
        unlock_kernel();
+       return status;
 }
 
 EXPORT_SYMBOL(posix_unblock_lock);