Searched refs:inphash (Results 1 – 3 of 3) sorted by relevance
/freebsd/sbin/fsck_ffs/ |
H A D | setup.c | 52 struct inohash *inphash; /* hash list of directory inode info */ variable 169 inphash = (struct inohash *)Calloc(dirhash, sizeof(struct inohash)); in setup() 170 if (inpsort == NULL || inphash == NULL) { in setup()
|
H A D | inode.c | 1137 SLIST_INSERT_HEAD(&inphash[inumber % dirhash], inp, i_hash); in cacheino() 1169 SLIST_FOREACH(inp, &inphash[inumber % dirhash], i_hash) { in getinoinfo() 1188 SLIST_FOREACH(inp, &inphash[inumber % dirhash], i_hash) { in removecachedino() 1191 SLIST_REMOVE(&inphash[inumber % dirhash], inp, inoinfo, i_hash); in removecachedino() 1216 if (inphash == NULL) in inocleanup() 1220 free((char *)inphash); in inocleanup() 1221 inphash = NULL; in inocleanup()
|
H A D | fsck.h | 315 extern SLIST_HEAD(inohash, inoinfo) *inphash;
|