aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/raid_class.h
diff options
context:
space:
mode:
authorMoore, Eric <Eric.Moore@lsil.com>2006-01-04 16:58:43 -0500
committerJames Bottomley <jejb@mulgrave.(none)>2006-01-12 12:35:15 -0500
commit8e32ca49ef2eb5bfec1444b5e731cc2d35111519 (patch)
tree4353478b092ac5ab2daacaa0a9b2569f3377958f /include/linux/raid_class.h
parent593195f9b2309693f27b402f34573f7920b82c3e (diff)
[SCSI] raid_class.c - adding RAID10 and RAID10 defines
Adding defines for RAID10 and RAID50 levels, in preparation of adding RAID Transport support in the mpt fusion drivers. (BTW: IME is RAID10, and IM is RAID1). Signed-off-by: Eric Moore <Eric.Moore@lsil.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/linux/raid_class.h')
-rw-r--r--include/linux/raid_class.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/raid_class.h b/include/linux/raid_class.h
index 48831eac2910..d0dd38b3a2fd 100644
--- a/include/linux/raid_class.h
+++ b/include/linux/raid_class.h
@@ -31,9 +31,11 @@ enum raid_level {
31 RAID_LEVEL_LINEAR, 31 RAID_LEVEL_LINEAR,
32 RAID_LEVEL_0, 32 RAID_LEVEL_0,
33 RAID_LEVEL_1, 33 RAID_LEVEL_1,
34 RAID_LEVEL_10,
34 RAID_LEVEL_3, 35 RAID_LEVEL_3,
35 RAID_LEVEL_4, 36 RAID_LEVEL_4,
36 RAID_LEVEL_5, 37 RAID_LEVEL_5,
38 RAID_LEVEL_50,
37 RAID_LEVEL_6, 39 RAID_LEVEL_6,
38}; 40};
39 41