Skip to content

Commit 3b2aad6

Browse files
committed
Create new release: 3.2.5
Fix a serious regression in 3.2.4 which caused "--add" to often fail. Other minor fixes included. Signed-off-by: NeilBrown <[email protected]>
1 parent 3c8b273 commit 3b2aad6

File tree

7 files changed

+37
-5
lines changed

7 files changed

+37
-5
lines changed

ANNOUNCE-3.2.5

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Subject: ANNOUNCE: mdadm 3.2.5 - A tool for managing Soft RAID under Linux
2+
3+
I am somewhat disappointed to have to announce the availability of
4+
mdadm version 3.2.5
5+
6+
It is available at the usual places, now including github:
7+
countrycode=xx.
8+
http://www.${countrycode}kernel.org/pub/linux/utils/raid/mdadm/
9+
and via git at
10+
git://github.com/neilbrown/mdadm
11+
git://neil.brown.name/mdadm
12+
http://neil.brown.name/git/mdadm
13+
14+
This release primarily fixes a serious regression in 3.2.4.
15+
This regression does *not* cause any risk to data. It simply
16+
means that adding a device with "--add" would sometime fail
17+
when it should not.
18+
19+
The fix also includes a couple of minor fixes such as making
20+
the "--layout=preserve" option to "--grow" work again.
21+
22+
A reminder that the default location for runtime files is now
23+
"/run/mdadm". If you compile this for a distro that does not
24+
have "/run", you will need to compile with an alternate setting for
25+
MAP_DIR. e.g.
26+
make MAP_DIR=/var/run/mdadm
27+
or
28+
make MAP_DIR=/dev/.mdadm
29+
30+
NeilBrown 18th May 2012
31+

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.4 - 9th May 2012\n";
27+
char Version[] = Name " - v3.2.5 - 18th May 2012\n";
2828

2929
/*
3030
* File: ReadMe.c

inventory

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ ANNOUNCE-3.2.1
1515
ANNOUNCE-3.2.2
1616
ANNOUNCE-3.2.3
1717
ANNOUNCE-3.2.4
18+
ANNOUNCE-3.2.5
1819
Assemble.c
1920
Build.c
2021
COPYING

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.2.4
8+
.TH MDADM 8 "" v3.2.5
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.2.4
3+
Version: 3.2.5
44
Release: 1
55
Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.gz
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.2.4
2+
.TH MDASSEMBLE 8 "" v3.2.5
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.2.4
2+
.TH MDMON 8 "" v3.2.5
33
.SH NAME
44
mdmon \- monitor MD external metadata arrays
55

0 commit comments

Comments
 (0)