Home | History | Annotate | Download | only in common

Lines Matching refs:gca

2185 	struct get_clones_arg *gca = arg;
2187 if (gca->numclones == 0) {
2192 if (zfs_prop_get(zhp, ZFS_PROP_ORIGIN, gca->buf, sizeof (gca->buf),
2195 if (strcmp(gca->buf, gca->origin) == 0) {
2196 fnvlist_add_boolean(gca->value, zfs_get_name(zhp));
2197 gca->numclones--;
2201 (void) zfs_iter_children(zhp, get_clones_cb, gca);
2213 struct get_clones_arg gca;
2228 gca.numclones = zfs_prop_get_int(zhp, ZFS_PROP_NUMCLONES);
2229 gca.value = value;
2230 gca.origin = zhp->zfs_name;
2232 if (gca.numclones != 0) {
2243 (void) get_clones_cb(root, &gca);
2246 if (gca.numclones != 0 ||