diff options
author | 2014-01-18 09:01:01 +0000 | |
---|---|---|
committer | 2014-01-18 09:01:01 +0000 | |
commit | 0db2cd3920034c5cf97c92f4fdef248ade54fbcd (patch) | |
tree | ab78b973ffda96b81a09d9c247fc554433dcaa43 /sys/dev/softraid.c | |
parent | Cope with slightly broken NAME sections in man(7) pages (diff) | |
download | wireguard-openbsd-0db2cd3920034c5cf97c92f4fdef248ade54fbcd.tar.xz wireguard-openbsd-0db2cd3920034c5cf97c92f4fdef248ade54fbcd.zip |
Remove the RAID 4 discipline from softraid. Anyone sensible would use RAID
5 instead of RAID 4, assuming both were functional.
Discussed with krw@
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index f876d755087..47008bb057b 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.315 2014/01/05 15:03:57 jsing Exp $ */ +/* $OpenBSD: softraid.c,v 1.316 2014/01/18 09:01:01 jsing Exp $ */ /* * Copyright (c) 2007, 2008, 2009 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org> @@ -3938,9 +3938,6 @@ sr_discipline_init(struct sr_discipline *sd, int level) case 1: sr_raid1_discipline_init(sd); break; - case 4: - sr_raidp_discipline_init(sd, SR_MD_RAID4); - break; case 5: sr_raidp_discipline_init(sd, SR_MD_RAID5); break; |