The patch titled affs: change uses of f_{dentry, vfsmnt} to use f_path has been added to the -mm tree. Its filename is affs-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: affs: change uses of f_{dentry, vfsmnt} to use f_path From: Josef "Jeff" Sipek <jsipek@xxxxxxxxxxxxx> Change all the uses of f_{dentry,vfsmnt} to f_path.{dentry,mnt} in the affs filesystem. Signed-off-by: Josef "Jeff" Sipek <jsipek@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/affs/dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/affs/dir.c~affs-change-uses-of-f_dentry-vfsmnt-to-use-f_path fs/affs/dir.c --- a/fs/affs/dir.c~affs-change-uses-of-f_dentry-vfsmnt-to-use-f_path +++ a/fs/affs/dir.c @@ -41,7 +41,7 @@ struct inode_operations affs_dir_inode_o static int affs_readdir(struct file *filp, void *dirent, filldir_t filldir) { - struct inode *inode = filp->f_dentry->d_inode; + struct inode *inode = filp->f_path.dentry->d_inode; struct super_block *sb = inode->i_sb; struct buffer_head *dir_bh; struct buffer_head *fh_bh; @@ -71,7 +71,7 @@ affs_readdir(struct file *filp, void *di stored++; } if (f_pos == 1) { - if (filldir(dirent, "..", 2, f_pos, parent_ino(filp->f_dentry), DT_DIR) < 0) + if (filldir(dirent, "..", 2, f_pos, parent_ino(filp->f_path.dentry), DT_DIR) < 0) return stored; filp->f_pos = f_pos = 2; stored++; _ Patches currently in -mm which might be from jsipek@xxxxxxxxxxxxx are fsstack-introduce-fsstack_copy_attrinode_.patch fsstack-introduce-fsstack_copy_attrinode_-tidy.patch ecryptfs-use-fsstacks-generic-copy-inode-attr.patch ecryptfs-use-fsstacks-generic-copy-inode-attr-tidy-fix.patch struct-path-rename-reiserfss-struct-path.patch struct-path-rename-dms-struct-path.patch struct-path-move-struct-path-from-fs-nameic-into.patch struct-path-make-ecryptfs-a-user-of-struct-path.patch vfs-change-struct-file-to-use-struct-path.patch sysfs-change-uses-of-f_dentry.patch proc-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch ext2-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch ext3-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch ext4-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch fat-change-uses-of-f_dentryvfsmnt-to-use-f_path.patch isofs-change-uses-of-f_dentry.patch nfs-change-uses-of-f_dentryvfsmnt-to-use-f_path.patch nfsd-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch ntfs-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch i386-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch x86_64-change-uses-of-f_dentry.patch kernel-change-uses-of-f_dentry.patch mm-change-uses-of-f_dentryvfsmnt-to-use-f_path.patch 9p-change-uses-of-f_dentryvfsmnt-to-use-f_path.patch affs-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch autofs-change-uses-of-f_dentry.patch autofs4-change-uses-of-f_dentry.patch configfs-change-uses-of-f_dentry.patch cifs-change-uses-of-f_dentry-vfsmnt-to-use-f_path.patch ecryptfs-change-uses-of-f_dentry.patch xfs-change-uses-of-f_dentryvfsmnt-to-use-f_path.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html