Lines Matching refs:stripe

539  * Set the device size (for volume, mirror, stripe, concat) in bytes
577 * Get the device size (for volume, mirror, stripe, concat) in bytes
1052 * Set the minimum number of components in stripe
1054 * @param stripe
1055 * a devconfig_t representing the stripe to modify
1059 * in stripe
1070 devconfig_t *stripe,
1076 "minimum stripe components (%d) below minimum allowable (%d)"),
1081 return (set_uint16(stripe->attributes, ATTR_STRIPE_MINCOMP, mincomp));
1085 * Get minimum number of components in stripe
1091 * RETURN: minimum number of components in stripe
1102 devconfig_t *stripe,
1106 stripe->attributes, ATTR_STRIPE_MINCOMP, mincomp);
1111 gettext("minimum number of stripe components not set"));
1119 * Set the maximum number of components in stripe
1121 * @param stripe
1122 * a devconfig_t representing the stripe to modify
1126 * in stripe
1137 devconfig_t *stripe,
1143 "maximum stripe components (%d) below minimum allowable (%d)"),
1148 return (set_uint16(stripe->attributes, ATTR_STRIPE_MAXCOMP, maxcomp));
1152 * Get maximum number of components in stripe
1158 * RETURN: maximum number of components in stripe
1169 devconfig_t *stripe,
1173 stripe->attributes, ATTR_STRIPE_MAXCOMP, maxcomp);
1178 gettext("maximum number of stripe components not set"));
1186 * Set the stripe interlace
1188 * @param stripe
1189 * a devconfig_t representing the stripe to modify
1192 * the value to set as the stripe interlace
1203 devconfig_t *stripe,
1227 return (set_uint64(stripe->attributes,
1232 * Get stripe interlace
1238 * RETURN: stripe interlace
1249 devconfig_t *stripe,
1253 stripe->attributes, ATTR_STRIPE_INTERLACE, interlace);
1257 volume_set_error(gettext("stripe interlace not set"));
1271 * If 0, a stripe will be created. If > 0, a mirror with
1396 * Set the HSP creation option (for volume, stripe, concat, mirror)
1420 * Get HSP creation option (for volume, stripe, concat, mirror)
1426 * RETURN: HSP creation option (for volume, stripe,
1637 printf("%s stripe mincomp: %d\n", prefix, val16);
1642 printf("%s stripe maxcomp: %d\n", prefix, val16);
1647 printf("%s stripe interlace: %lld\n", prefix, val64);