diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/affs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/affs/dir.c b/fs/affs/dir.c index 5d9649fa1814..cad3ee340063 100644 --- a/fs/affs/dir.c +++ b/fs/affs/dir.c | |||
@@ -41,7 +41,7 @@ struct inode_operations affs_dir_inode_operations = { | |||
41 | static int | 41 | static int |
42 | affs_readdir(struct file *filp, void *dirent, filldir_t filldir) | 42 | affs_readdir(struct file *filp, void *dirent, filldir_t filldir) |
43 | { | 43 | { |
44 | struct inode *inode = filp->f_dentry->d_inode; | 44 | struct inode *inode = filp->f_path.dentry->d_inode; |
45 | struct super_block *sb = inode->i_sb; | 45 | struct super_block *sb = inode->i_sb; |
46 | struct buffer_head *dir_bh; | 46 | struct buffer_head *dir_bh; |
47 | struct buffer_head *fh_bh; | 47 | struct buffer_head *fh_bh; |
@@ -71,7 +71,7 @@ affs_readdir(struct file *filp, void *dirent, filldir_t filldir) | |||
71 | stored++; | 71 | stored++; |
72 | } | 72 | } |
73 | if (f_pos == 1) { | 73 | if (f_pos == 1) { |
74 | if (filldir(dirent, "..", 2, f_pos, parent_ino(filp->f_dentry), DT_DIR) < 0) | 74 | if (filldir(dirent, "..", 2, f_pos, parent_ino(filp->f_path.dentry), DT_DIR) < 0) |
75 | return stored; | 75 | return stored; |
76 | filp->f_pos = f_pos = 2; | 76 | filp->f_pos = f_pos = 2; |
77 | stored++; | 77 | stored++; |