Home | History | Annotate | Download | only in common

Lines Matching defs:datasets

58  * mount/unmount and share/unshare all datasets within pool:
1126 * Mount and share all datasets within the given pool. This assumes that no
1127 * datasets within the pool are currently mounted. Because users can create
1129 * datasets and mountpoints within the pool, and sort them by mountpoint. Once
1144 * Gather all non-snap datasets within the pool.
1153 * Sort the datasets by mountpoint.
1159 * And mount all the datasets, keeping track of which ones
1207 * Unshare and unmount all datasets within the given pool. We don't want to
1220 zfs_handle_t **datasets = NULL;
1257 if ((datasets = zfs_alloc(hdl,
1271 if ((ptr = zfs_realloc(hdl, datasets,
1275 datasets = ptr;
1290 datasets
1325 if (datasets[i])
1326 remove_mountpoint(datasets[i]);
1332 if (datasets[i])
1333 zfs_close(datasets[i]);
1336 free(datasets);