diff options
author | Jeff Layton <jeff.layton@primarydata.com> | 2015-07-11 06:43:03 -0400 |
---|---|---|
committer | Jeff Layton <jeff.layton@primarydata.com> | 2015-07-13 06:29:11 -0400 |
commit | ee296d7c5709440f8abd36b5b65c6b3e388538d9 (patch) | |
tree | df7ad7994f512987b2b10102dea5b2586b14efcd /fs | |
parent | 83bfff23e9ed19f37c4ef0bba84e75bd88e5cf21 (diff) | |
download | linux-ee296d7c5709440f8abd36b5b65c6b3e388538d9.tar.gz linux-ee296d7c5709440f8abd36b5b65c6b3e388538d9.tar.bz2 linux-ee296d7c5709440f8abd36b5b65c6b3e388538d9.zip |
locks: inline posix_lock_file_wait and flock_lock_file_wait
They just call file_inode and then the corresponding *_inode_file_wait
function. Just make them static inlines instead.
Signed-off-by: Jeff Layton <jeff.layton@primarydata.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/locks.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/fs/locks.c b/fs/locks.c index ba268a503c1b..d3d558ba4da7 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -1190,21 +1190,6 @@ int posix_lock_inode_wait(struct inode *inode, struct file_lock *fl) EXPORT_SYMBOL(posix_lock_inode_wait); /** - * posix_lock_file_wait - Apply a POSIX-style lock to a file - * @filp: The file to apply the lock to - * @fl: The lock to be applied - * - * Add a POSIX style lock to a file. - * We merge adjacent & overlapping locks whenever possible. - * POSIX locks are sorted by owner task, then by starting address - */ -int posix_lock_file_wait(struct file *filp, struct file_lock *fl) -{ - return posix_lock_inode_wait(file_inode(filp), fl); -} -EXPORT_SYMBOL(posix_lock_file_wait); - -/** * locks_mandatory_locked - Check for an active lock * @file: the file to check * @@ -1890,19 +1875,6 @@ int flock_lock_inode_wait(struct inode *inode, struct file_lock *fl) EXPORT_SYMBOL(flock_lock_inode_wait); /** - * flock_lock_file_wait - Apply a FLOCK-style lock to a file - * @filp: The file to apply the lock to - * @fl: The lock to be applied - * - * Add a FLOCK style lock to a file. - */ -int flock_lock_file_wait(struct file *filp, struct file_lock *fl) -{ - return flock_lock_inode_wait(file_inode(filp), fl); -} -EXPORT_SYMBOL(flock_lock_file_wait); - -/** * sys_flock: - flock() system call. * @fd: the file descriptor to lock. * @cmd: the type of lock to apply. |