Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libc/port/sys/
H A Dzone.c44 zone_def zd; in zone_create() local
49 zd.zone_name = name; in zone_create()
50 zd.zone_root = root; in zone_create()
51 zd.zone_privs = privs; in zone_create()
52 zd.zone_privssz = d->pd_setsize; in zone_create()
53 zd.rctlbuf = rctls; in zone_create()
54 zd.rctlbufsz = rctlsz; in zone_create()
55 zd.zfsbuf = zfs; in zone_create()
56 zd.zfsbufsz = zfssz; in zone_create()
57 zd.extended_error = extended_error; in zone_create()
[all …]
/titanic_41/usr/src/cmd/ztest/
H A Dztest.c289 typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
1132 ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type) in ztest_object_lock() argument
1134 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; in ztest_object_lock()
1140 ztest_object_unlock(ztest_ds_t *zd, uint64_t object) in ztest_object_unlock() argument
1142 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; in ztest_object_unlock()
1148 ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset, in ztest_range_lock() argument
1152 rll_t *rll = &zd->zd_range_lock[hash & (ZTEST_RANGE_LOCKS - 1)]; in ztest_range_lock()
1177 ztest_zd_init(ztest_ds_t *zd, ztest_shared_ds_t *szd, objset_t *os) in ztest_zd_init() argument
1179 zd->zd_os = os; in ztest_zd_init()
1180 zd->zd_zilog = dmu_objset_zil(os); in ztest_zd_init()
[all …]
/titanic_41/usr/src/uts/common/os/
H A Dzone.c4206 zone_dataset_t *zd; in parse_zfs() local
4222 zd = kmem_alloc(sizeof (zone_dataset_t), KM_SLEEP); in parse_zfs()
4231 zd->zd_dataset = kmem_alloc(len + 1, KM_SLEEP); in parse_zfs()
4232 bcopy(dataset, zd->zd_dataset, len); in parse_zfs()
4233 zd->zd_dataset[len] = '\0'; in parse_zfs()
4235 list_insert_head(&zone->zone_datasets, zd); in parse_zfs()
6631 zone_dataset_t *zd; in zone_dataset_visible() local
6645 for (zd = list_head(&zone->zone_datasets); zd != NULL; in zone_dataset_visible()
6646 zd = list_next(&zone->zone_datasets, zd)) { in zone_dataset_visible()
6648 len = strlen(zd->zd_dataset); in zone_dataset_visible()
[all …]