diff options
Diffstat (limited to 'fs/affs')
-rw-r--r-- | fs/affs/amigaffs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/affs/amigaffs.c b/fs/affs/amigaffs.c index 843cdc994804..eb82ee53ee0b 100644 --- a/fs/affs/amigaffs.c +++ b/fs/affs/amigaffs.c | |||
@@ -125,8 +125,9 @@ static void | |||
125 | affs_fix_dcache(struct inode *inode, u32 entry_ino) | 125 | affs_fix_dcache(struct inode *inode, u32 entry_ino) |
126 | { | 126 | { |
127 | struct dentry *dentry; | 127 | struct dentry *dentry; |
128 | struct hlist_node *p; | ||
128 | spin_lock(&inode->i_lock); | 129 | spin_lock(&inode->i_lock); |
129 | list_for_each_entry(dentry, &inode->i_dentry, d_alias) { | 130 | hlist_for_each_entry(dentry, p, &inode->i_dentry, d_alias) { |
130 | if (entry_ino == (u32)(long)dentry->d_fsdata) { | 131 | if (entry_ino == (u32)(long)dentry->d_fsdata) { |
131 | dentry->d_fsdata = (void *)inode->i_ino; | 132 | dentry->d_fsdata = (void *)inode->i_ino; |
132 | break; | 133 | break; |