提交 288b2fd8 编写于 作者: D David M. Richter 提交者: J. Bruce Fields

leases: when unlocking, skip locking-related steps

In generic_setlease(), we don't need to allocate a new struct file_lock
or check for readers or writers when called with F_UNLCK.
Signed-off-by: NDavid M. Richter <richterd@citi.umich.edu>
Signed-off-by: NJ. Bruce Fields <bfields@citi.umich.edu>
上级 5fcc60c3
...@@ -1367,18 +1367,20 @@ int generic_setlease(struct file *filp, long arg, struct file_lock **flp) ...@@ -1367,18 +1367,20 @@ int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
lease = *flp; lease = *flp;
error = -EAGAIN; if (arg != F_UNLCK) {
if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0)) error = -EAGAIN;
goto out; if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
if ((arg == F_WRLCK) goto out;
&& ((atomic_read(&dentry->d_count) > 1) if ((arg == F_WRLCK)
|| (atomic_read(&inode->i_count) > 1))) && ((atomic_read(&dentry->d_count) > 1)
goto out; || (atomic_read(&inode->i_count) > 1)))
goto out;
error = -ENOMEM; error = -ENOMEM;
new_fl = locks_alloc_lock(); new_fl = locks_alloc_lock();
if (new_fl == NULL) if (new_fl == NULL)
goto out; goto out;
}
/* /*
* At this point, we know that if there is an exclusive * At this point, we know that if there is an exclusive
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册