The patch titled isofs: change uses of f_{dentry, vfsmnt} to use f_path has been removed from the -mm tree. Its filename was isofs-change-uses-of-f_dentry.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: isofs: 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 isofs filesystem. Signed-off-by: Josef "Jeff" Sipek <jsipek@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/isofs/compress.c | 2 +- fs/isofs/dir.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff -puN fs/isofs/compress.c~isofs-change-uses-of-f_dentry fs/isofs/compress.c --- a/fs/isofs/compress.c~isofs-change-uses-of-f_dentry +++ a/fs/isofs/compress.c @@ -42,7 +42,7 @@ static struct semaphore zisofs_zlib_sema */ static int zisofs_readpage(struct file *file, struct page *page) { - struct inode *inode = file->f_dentry->d_inode; + struct inode *inode = file->f_path.dentry->d_inode; struct address_space *mapping = inode->i_mapping; unsigned int maxpage, xpage, fpage, blockindex; unsigned long offset; diff -puN fs/isofs/dir.c~isofs-change-uses-of-f_dentry fs/isofs/dir.c --- a/fs/isofs/dir.c~isofs-change-uses-of-f_dentry +++ a/fs/isofs/dir.c @@ -183,7 +183,7 @@ static int do_isofs_readdir(struct inode /* Handle the case of the '..' directory */ if (de->name_len[0] == 1 && de->name[0] == 1) { - inode_number = parent_ino(filp->f_dentry); + inode_number = parent_ino(filp->f_path.dentry); if (filldir(dirent, "..", 2, filp->f_pos, inode_number, DT_DIR) < 0) break; filp->f_pos += de_len; @@ -255,8 +255,7 @@ static int isofs_readdir(struct file *fi int result; char * tmpname; struct iso_directory_record * tmpde; - struct inode *inode = filp->f_dentry->d_inode; - + struct inode *inode = filp->f_path.dentry->d_inode; tmpname = (char *)__get_free_page(GFP_KERNEL); if (tmpname == NULL) _ Patches currently in -mm which might be from jsipek@xxxxxxxxxxxxx are 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