Home
last modified time | relevance | path

Searched refs:dnlc_hash (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c101 static ncache_t **dnlc_hash; /* mdbs hash array of dnlc entries */ variable
163 if (dnlc_hash == NULL) { in dnlc_free()
171 for (ncp = dnlc_hash[i]; ncp; ncp = next) { in dnlc_free()
176 mdb_free(dnlc_hash, MDB_DNLC_HSIZE * sizeof (ncache_t *)); in dnlc_free()
177 dnlc_hash = NULL; in dnlc_free()
197 if (dnlc_hash && mdb_prop_postmortem) { in dnlc_load()
236 dnlc_hash = mdb_zalloc(MDB_DNLC_HSIZE * sizeof (ncache_t *), UM_SLEEP); in dnlc_load()
331 ncp->hash_next = dnlc_hash[hash]; in dnlc_load()
332 dnlc_hash[hash] = ncp; in dnlc_load()
354 for (ent = dnlc_hash[i]; ent != NULL; ent = ent->hash_next) { in dnlcdump()
[all …]