Skip to content

Commit a201e68

Browse files
committed
Release mdadm-3.2 - developer only release
Signed-off-by: NeilBrown <[email protected]>
1 parent 71204a5 commit a201e68

File tree

7 files changed

+128
-8
lines changed

7 files changed

+128
-8
lines changed

ANNOUNCE-3.2

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
Subject: ANNOUNCE: mdadm 3.2 - A tool for managing Soft RAID under Linux (DEVEL ONLY)
2+
3+
I am pleased to announce the availability of
4+
mdadm version 3.2
5+
6+
It is available at the usual places:
7+
countrycode=xx.
8+
http://www.${countrycode}kernel.org/pub/linux/utils/raid/mdadm/
9+
and via git at
10+
git://neil.brown.name/mdadm devel-3.2
11+
http://neil.brown.name/git?p=mdadm
12+
13+
This is a "Developers only" release. Please don't consider using it
14+
or making it available to others without reading the following.
15+
16+
17+
By far the most significant change in this release related to the
18+
management of reshaping arrays. This code has been substantially
19+
re-written so that it can work with 'externally managed metadata' -
20+
Intel's IMSM in particular. We now support level migration and
21+
OnLine Capacity Expansion on these arrays.
22+
23+
However, while the code largely works it has not been tested
24+
exhaustively so there are likely to be problems. As the reshape code
25+
for native metadata arrays was changed as part of this rewrite these
26+
problems could also result in regressions for reshape of native
27+
metadata.
28+
29+
It is partly to encourage greater testing that this release is being
30+
made. Any reports of problem - particular reproducible recipes for
31+
triggering the problems - will be gratefully received.
32+
33+
It is hopped that a "3.2.1" release will be available in early March
34+
which will be a bugfix release over this and can be considered
35+
suitable for general use.
36+
37+
Other changes of note:
38+
39+
- Policy framework.
40+
Various policy statements can be made in the mdadm.conf to guide
41+
the behaviour of mdadm, particular with regards to how new devices
42+
are treated by "mdadm -I".
43+
Depending on the 'action' associated with a device (identified by
44+
its 'path') such need devices can be automatically re-added to and
45+
existing array that they previously fell out off, or automatically
46+
added as a spare if they appear to contain no data.
47+
48+
- mdadm now has a limited understanding of partition tables. This
49+
allows the policy framework to make decisions about partitioned
50+
devices as well.
51+
52+
- --incremental --remove can be told what --path the device was on,
53+
and this info will be recorded so that another device appearing at
54+
the same physical location can be preferentially added to the same
55+
array (provides the spare-same-slot action policy applied to the
56+
path).
57+
58+
- A new flags "--invalid-backup" flag is available in --assemble
59+
mode. This can be used to re-assemble an array which was stopping
60+
in the middle of a reshape, and for which the 'backup file' is no
61+
longer available or is corrupted. The array may have some
62+
corruption in it at the point where reshape was up to, but at least
63+
the rest of the array will become available.
64+
65+
66+
- Various internal restructuring - more is needed.
67+
68+
69+
Any feed back and bug reports are always welcomed at:
70+
71+
72+
And please: don't use this in production - particularly not the
73+
--grow functionality.
74+
75+
NeilBrown 1st February 2011
76+
77+

ReadMe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include "mdadm.h"
2626

27-
char Version[] = Name " - v3.2-devel - 23rd November 2010\n";
27+
char Version[] = Name " - v3.2 DEVELOPER_ONLY - 1st February 2011 (USE WITH CARE)\n";
2828

