Lines Matching defs:raid10_format
337 { CTR_FLAG_RAID10_FORMAT, "raid10_format"},
1122 * [raid10_format <near|far|offset>] Layout algorithm. (Default: near)
1127 int value, raid10_format = ALGORITHM_RAID10_DEFAULT;
1226 /* "raid10_format {near|offset|far} */
1229 rs->ti->error = "Only one 'raid10_format' argument pair allowed";
1233 rs->ti->error = "'raid10_format' is an invalid parameter for this RAID type";
1236 raid10_format = raid10_name_to_format(arg);
1237 if (raid10_format < 0) {
1238 rs->ti->error = "Invalid 'raid10_format' value given";
1239 return raid10_format;
1504 rs->md.new_layout = raid10_format_to_md_layout(rs, raid10_format, raid10_copies);