Searched defs:dataset (Results 26 - 29 of 29) sorted by relevance

12

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_ioctl.c67 * dataset is visible in this zone, and if the user has either all
69 * to do this operation on this dataset with "zfs allow".
73 * name, a dataset name, or nothing. If the name is not well-formed,
105 * The name of the pool or dataset to operate on, from
107 * expected type (pool, dataset, or none).
244 static int zfs_check_clearable(char *dataset, nvlist_t *props,
316 * Check to see if the named dataset is currently defined as bootable
393 * and can be used in the local zone, as there is no associated dataset.
403 * Policy for dataset read operations (list children, get statistics). Requires
418 zfs_dozonecheck_impl(const char *dataset, uint64_ argument
452 zfs_dozonecheck(const char *dataset, cred_t *cr) argument
463 zfs_dozonecheck_ds(const char *dataset, dsl_dataset_t *ds, cred_t *cr) argument
3105 zfs_fill_zplprops(const char *dataset, nvlist_t *createprops, nvlist_t *zplprops, boolean_t *is_ci) argument
3986 zfs_check_clearable(char *dataset, nvlist_t *props, nvlist_t **errlist) argument
[all...]
/illumos-gate/usr/src/cmd/zfs/
H A Dzfs_main.c420 (void) fprintf(fp, gettext("\nEach dataset is of the form: "
421 "pool/[dataset/]*dataset[@name]\n"));
589 * Check if the dataset is mountable and should be automatically mounted.
602 * Given an existing dataset, create a writable copy whose initial contents
603 * are the same as the source. The newly created dataset maintains a
643 (void) fprintf(stderr, gettext("missing source dataset "
648 (void) fprintf(stderr, gettext("missing target dataset "
657 /* open the source dataset */
664 * Now create the ancestors of the target dataset
4716 const char *dataset; member in struct:allow_opts
6626 char *dataset, *path; local
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dzone.c1293 * Frees memory associated with the zone dataset list.
4336 char *dataset, *next; local
4351 dataset = next = kbuf;
4355 next = strchr(dataset, ',');
4358 len = strlen(dataset);
4360 len = next - dataset;
4363 bcopy(dataset, zd->zd_dataset, len);
4371 dataset = next + 1;
6827 * Returns true if the named dataset is visible in the current zone.
6828 * The 'write' parameter is set to 1 if the dataset i
6831 zone_dataset_visible(const char *dataset, int *write) argument
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c92 #define DTD_ELEM_DATASET (const xmlChar *) "dataset"
4005 if (strcmp(nm, "dataset") == 0)
6547 char dataset[MAXNAMELEN]; local
6561 if ((fetchprop(cur, DTD_ATTR_NAME, dataset,
6562 sizeof (dataset)) == Z_OK) &&
6564 dataset) == 0)) {

Completed in 130 milliseconds

12