]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - fs/locks.c
locks: fix setlease methods to free passed-in lock
[net-next-2.6.git] / fs / locks.c
index 63fbc41cc573c0161c19ed83a1f16819acd0f7fd..5b526a9778828977871d01e610fdfd797da0527a 100644 (file)
@@ -186,7 +186,7 @@ void locks_release_private(struct file_lock *fl)
 EXPORT_SYMBOL_GPL(locks_release_private);
 
 /* Free a lock which is not in use. */
-static void locks_free_lock(struct file_lock *fl)
+void locks_free_lock(struct file_lock *fl)
 {
        BUG_ON(waitqueue_active(&fl->fl_wait));
        BUG_ON(!list_empty(&fl->fl_block));
@@ -195,6 +195,7 @@ static void locks_free_lock(struct file_lock *fl)
        locks_release_private(fl);
        kmem_cache_free(filelock_cache, fl);
 }
+EXPORT_SYMBOL(locks_free_lock);
 
 void locks_init_lock(struct file_lock *fl)
 {