aboutsummaryrefslogtreecommitdiffstats
path: root/fs/locks.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2006-06-23 05:05:11 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-23 10:43:02 -0400
commitff7b86b82083f24b8637dff1528c7101c18c7f39 (patch)
treebe80c94e4c1410b51190b617fa27caf33b0ba60b /fs/locks.c
parent39005d022ad221b76dc2de0ac62ef475a796433b (diff)
[PATCH] locks: clean up locks_remove_posix()
locks_remove_posix() can use posix_lock_file() instead of doing the lock removal by hand. posix_lock_file() now does exacly the same. The comment about pids no longer applies, posix_lock_file() takes only the owner into account. Signed-off-by: Miklos Szeredi <miklos@szeredi.hu> Cc: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/locks.c')
-rw-r--r--fs/locks.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/fs/locks.c b/fs/locks.c
index 2344f241c687..e588e1c265f7 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -1896,15 +1896,14 @@ out:
1896 */ 1896 */
1897void locks_remove_posix(struct file *filp, fl_owner_t owner) 1897void locks_remove_posix(struct file *filp, fl_owner_t owner)
1898{ 1898{
1899 struct file_lock lock, **before; 1899 struct file_lock lock;
1900 1900
1901 /* 1901 /*
1902 * If there are no locks held on this file, we don't need to call 1902 * If there are no locks held on this file, we don't need to call
1903 * posix_lock_file(). Another process could be setting a lock on this 1903 * posix_lock_file(). Another process could be setting a lock on this
1904 * file at the same time, but we wouldn't remove that lock anyway. 1904 * file at the same time, but we wouldn't remove that lock anyway.
1905 */ 1905 */
1906 before = &filp->f_dentry->d_inode->i_flock; 1906 if (!filp->f_dentry->d_inode->i_flock)
1907 if (*before == NULL)
1908 return; 1907 return;
1909 1908
1910 lock.fl_type = F_UNLCK; 1909 lock.fl_type = F_UNLCK;
@@ -1917,25 +1916,11 @@ void locks_remove_posix(struct file *filp, fl_owner_t owner)
1917 lock.fl_ops = NULL; 1916 lock.fl_ops = NULL;
1918 lock.fl_lmops = NULL; 1917 lock.fl_lmops = NULL;
1919 1918
1920 if (filp->f_op && filp->f_op->lock != NULL) { 1919 if (filp->f_op && filp->f_op->lock != NULL)
1921 filp->f_op->lock(filp, F_SETLK, &lock); 1920 filp->f_op->lock(filp, F_SETLK, &lock);
1922 goto out; 1921 else
1923 } 1922 posix_lock_file(filp, &lock);
1924 1923
1925 /* Can't use posix_lock_file here; we need to remove it no matter
1926 * which pid we have.
1927 */
1928 lock_kernel();
1929 while (*before != NULL) {
1930 struct file_lock *fl = *before;
1931 if (IS_POSIX(fl) && posix_same_owner(fl, &lock)) {
1932 locks_delete_lock(before);
1933 continue;
1934 }
1935 before = &fl->fl_next;
1936 }
1937 unlock_kernel();
1938out:
1939 if (lock.fl_ops && lock.fl_ops->fl_release_private) 1924 if (lock.fl_ops && lock.fl_ops->fl_release_private)
1940 lock.fl_ops->fl_release_private(&lock); 1925 lock.fl_ops->fl_release_private(&lock);
1941} 1926}