Searched refs:mze (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zap_micro.c | 300 mze->mze_cd = MZE_PHYS(zap, mze)->mze_cd; in mze_insert() 309 mzap_ent_t *mze; in mze_find() local 320 if (mze == NULL) in mze_find() 322 for (; mze && mze->mze_hash == zn->zn_hash; mze = AVL_NEXT(avl, mze)) { in mze_find() 323 ASSERT3U(mze->mze_cd, ==, MZE_PHYS(zn->zn_zap, mze)->mze_cd); in mze_find() 325 return (mze); in mze_find() 346 mze && mze->mze_hash == hash; mze = AVL_NEXT(avl, mze)) { in mze_find_unused_cd() 368 mzap_ent_t *mze; in mze_destroy() local 631 mze->mze_name, mze->mze_value); in mzap_upgrade() 633 err = fzap_add_cd(zn, 8, 1, &mze->mze_value, mze->mze_cd, in mzap_upgrade() [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/sys/ |
H A D | zap_impl.h | 76 #define MZE_PHYS(zap, mze) \ argument 77 (&zap_m_phys(zap)->mz_chunk[(mze)->mze_chunkid])
|
/illumos-gate/usr/src/boot/libsa/zfs/ |
H A D | zfs.c | 207 mzap_ent_phys_t mze; in zfs_readdir() local 252 rc = dnode_read(spa, &fp->f_dnode, fp->f_seekp, &mze, in zfs_readdir() 253 sizeof (mze)); in zfs_readdir() 256 fp->f_seekp += sizeof (mze); in zfs_readdir() 258 if (!mze.mze_name[0]) in zfs_readdir() 261 d->d_fileno = ZFS_DIRENT_OBJ(mze.mze_value); in zfs_readdir() 262 d->d_type = ZFS_DIRENT_TYPE(mze.mze_value); in zfs_readdir() 263 strcpy(d->d_name, mze.mze_name); in zfs_readdir()
|
H A D | zfsimpl.c | 2433 const mzap_ent_phys_t *mze; in mzap_lookup() local 2442 mze = &mz->mz_chunk[i]; in mzap_lookup() 2444 *value = mze->mze_value; in mzap_lookup() 2789 const mzap_ent_phys_t *mze; in mzap_list() local 2799 mze = &mz->mz_chunk[i]; in mzap_list() 2800 if (mze->mze_name[0]) { in mzap_list() 2801 rc = callback(mze->mze_name, mze->mze_value); in mzap_list() 2944 const mzap_ent_phys_t *mze; in mzap_rlookup() local 2953 mze = &mz->mz_chunk[i]; in mzap_rlookup() 2954 if (value == mze->mze_value) { in mzap_rlookup() [all …]
|