Searched defs:unavailable (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_devconfig.h56 #define ELEMENT_UNAVAILABLE "unavailable"
156 char **unavailable; member in struct:devconfig
250 * Set the unavailable devices which may not be used in creating this
259 extern void devconfig_set_unavailable(devconfig_t *device, char **unavailable);
262 * Get the unavailable devices for use in creating this device
267 * @return unavailable
H A Dvolume_devconfig.c115 /* Free unavailable devices */
116 if (devconfig->unavailable != NULL) {
117 free_string_array(devconfig->unavailable);
262 * Set the unavailable devices which may not be used in creating this
274 char **unavailable)
276 device->unavailable = unavailable;
280 * Get the unavailable devices for use in creating this device
285 * @return unavailable
292 return (device->unavailable);
272 devconfig_set_unavailable( devconfig_t *device, char **unavailable) argument
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/controller/
H A Dmetassist.c146 /* List of unavailable devices */
147 dlist_t *unavailable = NULL; variable
174 /* Free unavailable dlist and strings within */
175 dlist_free_items(unavailable, free);
287 /* unavailable elements */
288 if (unavailable != NULL) {
290 for (item = unavailable; item != NULL; item = item->next) {
498 error = parse_tokenized_list(optarg, &unavailable);
916 %2$s [-u <unavailable>[,<unavailable>,
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/xml/
H A Dxml_convert.c267 /* <unavailable> attributes */
920 /* Create <unavailable> nodes */
1546 * Validate and add the given name to the list of unavailable devices
1550 * the devconfig_t whose unavailable device list to modify
1566 char **unavailable; local
1568 /* Get unavailable devices for this device */
1569 unavailable = devconfig_get_unavailable(device);
1572 if ((unavailable = append_to_string_array(unavailable, name)) == NULL) {
1576 /* Set unavailable device
[all...]

Completed in 69 milliseconds