mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-07 14:32:23 +00:00
configfs: Fix inconsistent use of file_inode() vs file->f_path.dentry->d_inode
Fix inconsistent use of file_inode() vs file->f_path.dentry->d_inode. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
4bbcbd3b11
commit
6683de3886
@ -1598,7 +1598,7 @@ static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
|
|||||||
if (offset >= 0)
|
if (offset >= 0)
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
mutex_unlock(&file_inode(file)->i_mutex);
|
mutex_unlock(&dentry->d_inode->i_mutex);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (offset != file->f_pos) {
|
if (offset != file->f_pos) {
|
||||||
|
Loading…
Reference in New Issue
Block a user