HomeSort by: relevance | last modified time | path
    Searched refs:zapobj (Results 1 - 11 of 11) sorted by relevancy

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_deleg.c 163 uint64_t zapobj; local
167 zapobj = dsl_dir_phys(dd)->dd_deleg_zapobj;
168 if (zapobj == 0) {
170 zapobj = dsl_dir_phys(dd)->dd_deleg_zapobj = zap_create(mos,
182 if (zap_lookup(mos, zapobj, whokey, 8, 1, &jumpobj) != 0) {
184 zapobj, whokey, tx);
208 uint64_t zapobj; local
211 zapobj = dsl_dir_phys(dd)->dd_deleg_zapobj;
212 if (zapobj == 0) {
224 if (zap_lookup(mos, zapobj, whokey, 8
580 uint64_t zapobj; local
676 uint64_t zapobj = dsl_dir_phys(dd)->dd_deleg_zapobj; local
    [all...]
zfeature.c 248 uint64_t zapobj = (feature->fi_flags & ZFEATURE_FLAG_READONLY_COMPAT) ? local
255 if (zapobj == 0)
258 err = zap_lookup(spa->spa_meta_objset, zapobj,
300 uint64_t zapobj = (feature->fi_flags & ZFEATURE_FLAG_READONLY_COMPAT) ? local
303 VERIFY0(zap_update(spa->spa_meta_objset, zapobj, feature->fi_guid,
339 uint64_t zapobj = (feature->fi_flags & ZFEATURE_FLAG_READONLY_COMPAT) ? local
342 ASSERT(0 != zapobj);
349 if (zap_contains(spa->spa_meta_objset, zapobj, feature->fi_guid) == 0)
384 uint64_t zapobj = (feature->fi_flags & ZFEATURE_FLAG_READONLY_COMPAT) ? local
388 ASSERT(0 != zapobj);
    [all...]
dsl_prop.c 166 uint64_t zapobj; local
170 zapobj = dsl_dataset_phys(ds)->ds_props_obj;
172 if (zapobj != 0) {
179 err = zap_lookup(mos, zapobj, propname, intsz, numints, buf);
193 err = zap_contains(mos, zapobj, inheritstr);
203 err = zap_lookup(mos, zapobj, recvdstr,
369 uint64_t zapobj; local
385 zapobj = dsl_dir_phys(dd)->dd_props_zapobj;
399 err = zap_lookup(mos, zapobj, recvdstr, 8, 1, newvalp);
411 err = zap_lookup(mos, zapobj, propname, 8, 1, newvalp)
616 uint64_t zapobj, intval, dummy; local
    [all...]
zap_micro.c 738 zap_destroy(objset_t *os, uint64_t zapobj, dmu_tx_t *tx)
746 return (dmu_object_free(os, zapobj, tx));
765 zap_count(objset_t *os, uint64_t zapobj, uint64_t *count)
770 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
828 zap_lookup(objset_t *os, uint64_t zapobj, const char *name,
831 return (zap_lookup_norm(os, zapobj, name, integer_size,
879 zap_lookup_norm(objset_t *os, uint64_t zapobj, const char *name,
887 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap);
924 zap_prefetch_uint64(objset_t *os, uint64_t zapobj, const uint64_t *key,
931 err = zap_lockdir(os, zapobj, NULL, RW_READER, TRUE, FALSE, FTAG, &zap)
    [all...]
dsl_userhold.c 139 uint64_t zapobj; local
149 zapobj = dsl_dataset_phys(ds)->ds_userrefs_obj =
152 zapobj = dsl_dataset_phys(ds)->ds_userrefs_obj;
156 VERIFY0(zap_add(mos, zapobj, htag, 8, 1, &now, tx));
350 uint64_t zapobj; local
363 zapobj = dsl_dataset_phys(ds)->ds_userrefs_obj;
372 if (zapobj != 0)
373 error = zap_lookup(mos, zapobj, holdname, 8, 1, &tmp);
dsl_pool.c 966 uint64_t zapobj = dp->dp_tmp_userrefs_obj; local
969 if (zapobj == 0)
975 for (zap_cursor_init(&zc, mos, zapobj);
1018 uint64_t zapobj = dp->dp_tmp_userrefs_obj; local
1029 if (zapobj == 0) {
1032 zapobj = dp->dp_tmp_userrefs_obj;
1040 error = zap_add(mos, zapobj, name, 8, 1, &now, tx);
1042 error = zap_remove(mos, zapobj, name, tx);
zap.c 719 uint64_t zapobj = zap->zap_object; local
722 err = zap_lockdir(os, zapobj, tx,
988 zap_value_search(objset_t *os, uint64_t zapobj, uint64_t value, uint64_t mask,
999 for (zap_cursor_init(&zc, os, zapobj);
vdev.c 2103 vdev_destroy_unlink_zap(vdev_t *vd, uint64_t zapobj, dmu_tx_t *tx)
2107 VERIFY0(zap_destroy(spa->spa_meta_objset, zapobj, tx));
2109 zapobj, tx));
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
zap.h 36 * A "zapobj" is a DMU object which the ZAP uses to stores attributes.
37 * Users should use only zap routines to access a zapobj - they should
40 * The attributes stored in a zapobj are name-value pairs. The name is
46 * (object number) of another dmu object (which may be itself a zapobj).
67 * the same zapobj which only read data will be processed concurrently.
68 * Operations on the same zapobj which modify data will be processed
69 * concurrently when there are many attributes in the zapobj (because
122 * Create a new zapobj with no attributes and return its object number.
151 * Create a new zapobj with no attributes from the given (unallocated)
161 * The zapobj passed in must be a valid ZAP object for all of th
    [all...]
dsl_deleg.h 73 int dsl_deleg_destroy(objset_t *os, uint64_t zapobj, dmu_tx_t *tx);
vdev.h 75 extern void vdev_destroy_unlink_zap(vdev_t *vd, uint64_t zapobj,

Completed in 23 milliseconds