Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6683de38 authored by David Howells's avatar David Howells Committed by Al Viro
Browse files

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: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 4bbcbd3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1598,7 +1598,7 @@ static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
			if (offset >= 0)
				break;
		default:
			mutex_unlock(&file_inode(file)->i_mutex);
			mutex_unlock(&dentry->d_inode->i_mutex);
			return -EINVAL;
	}
	if (offset != file->f_pos) {