diff options
| author | Paul Saab <ps@FreeBSD.org> | 2003-12-08 16:07:35 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2003-12-08 16:07:35 +0000 |
| commit | aaf8327b2d1052913979fccda80fc972bffaaa69 (patch) | |
| tree | 9c886691412eabcb57b8b52fe2f609c44f10e952 /sys/dev/ciss | |
| parent | 80fecc4d18a0a3be6da2738a2253d0b063a06ecb (diff) | |
Notes
Diffstat (limited to 'sys/dev/ciss')
| -rw-r--r-- | sys/dev/ciss/ciss.c | 4 | ||||
| -rw-r--r-- | sys/dev/ciss/cissreg.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index b9594d04a6a66..d0583cb439263 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -3380,6 +3380,10 @@ ciss_name_ldrive_org(int org) return("RAID 4"); case CISS_LDRIVE_RAID5: return("RAID 5"); + case CISS_LDRIVE_RAID51: + return("RAID 5+1"); + case CISS_LDRIVE_RAIDADG: + return("RAID ADG"); } return("unkown"); } diff --git a/sys/dev/ciss/cissreg.h b/sys/dev/ciss/cissreg.h index c7844e90a1bd4..f09da7f7cf04e 100644 --- a/sys/dev/ciss/cissreg.h +++ b/sys/dev/ciss/cissreg.h @@ -494,6 +494,8 @@ struct ciss_bmic_id_ldrive { #define CISS_LDRIVE_RAID4 1 #define CISS_LDRIVE_RAID1 2 #define CISS_LDRIVE_RAID5 3 +#define CISS_LDRIVE_RAID51 4 +#define CISS_LDRIVE_RAIDADG 5 u_int8_t res1[2]; #if 0 /* only for identify logical drive extended (0x18) */ u_int32_t logical_drive_identifier; |
