Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/fs/zfs/
H A Dzap_micro.c273 mzap_ent_t *mze; in mze_insert() local
278 mze = kmem_alloc(sizeof (mzap_ent_t), KM_SLEEP); in mze_insert()
279 mze->mze_chunkid = chunkid; in mze_insert()
280 mze->mze_hash = hash; in mze_insert()
281 mze->mze_cd = MZE_PHYS(zap, mze)->mze_cd; in mze_insert()
282 ASSERT(MZE_PHYS(zap, mze)->mze_name[0] != 0); in mze_insert()
283 avl_add(&zap->zap_m.zap_avl, mze); in mze_insert()
290 mzap_ent_t *mze; in mze_find() local
301 mze = avl_find(avl, &mze_tofind, &idx); in mze_find()
302 if (mze == NULL) in mze_find()
[all …]
/titanic_41/usr/src/uts/common/fs/zfs/sys/
H A Dzap_impl.h73 #define MZE_PHYS(zap, mze) \ argument
74 (&zap_m_phys(zap)->mz_chunk[(mze)->mze_chunkid])