Home | History | Annotate | Download | only in ext2fs

Lines Matching full:cache

67 		fs->icache->cache[i].ino = 0;
95 &fs->icache->cache);
521 /* Create inode cache if not present */
527 /* Check to see if it's in the inode cache */
529 /* only old good inode can be retrieve from the cache */
531 if (fs->icache->cache[i].ino == ino) {
532 *inode = fs->icache->cache[i].inode;
594 /* Update the inode cache */
597 fs->icache->cache[fs->icache->cache_last].ino = ino;
598 fs->icache->cache[fs->icache->cache_last].inode = *inode;
628 /* Check to see if the inode cache needs to be updated */
631 if (fs->icache->cache[i].ino == ino) {
632 fs->icache->cache[i].inode = *inode;