diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-01-23 17:07:38 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-22 23:31:31 -0500 |
commit | 496ad9aa8ef448058e36ca7a787c61f2e63f0f54 (patch) | |
tree | 8f4abde793cd7db5bb8fde6d27ebcacd0e54379a /fs/hfsplus | |
parent | 57eccb830f1cc93d4b506ba306d8dfa685e0c88f (diff) |
new helper: file_inode(file)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfsplus')
-rw-r--r-- | fs/hfsplus/dir.c | 2 | ||||
-rw-r--r-- | fs/hfsplus/inode.c | 2 | ||||
-rw-r--r-- | fs/hfsplus/ioctl.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c index 6b9f921ef2fa..074e04589248 100644 --- a/fs/hfsplus/dir.c +++ b/fs/hfsplus/dir.c | |||
@@ -122,7 +122,7 @@ fail: | |||
122 | 122 | ||
123 | static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir) | 123 | static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir) |
124 | { | 124 | { |
125 | struct inode *inode = filp->f_path.dentry->d_inode; | 125 | struct inode *inode = file_inode(filp); |
126 | struct super_block *sb = inode->i_sb; | 126 | struct super_block *sb = inode->i_sb; |
127 | int len, err; | 127 | int len, err; |
128 | char strbuf[HFSPLUS_MAX_STRLEN + 1]; | 128 | char strbuf[HFSPLUS_MAX_STRLEN + 1]; |
diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c index 799b336b59f9..dcd05be5344b 100644 --- a/fs/hfsplus/inode.c +++ b/fs/hfsplus/inode.c | |||
@@ -124,7 +124,7 @@ static ssize_t hfsplus_direct_IO(int rw, struct kiocb *iocb, | |||
124 | { | 124 | { |
125 | struct file *file = iocb->ki_filp; | 125 | struct file *file = iocb->ki_filp; |
126 | struct address_space *mapping = file->f_mapping; | 126 | struct address_space *mapping = file->f_mapping; |
127 | struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host; | 127 | struct inode *inode = file_inode(file)->i_mapping->host; |
128 | ssize_t ret; | 128 | ssize_t ret; |
129 | 129 | ||
130 | ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs, | 130 | ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs, |
diff --git a/fs/hfsplus/ioctl.c b/fs/hfsplus/ioctl.c index 09addc8615fa..e3c4c4209428 100644 --- a/fs/hfsplus/ioctl.c +++ b/fs/hfsplus/ioctl.c | |||
@@ -59,7 +59,7 @@ static int hfsplus_ioctl_bless(struct file *file, int __user *user_flags) | |||
59 | 59 | ||
60 | static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags) | 60 | static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags) |
61 | { | 61 | { |
62 | struct inode *inode = file->f_path.dentry->d_inode; | 62 | struct inode *inode = file_inode(file); |
63 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); | 63 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); |
64 | unsigned int flags = 0; | 64 | unsigned int flags = 0; |
65 | 65 | ||
@@ -75,7 +75,7 @@ static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags) | |||
75 | 75 | ||
76 | static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags) | 76 | static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags) |
77 | { | 77 | { |
78 | struct inode *inode = file->f_path.dentry->d_inode; | 78 | struct inode *inode = file_inode(file); |
79 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); | 79 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); |
80 | unsigned int flags; | 80 | unsigned int flags; |
81 | int err = 0; | 81 | int err = 0; |