diff options
author | Josef "Jeff" Sipek <jsipek@cs.sunysb.edu> | 2006-12-08 02:36:40 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:41 -0800 |
commit | 2485822d51f8b338d289abe00eb7ce5249794a08 (patch) | |
tree | c90d85beee37746b58a5ef5b07d0992d0cfc9af4 /fs/isofs/compress.c | |
parent | dba32306099d6155b773ebe8fc5bcfab60d075d6 (diff) | |
download | linux-exynos-2485822d51f8b338d289abe00eb7ce5249794a08.tar.gz linux-exynos-2485822d51f8b338d289abe00eb7ce5249794a08.tar.bz2 linux-exynos-2485822d51f8b338d289abe00eb7ce5249794a08.zip |
[PATCH] isofs: change uses of f_{dentry, vfsmnt} to use f_path
Change all the uses of f_{dentry,vfsmnt} to f_path.{dentry,mnt} in the isofs
filesystem.
Signed-off-by: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/isofs/compress.c')
-rw-r--r-- | fs/isofs/compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/compress.c b/fs/isofs/compress.c index 731816332b12..6bbbdb53581d 100644 --- a/fs/isofs/compress.c +++ b/fs/isofs/compress.c @@ -42,7 +42,7 @@ static struct semaphore zisofs_zlib_semaphore; */ 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; |