diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-08-22 10:18:44 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@primarydata.com> | 2014-09-09 16:01:09 -0400 |
commit | 699688a416524c3cea9eafaca69fc6c06c13c02e (patch) | |
tree | 3ece46a475ab54135bbcd01d97a563c52a1f2eaa /include/linux/fs.h | |
parent | 09802fd2a8caea2a2147fca8d7975697c5de573d (diff) | |
download | linux-699688a416524c3cea9eafaca69fc6c06c13c02e.tar.gz linux-699688a416524c3cea9eafaca69fc6c06c13c02e.tar.bz2 linux-699688a416524c3cea9eafaca69fc6c06c13c02e.zip |
locks: remove lock_may_read and lock_may_write
There are no callers of these functions.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 3b07ce2698de..458f733c96bd 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -985,8 +985,6 @@ extern void lease_get_mtime(struct inode *, struct timespec *time); extern int generic_setlease(struct file *, long, struct file_lock **); extern int vfs_setlease(struct file *, long, struct file_lock **); extern int lease_modify(struct file_lock **, int); -extern int lock_may_read(struct inode *, loff_t start, unsigned long count); -extern int lock_may_write(struct inode *, loff_t start, unsigned long count); #else /* !CONFIG_FILE_LOCKING */ static inline int fcntl_getlk(struct file *file, unsigned int cmd, struct flock __user *user) @@ -1117,18 +1115,6 @@ static inline int lease_modify(struct file_lock **before, int arg) { return -EINVAL; } - -static inline int lock_may_read(struct inode *inode, loff_t start, - unsigned long len) -{ - return 1; -} - -static inline int lock_may_write(struct inode *inode, loff_t start, - unsigned long len) -{ - return 1; -} #endif /* !CONFIG_FILE_LOCKING */ |