diff options
| author | Jonathan Brassow <jbrassow@redhat.com> | 2013-02-20 21:28:10 -0500 |
|---|---|---|
| committer | NeilBrown <neilb@suse.de> | 2013-02-25 19:55:36 -0500 |
| commit | fe5d2f4a15967bbe907e7b3e31e49dae7af7cc6b (patch) | |
| tree | 480fe9fd2e9cd0884b375351c4db98a9dfb21aac /Documentation/device-mapper | |
| parent | 9a3152ab024867100f2f50d124b998d05fb1c3f6 (diff) | |
DM RAID: Add support for MD's RAID10 "far" and "offset" algorithms
DM RAID: Add support for MD's RAID10 "far" and "offset" algorithms
Until now, dm-raid.c only supported the "near" algorthm of MD's RAID10
implementation. This patch adds support for the "far" and "offset"
algorithms, but only with the improved redundancy that is brought with
the introduction of the 'use_far_sets' bit, which shifts copied stripes
according to smaller sets vs the entire array. That is, the 17th bit
of the 'layout' variable that defines the RAID10 implementation will
always be set. (More information on how the 'layout' variable selects
the RAID10 algorithm can be found in the opening comments of
drivers/md/raid10.c.)
Signed-off-by: Jonathan Brassow <jbrassow@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'Documentation/device-mapper')
| -rw-r--r-- | Documentation/device-mapper/dm-raid.txt | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/Documentation/device-mapper/dm-raid.txt b/Documentation/device-mapper/dm-raid.txt index 56fb62b09fc5..b428556197c9 100644 --- a/Documentation/device-mapper/dm-raid.txt +++ b/Documentation/device-mapper/dm-raid.txt | |||
| @@ -30,6 +30,7 @@ The target is named "raid" and it accepts the following parameters: | |||
| 30 | raid10 Various RAID10 inspired algorithms chosen by additional params | 30 | raid10 Various RAID10 inspired algorithms chosen by additional params |
| 31 | - RAID10: Striped Mirrors (aka 'Striping on top of mirrors') | 31 | - RAID10: Striped Mirrors (aka 'Striping on top of mirrors') |
| 32 | - RAID1E: Integrated Adjacent Stripe Mirroring | 32 | - RAID1E: Integrated Adjacent Stripe Mirroring |
| 33 | - RAID1E: Integrated Offset Stripe Mirroring | ||
| 33 | - and other similar RAID10 variants | 34 | - and other similar RAID10 variants |
| 34 | 35 | ||
| 35 | Reference: Chapter 4 of | 36 | Reference: Chapter 4 of |
| @@ -64,15 +65,15 @@ The target is named "raid" and it accepts the following parameters: | |||
| 64 | synchronisation state for each region. | 65 | synchronisation state for each region. |
| 65 | 66 | ||
| 66 | [raid10_copies <# copies>] | 67 | [raid10_copies <# copies>] |
| 67 | [raid10_format near] | 68 | [raid10_format <near|far|offset>] |
| 68 | These two options are used to alter the default layout of | 69 | These two options are used to alter the default layout of |
| 69 | a RAID10 configuration. The number of copies is can be | 70 | a RAID10 configuration. The number of copies is can be |
| 70 | specified, but the default is 2. There are other variations | 71 | specified, but the default is 2. There are also three |
| 71 | to how the copies are laid down - the default and only current | 72 | variations to how the copies are laid down - the default |
| 72 | option is "near". Near copies are what most people think of | 73 | is "near". Near copies are what most people think of with |
| 73 | with respect to mirroring. If these options are left | 74 | respect to mirroring. If these options are left unspecified, |
| 74 | unspecified, or 'raid10_copies 2' and/or 'raid10_format near' | 75 | or 'raid10_copies 2' and/or 'raid10_format near' are given, |
| 75 | are given, then the layouts for 2, 3 and 4 devices are: | 76 | then the layouts for 2, 3 and 4 devices are: |
| 76 | 2 drives 3 drives 4 drives | 77 | 2 drives 3 drives 4 drives |
| 77 | -------- ---------- -------------- | 78 | -------- ---------- -------------- |
| 78 | A1 A1 A1 A1 A2 A1 A1 A2 A2 | 79 | A1 A1 A1 A1 A2 A1 A1 A2 A2 |
| @@ -85,6 +86,33 @@ The target is named "raid" and it accepts the following parameters: | |||
| 85 | 3-device layout is what might be called a 'RAID1E - Integrated | 86 | 3-device layout is what might be called a 'RAID1E - Integrated |
| 86 | Adjacent Stripe Mirroring'. | 87 | Adjacent Stripe Mirroring'. |
| 87 | 88 | ||
| 89 | If 'raid10_copies 2' and 'raid10_format far', then the layouts | ||
| 90 | for 2, 3 and 4 devices are: | ||
| 91 | 2 drives 3 drives 4 drives | ||
| 92 | -------- -------------- -------------------- | ||
| 93 | A1 A2 A1 A2 A3 A1 A2 A3 A4 | ||
| 94 | A3 A4 A4 A5 A6 A5 A6 A7 A8 | ||
| 95 | A5 A6 A7 A8 A9 A9 A10 A11 A12 | ||
| 96 | .. .. .. .. .. .. .. .. .. | ||
| 97 | A2 A1 A3 A1 A2 A2 A1 A4 A3 | ||
| 98 | A4 A3 A6 A4 A5 A6 A5 A8 A7 | ||
| 99 | A6 A5 A9 A7 A8 A10 A9 A12 A11 | ||
| 100 | .. .. .. .. .. .. .. .. .. | ||
| 101 | |||
| 102 | If 'raid10_copies 2' and 'raid10_format offset', then the | ||
| 103 | layouts for 2, 3 and 4 devices are: | ||
| 104 | 2 drives 3 drives 4 drives | ||
| 105 | -------- ------------ ----------------- | ||
| 106 | A1 A2 A1 A2 A3 A1 A2 A3 A4 | ||
| 107 | A2 A1 A3 A1 A2 A2 A1 A4 A3 | ||
| 108 | A3 A4 A4 A5 A6 A5 A6 A7 A8 | ||
| 109 | A4 A3 A6 A4 A5 A6 A5 A8 A7 | ||
| 110 | A5 A6 A7 A8 A9 A9 A10 A11 A12 | ||
| 111 | A6 A5 A9 A7 A8 A10 A9 A12 A11 | ||
| 112 | .. .. .. .. .. .. .. .. .. | ||
| 113 | Here we see layouts closely akin to 'RAID1E - Integrated | ||
| 114 | Offset Stripe Mirroring'. | ||
| 115 | |||
| 88 | <#raid_devs>: The number of devices composing the array. | 116 | <#raid_devs>: The number of devices composing the array. |
| 89 | Each device consists of two entries. The first is the device | 117 | Each device consists of two entries. The first is the device |
| 90 | containing the metadata (if any); the second is the one containing the | 118 | containing the metadata (if any); the second is the one containing the |
| @@ -142,3 +170,5 @@ Version History | |||
| 142 | 1.3.0 Added support for RAID 10 | 170 | 1.3.0 Added support for RAID 10 |
| 143 | 1.3.1 Allow device replacement/rebuild for RAID 10 | 171 | 1.3.1 Allow device replacement/rebuild for RAID 10 |
| 144 | 1.3.2 Fix/improve redundancy checking for RAID10 | 172 | 1.3.2 Fix/improve redundancy checking for RAID10 |
| 173 | 1.4.0 Non-functional change. Removes arg from mapping function. | ||
| 174 | 1.4.1 Add RAID10 "far" and "offset" algorithm support. | ||
