Searched refs:thiskey (Results 1 – 1 of 1) sorted by relevance
/titanic_50/usr/src/uts/common/fs/zfs/ |
H A D | zap_leaf.c | 348 uint64_t *thiskey; in zap_leaf_array_match() local 351 ASSERT(zn->zn_key_intlen == sizeof (*thiskey)); in zap_leaf_array_match() 352 thiskey = kmem_alloc(array_numints * sizeof (*thiskey), in zap_leaf_array_match() 355 zap_leaf_array_read(l, chunk, sizeof (*thiskey), array_numints, in zap_leaf_array_match() 356 sizeof (*thiskey), array_numints, thiskey); in zap_leaf_array_match() 357 match = bcmp(thiskey, zn->zn_key_orig, in zap_leaf_array_match() 358 array_numints * sizeof (*thiskey)) == 0; in zap_leaf_array_match() 359 kmem_free(thiskey, array_numints * sizeof (*thiskey)); in zap_leaf_array_match()
|