diff options
author | Alexander Motin <mav@FreeBSD.org> | 2011-03-24 21:31:32 +0000 |
---|---|---|
committer | Alexander Motin <mav@FreeBSD.org> | 2011-03-24 21:31:32 +0000 |
commit | 89b172238a5dbea197f3bb46fade76edbe13cab5 (patch) | |
tree | c6d2c52832833705e8a109a4fd092aba4318585f /sbin/geom/class/Makefile | |
parent | 65612637e802602c3de266ccfe09da1866d2c2aa (diff) |
MFgraid/head:
Add new RAID GEOM class, that is going to replace ataraid(4) in supporting
various BIOS-based software RAIDs. Unlike ataraid(4) this implementation
does not depend on legacy ata(4) subsystem and can be used with any disk
drivers, including new CAM-based ones (ahci(4), siis(4), mvs(4), ata(4)
with `options ATA_CAM`). To make code more readable and extensible, this
implementation follows modular design, including core part and two sets
of modules, implementing support for different metadata formats and RAID
levels.
Support for such popular metadata formats is now implemented:
Intel, JMicron, NVIDIA, Promise (also used by AMD/ATI) and SiliconImage.
Such RAID levels are now supported:
RAID0, RAID1, RAID1E, RAID10, SINGLE, CONCAT.
For any all of these RAID levels and metadata formats this class supports
full cycle of volume operations: reading, writing, creation, deletion,
disk removal and insertion, rebuilding, dirty shutdown detection
and resynchronization, bad sector recovery, faulty disks tracking,
hot-spare disks. For Intel and Promise formats there is support multiple
volumes per disk set.
Look graid(8) manual page for additional details.
Co-authored by: imp
Sponsored by: Cisco Systems, Inc. and iXsystems, Inc.
Notes
Notes:
svn path=/head/; revision=219974
Diffstat (limited to 'sbin/geom/class/Makefile')
-rw-r--r-- | sbin/geom/class/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/geom/class/Makefile b/sbin/geom/class/Makefile index 0611cdd7f29e..912561fbc52f 100644 --- a/sbin/geom/class/Makefile +++ b/sbin/geom/class/Makefile @@ -14,6 +14,7 @@ SUBDIR+=mountver SUBDIR+=multipath SUBDIR+=nop SUBDIR+=part +SUBDIR+=raid SUBDIR+=raid3 SUBDIR+=sched SUBDIR+=shsec |