aboutsummaryrefslogtreecommitdiffstats
path: root/fs/configfs
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2015-03-02 16:40:32 +0000
committerAl Viro <viro@zeniv.linux.org.uk>2015-04-15 15:05:31 -0400
commit6683de3886a313ae3d4b8c0323313a987073481b (patch)
tree879f16185a059d0fbaf85d0b230a9fede728a0d3 /fs/configfs
parentVFS: Make pathwalk use d_is_reg() rather than S_ISREG() (diff)
downloadlinux-dev-6683de3886a313ae3d4b8c0323313a987073481b.tar.xz
linux-dev-6683de3886a313ae3d4b8c0323313a987073481b.zip
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>
Diffstat (limited to 'fs/configfs')
-rw-r--r--fs/configfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c
index cf0db005d2f5..acb3d63bc9dc 100644
--- a/fs/configfs/dir.c
+++ b/fs/configfs/dir.c
@@ -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) {