diff options
Diffstat (limited to 'ReadMe.c')
-rw-r--r-- | ReadMe.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -592,7 +592,7 @@ mapping_t r5layout[] = { }; mapping_t pers[] = { - { "linear", -1}, + { "linear", LEVEL_LINEAR}, { "raid0", 0}, { "0", 0}, { "stripe", 0}, @@ -603,13 +603,13 @@ mapping_t pers[] = { { "4", 4}, { "raid5", 5}, { "5", 5}, - { "multipath", -4}, - { "mp", -4}, + { "multipath", LEVEL_MULTIPATH}, + { "mp", LEVEL_MULTIPATH}, { "raid6", 6}, { "6", 6}, { "raid10", 10}, { "10", 10}, - { "faulty", -5}, + { "faulty", LEVEL_FAULTY}, { NULL, 0} }; |