diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-08-08 18:54:49 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-08-08 18:54:49 +0000 |
commit | 5514f4babeeb3af00ee0c325e3cda7a562cc3d65 (patch) | |
tree | edd733879cab73e41324a99ca5da7bc154c4196d /fs | |
parent | 6a9366db547e958e8c9bf8e1c13bcea6cb2bf393 (diff) |
Merge with Linux 2.4.0-test6-pre4.
Diffstat (limited to 'fs')
-rw-r--r-- | fs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/inode.c b/fs/inode.c index 62acffd58..455c4af6e 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -489,10 +489,10 @@ static struct inode * find_inode(struct super_block * sb, unsigned long ino, str if (tmp == head) break; inode = list_entry(tmp, struct inode, i_hash); - if (inode->i_sb != sb) - continue; if (inode->i_ino != ino) continue; + if (inode->i_sb != sb) + continue; if (find_actor && !find_actor(inode, ino, opaque)) continue; break; |