Lines Matching refs:defaults
54 * request and defaults devconfig_t structs passed to the layout
60 * a request or in the defaults associated with the destination diskset.
178 * specifications for a request or defaults devconfig_t
364 * INPUT: devconfig_t * - pointer to the global defaults devconfig_t
369 * PURPOSE: set the module global defaults struct.
378 defaults_t *defaults)
383 _defaults = defaults;
391 /* no defaults to verify */
401 * PURPOSE: unset the layout module global defaults struct.
422 * toplevel diskset request, the diskset defaults or the
423 * global defaults.
464 * toplevel diskset request, the diskset defaults or the
465 * global defaults.
506 * toplevel diskset request, the diskset defaults or the
507 * global defaults.
553 * toplevel diskset request, the diskset defaults or the
554 * global defaults.
599 * toplevel diskset request, the diskset defaults or the
600 * global defaults.
644 * toplevel diskset request, the diskset defaults or the
645 * global defaults.
690 * toplevel diskset request, the diskset defaults or the
691 * global defaults.
733 * toplevel diskset request, the diskset defaults or the
734 * global defaults.
790 * toplevel diskset request, the diskset defaults or the
791 * global defaults.
833 * toplevel diskset request, the diskset defaults or the
834 * global defaults.
875 * toplevel diskset request, the diskset defaults or the
876 * global defaults.
1636 * devices for a given defaults_t request/defaults struct.
2090 * FUNCTION: get_default_avail_spec_list(defaults_t *defaults,
2093 * INPUT: defaults - a pointer to a defaults_t struct
2094 * dsname - the name of the diskset whose defaults should be used
2098 * defaults for the named diskset, or the global
2099 * defaults for all disksets.
2107 * Locates the defaults for the named diskset, if there are none,
2108 * locates the global defaults for all disksets.
2110 * The defaults devconfig_t struct is then used to look up the
2113 * If there is currently no entry in the cache for the defaults,
2125 devconfig_t *defaults = NULL;
2128 /* Get diskset defaults, or global if none for diskset */
2130 alldefaults, dsname, &defaults);
2134 /* to get global defaults, pass a NULL diskset name */
2136 alldefaults, NULL, &defaults);
2142 gettext("get defaults for %s returned %d\n"),
2150 if ((entry = find_request_spec_list_entry(defaults)) == NULL) {
2152 /* create new entry for these defaults */
2154 defaults,
2155 devconfig_get_available(defaults),
2156 devconfig_get_unavailable(defaults),
2175 * FUNCTION: get_default_unavail_spec_list(defaults_t *defaults,
2178 * INPUT: defaults - a pointer to a defaults_t struct
2179 * dsname - the name of the diskset whose defaults should be used
2183 * defaults for the named diskset, or the global
2184 * defaults for all disksets.
2192 * Locates the defaults for the named diskset, if there are none,
2193 * locates the global defaults for all disksets.
2195 * The defaults devconfig_t struct is then used to look up the
2198 * If there is currently no entry in the cache for the defaults,
2210 devconfig_t *defaults = NULL;
2213 /* Get diskset defaults, or global if none for diskset */
2215 alldefaults, dsname, &defaults);
2220 /* to get global defaults, pass a NULL diskset name */
2222 alldefaults, NULL, &defaults);
2228 gettext("get defaults for %s returned %d\n"),
2236 if ((entry = find_request_spec_list_entry(defaults)) == NULL) {
2238 /* create new entry for these defaults */
2240 defaults,
2241 devconfig_get_available(defaults),
2242 devconfig_get_unavailable(defaults),
2284 * 3. the diskset-specific defaults
2285 * 4. the global defaults
2287 * If the diskset-specific defaults exist, only they are checked.
2299 * 5. if defaults have an avail list, the name must be in it
2300 * and not in the defaults unavailable list.
2301 * 6. if defaults have an unavail list, the name must not be
2349 /* and diskset/global defaults */