Skip to content

Commit

Permalink
Define RAID 5+1 and RAID ADG fault tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
ps authored and ps committed Dec 8, 2003
1 parent e2ed712 commit 3f86283
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sys/dev/ciss/ciss.c
Expand Up @@ -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");
}
Expand Down
2 changes: 2 additions & 0 deletions sys/dev/ciss/cissreg.h
Expand Up @@ -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;
Expand Down

0 comments on commit 3f86283

Please sign in to comment.