Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzap_micro.c1394 zc->zc_hash = 0; in zap_cursor_init_impl()
1444 if (zc->zc_hash == -1ULL) in zap_cursor_serialize()
1448 ASSERT((zc->zc_hash & zap_maxcd(zc->zc_zap)) == 0); in zap_cursor_serialize()
1459 return ((zc->zc_hash >> (64 - zap_hashbits(zc->zc_zap))) | in zap_cursor_serialize()
1468 if (zc->zc_hash == -1ULL) in zap_cursor_retrieve()
1483 ASSERT(zc->zc_hash == 0); in zap_cursor_retrieve()
1485 zc->zc_hash = zc->zc_serialized << (64 - hb); in zap_cursor_retrieve()
1498 mze_tofind.mze_hash = zc->zc_hash; in zap_cursor_retrieve()
1516 zc->zc_hash = mze->mze_hash; in zap_cursor_retrieve()
1520 zc->zc_hash = -1ULL; in zap_cursor_retrieve()
[all …]
H A Dzap.c1209 if (zc->zc_hash == 0 && zap_iterate_prefetch && in fzap_cursor_retrieve()
1217 (ZAP_HASH_IDX(zc->zc_hash, in fzap_cursor_retrieve()
1227 err = zap_deref_leaf(zap, zc->zc_hash, NULL, RW_READER, in fzap_cursor_retrieve()
1236 err = zap_leaf_lookup_closest(l, zc->zc_hash, zc->zc_cd, &zeh); in fzap_cursor_retrieve()
1241 zc->zc_hash = (zc->zc_hash & ~nocare) + nocare + 1; in fzap_cursor_retrieve()
1244 zc->zc_hash == 0) { in fzap_cursor_retrieve()
1245 zc->zc_hash = -1ULL; in fzap_cursor_retrieve()
1254 zc->zc_hash = zeh.zeh_hash; in fzap_cursor_retrieve()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzap.h348 uint64_t zc_hash; member