aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-07-04 17:21:37 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2007-07-18 19:17:06 -0400
commit4698afe8e3a725576366f86560a8a8242b21b9f7 (patch)
treedfa312e0a6bce21a6f502b8b9cf0844281d094a2
parentf9ffed26d6f3e6ac9988947242821579d615fda7 (diff)
locks: export setlease to filesystems
Export setlease so it can used by filesystems to implement their lease methods. Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
-rw-r--r--fs/locks.c3
-rw-r--r--include/linux/fs.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/fs/locks.c b/fs/locks.c
index 94f5d8065e3a..4c73b857dded 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -1336,7 +1336,7 @@ int fcntl_getlease(struct file *filp)
1336 * 1336 *
1337 * Called with kernel lock held. 1337 * Called with kernel lock held.
1338 */ 1338 */
1339static int setlease(struct file *filp, long arg, struct file_lock **flp) 1339int setlease(struct file *filp, long arg, struct file_lock **flp)
1340{ 1340{
1341 struct file_lock *fl, **before, **my_before = NULL, *lease; 1341 struct file_lock *fl, **before, **my_before = NULL, *lease;
1342 struct dentry *dentry = filp->f_path.dentry; 1342 struct dentry *dentry = filp->f_path.dentry;
@@ -1421,6 +1421,7 @@ static int setlease(struct file *filp, long arg, struct file_lock **flp)
1421out: 1421out:
1422 return error; 1422 return error;
1423} 1423}
1424EXPORT_SYMBOL(setlease);
1424 1425
1425 /** 1426 /**
1426 * vfs_setlease - sets a lease on an open file 1427 * vfs_setlease - sets a lease on an open file
diff --git a/include/linux/fs.h b/include/linux/fs.h
index c8ddf34e9710..b188c2e5338d 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -872,6 +872,7 @@ extern int vfs_cancel_lock(struct file *filp, struct file_lock *fl);
872extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl); 872extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl);
873extern int __break_lease(struct inode *inode, unsigned int flags); 873extern int __break_lease(struct inode *inode, unsigned int flags);
874extern void lease_get_mtime(struct inode *, struct timespec *time); 874extern void lease_get_mtime(struct inode *, struct timespec *time);
875extern int setlease(struct file *, long, struct file_lock **);
875extern int vfs_setlease(struct file *, long, struct file_lock **); 876extern int vfs_setlease(struct file *, long, struct file_lock **);
876extern int lease_modify(struct file_lock **, int); 877extern int lease_modify(struct file_lock **, int);
877extern int lock_may_read(struct inode *, loff_t start, unsigned long count); 878extern int lock_may_read(struct inode *, loff_t start, unsigned long count);