Searched defs:newchild (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_ns.c231 * Connects newchild (or subtree with newchild in head)
236 tree_add_child(treenode_t *parent, treenode_t *newchild) argument
238 newchild->tree_parent = parent;
239 newchild->tree_sibling = parent->tree_child_first;
240 parent->tree_child_first = newchild;
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_import.c589 nvlist_t **newchild; local
591 newchild = zfs_alloc(hdl, (id + 1) *
593 if (newchild == NULL)
597 newchild[c] = child[c];
600 child = newchild;
621 nvlist_t **newchild; local
623 newchild = zfs_alloc(hdl, (max_id) *
625 if (newchild == NULL)
629 newchild[c] = child[c];
632 child = newchild;
[all...]
H A Dlibzfs_pool.c2865 nvlist_t *tree, *config, **child, **newchild, *newconfig = NULL; local
2909 &newchild, &newchildren) != 0)
2960 newchild, newchildren)) >= 0) {
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dvdev.c208 vdev_t **newchild; local
225 newchild = kmem_zalloc(newsize, KM_SLEEP);
227 bcopy(pvd->vdev_child, newchild, oldsize);
231 pvd->vdev_child = newchild;
284 vdev_t **newchild, *cvd; local
294 newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
298 newchild[newc] = cvd;
304 pvd->vdev_child = newchild;
/illumos-gate/usr/src/cmd/zpool/
H A Dzpool_main.c2345 nvlist_t **oldchild, **newchild; local
2402 &newchild, &children) != 0)
2412 (void) nvlist_lookup_uint64(newchild[c], ZPOOL_CONFIG_IS_HOLE,
2415 (void) nvlist_lookup_uint64(newchild[c], ZPOOL_CONFIG_IS_LOG,
2421 vname = zpool_vdev_name(g_zfs, zhp, newchild[c], B_FALSE);
2423 newchild[c], cb, depth + 2);
2437 (void) nvlist_lookup_uint64(newchild[c],
2441 vname = zpool_vdev_name(g_zfs, zhp, newchild[c],
2444 oldchild[c] : NULL, newchild[c],
2456 &newchild,
[all...]

Completed in 88 milliseconds