2929
/*
3030
* File: ReadMe.c

inventory

Lines changed: 46 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ANNOUNCE-3.1.1
88
ANNOUNCE-3.1.2
99
ANNOUNCE-3.1.3
1010
ANNOUNCE-3.1.4
11+
ANNOUNCE-3.2
1112
Assemble.c
1213
bitmap.c
1314
bitmap.h
@@ -22,6 +23,7 @@ Detail.c
2223
dlink.c
2324
dlink.h
2425
Examine.c
26+
external-reshape-design.txt
2527
.gitignore
2628
Grow.c
2729
Incremental.c
@@ -50,6 +52,7 @@ mdassemble.8
5052
mdassemble.c
5153
mdmon.8
5254
mdmon.c
55+
mdmon-design.txt
5356
mdmon.h
5457
mdopen.c
5558
md_p.h
@@ -62,8 +65,10 @@ monitor.c
6265
Monitor.c
6366
msg.c
6467
msg.h
68+
part.h
6569
platform-intel.c
6670
platform-intel.h
71+
policy.c
6772
probe_roms.c
6873
probe_roms.h
6974
pwgr.c
@@ -78,7 +83,9 @@ sha1.h
7883
super0.c
7984
super1.c
8085
super-ddf.c
86+
super-gpt.c
8187
super-intel.c
88+
super-mbr.c
8289
swap_super.c
8390
sysfs.c
8491
test
@@ -135,12 +142,48 @@ tests/08imsm-overlap
135142
tests/09imsm-assemble
136143
tests/09imsm-create-fail-rebuild
137144
tests/10ddf-create
145+
tests/11spare-migration
146+
tests/12imsm-r0_2d-grow-r0_3d
147+
tests/12imsm-r0_2d-grow-r0_4d
148+
tests/12imsm-r0_2d-grow-r0_5d
149+
tests/12imsm-r0_3d-grow-r0_4d
150+
tests/12imsm-r5_3d-grow-r5_4d
151+
tests/12imsm-r5_3d-grow-r5_5d
152+
tests/13imsm-r0_r0_2d-grow-r0_r0_4d
153+
tests/13imsm-r0_r0_2d-grow-r0_r0_5d
154+
tests/13imsm-r0_r0_3d-grow-r0_r0_4d
155+
tests/13imsm-r0_r5_3d-grow-r0_r5_4d
156+
tests/13imsm-r0_r5_3d-grow-r0_r5_5d
157+
tests/13imsm-r5_r0_3d-grow-r5_r0_4d
158+
tests/13imsm-r5_r0_3d-grow-r5_r0_5d
159+
tests/14imsm-r0_3d_no_spares-migrate-r5_3d
160+
tests/14imsm-r0_3d-r5_3d-migrate-r5_4d-r5_4d
161+
tests/14imsm-r0_r0_2d-takeover-r10_4d
162+
tests/14imsm-r10_4d-grow-r10_5d
163+
tests/14imsm-r10_r5_4d-takeover-r0_2d
164+
tests/14imsm-r1_2d-grow-r1_3d
165+
tests/14imsm-r1_2d-takeover-r0_2d
166+
tests/14imsm-r5_3d-grow-r5_5d-no-spares
167+
tests/14imsm-r5_3d-migrate-r4_3d
168+
tests/15imsm-r0_3d_64k-migrate-r0_3d_256k
169+
tests/15imsm-r5_3d_4k-migrate-r5_3d_256k
170+
tests/15imsm-r5_3d_64k-migrate-r5_3d_256k
171+
tests/15imsm-r5_6d_4k-migrate-r5_6d_256k
172+
tests/15imsm-r5_r0_3d_64k-migrate-r5_r0_3d_256k
173+
tests/16imsm-r0_3d-migrate-r5_4d
174+
tests/16imsm-r0_5d-migrate-r5_6d
175+
tests/16imsm-r5_3d-migrate-r0_3d
176+
tests/16imsm-r5_5d-migrate-r0_5d
177+
tests/18imsm-1d-takeover-r0_1d
178+
tests/18imsm-1d-takeover-r1_2d
179+
tests/18imsm-r0_2d-takeover-r10_4d
180+
tests/18imsm-r10_4d-takeover-r0_2d
138181
tests/check
139-
tests/env-08imsm-overlap
140-
tests/env-09imsm-assemble
141-
tests/env-09imsm-create-fail-rebuild
182+
tests/env-imsm-template
183+
tests/imsm-grow-template
142184
tests/testdev
143185
tests/ToTest
186+
tests/utils
144187
TODO
145188
udev-md-raid.rules
146189
util.c

mdadm.8.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.\" the Free Software Foundation; either version 2 of the License, or
66
.\" (at your option) any later version.
77
.\" See file COPYING in distribution for details.
8-
.TH MDADM 8 "" v3.1.4
8+
.TH MDADM 8 "" v3.2
99
.SH NAME
1010
mdadm \- manage MD devices
1111
.I aka

mdadm.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
22
Name: mdadm
3-
Version: 3.1.4
3+
Version: 3.2
44
Release: 1
55
Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tgz
66
URL: http://neil.brown.name/blog/mdadm

mdassemble.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" -*- nroff -*-
2-
.TH MDASSEMBLE 8 "" v3.1.4
2+
.TH MDASSEMBLE 8 "" v3.2
33
.SH NAME
44
mdassemble \- assemble MD devices
55
.I aka

mdmon.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" See file COPYING in distribution for details.
2-
.TH MDMON 8 "" v3.1.4
2+
.TH MDMON 8 "" v3.2-devel
33
.SH NAME
44
mdmon \- monitor MD external metadata arrays
55

0 commit comments

Comments
 (0)