diff options
author | Jörg Thalheim <[email protected]> | 2015-02-07 13:41:01 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-02-10 11:24:51 -0800 |
commit | 534759fad30ca55608bcd42a0af5a87c8c4feb36 (patch) | |
tree | ed56f8b9045442cd59ef799a0615936cac083da4 /module | |
parent | 77aef6f60ea29f6d3769addc778db6328ac85755 (diff) |
Linux 3.19 compat: file_inode was added
struct access f->f_dentry->d_inode was replaced by accessor function
file_inode(f)
Signed-off-by: Joerg Thalheim <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #3084
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/zpl_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/zpl_file.c b/module/zfs/zpl_file.c index 1f4f219ed..5f5bbba3d 100644 --- a/module/zfs/zpl_file.c +++ b/module/zfs/zpl_file.c @@ -617,7 +617,7 @@ zpl_fallocate(struct file *filp, int mode, loff_t offset, loff_t len) static int zpl_ioctl_getflags(struct file *filp, void __user *arg) { - struct inode *ip = filp->f_dentry->d_inode; + struct inode *ip = file_inode(filp); unsigned int ioctl_flags = 0; uint64_t zfs_flags = ITOZ(ip)->z_pflags; int error; @@ -653,7 +653,7 @@ zpl_ioctl_getflags(struct file *filp, void __user *arg) static int zpl_ioctl_setflags(struct file *filp, void __user *arg) { - struct inode *ip = filp->f_dentry->d_inode; + struct inode *ip = file_inode(filp); uint64_t zfs_flags = ITOZ(ip)->z_pflags; unsigned int ioctl_flags; cred_t *cr = CRED(); |