diff options
author | Chen Haiquan <[email protected]> | 2016-08-04 23:57:35 +0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-08-11 12:06:37 -0700 |
commit | d9c97ec08b995f1a36657accc4bbc6057645a72c (patch) | |
tree | f2262c55fe0e9a4cd656c90553f9e95d20e28000 /include/linux | |
parent | d5884c3453c5de5892eaae672c5186ed02846113 (diff) |
Use file_dentry and file_inode wrappers
Fix bugs due to kernel change in torvalds/linux@4bacc9c9234c ("overlayfs:
Make f_path always point to the overlay and f_inode to the underlay").
This problem crashes system when use zfs as a layer of overlayfs.
Signed-off-by: Chen Haiquan <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #4914
Closes #4935
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/vfs_compat.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/vfs_compat.h b/include/linux/vfs_compat.h index 820647d39..8a64cabef 100644 --- a/include/linux/vfs_compat.h +++ b/include/linux/vfs_compat.h @@ -352,6 +352,18 @@ static inline struct inode *file_inode(const struct file *f) } #endif /* HAVE_FILE_INODE */ +/* + * 4.1 API change + * struct access file->f_path.dentry was replaced by accessor function + * file_dentry(f) + */ +#ifndef HAVE_FILE_DENTRY +static inline struct dentry *file_dentry(const struct file *f) +{ + return (f->f_path.dentry); +} +#endif /* HAVE_FILE_DENTRY */ + #ifdef HAVE_KUID_HELPERS static inline uid_t zfs_uid_read_impl(struct inode *ip) { |