diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-21 20:11:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-19 13:01:20 -0500 |
commit | a455589f181e60439c736c6c6a068bb7e6dc23f0 (patch) | |
tree | 48d377e7db8d21fd606ba8c84a72b95f3d23c10b /arch/s390/hypfs | |
parent | 41d28bca2da4bd75a8915c1ccf2cacf7f4a2e531 (diff) |
assorted conversions to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/s390/hypfs')
-rw-r--r-- | arch/s390/hypfs/hypfs_dbfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/s390/hypfs/hypfs_dbfs.c b/arch/s390/hypfs/hypfs_dbfs.c index 2badf2bf9cd7..47fe1055c714 100644 --- a/arch/s390/hypfs/hypfs_dbfs.c +++ b/arch/s390/hypfs/hypfs_dbfs.c | |||
@@ -83,10 +83,9 @@ static ssize_t dbfs_read(struct file *file, char __user *buf, | |||
83 | 83 | ||
84 | static long dbfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 84 | static long dbfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
85 | { | 85 | { |
86 | struct hypfs_dbfs_file *df; | 86 | struct hypfs_dbfs_file *df = file_inode(file)->i_private; |
87 | long rc; | 87 | long rc; |
88 | 88 | ||
89 | df = file->f_path.dentry->d_inode->i_private; | ||
90 | mutex_lock(&df->lock); | 89 | mutex_lock(&df->lock); |
91 | if (df->unlocked_ioctl) | 90 | if (df->unlocked_ioctl) |
92 | rc = df->unlocked_ioctl(file, cmd, arg); | 91 | rc = df->unlocked_ioctl(file, cmd, arg); |