Skip to content
This repository has been archived by the owner on Oct 12, 2020. It is now read-only.

Commit

Permalink
Release mdadm-3.2.3
Browse files Browse the repository at this point in the history
Bug fix release.
  • Loading branch information
neilbrown committed Dec 23, 2011
1 parent c0c1acd commit 1fbc5b7
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 7 deletions.
24 changes: 24 additions & 0 deletions ANNOUNCE-3.2.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Subject: ANNOUNCE: mdadm 3.2.3 - A tool for managing Soft RAID under Linux

I am pleased to announce the availability of
mdadm version 3.2.3

It is available at the usual places:
countrycode=xx.
http://www.${countrycode}kernel.org/pub/linux/utils/raid/mdadm/
and via git at
git://neil.brown.name/mdadm
http://neil.brown.name/git/mdadm

This release is largely a bugfix release for the 3.2 series with many
minor fixes with little or no impact.

The largest single area of change is support for reshape of Intel
IMSM arrays (OnLine Capacity Explansion and Level Migtration).
Among other fixes, this now has a better chance of surviving if a
device fails during reshape.

Upgrading is recommended - particularly if you use mdadm for IMSM
arrays - but not essential.

NeilBrown 23rd December 2011
2 changes: 1 addition & 1 deletion ReadMe.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#include "mdadm.h"

char Version[] = Name " - v3.2.2 - 17th June 2011\n";
char Version[] = Name " - v3.2.3 - 23rd December 2011\n";

/*
* File: ReadMe.c
Expand Down
2 changes: 2 additions & 0 deletions inventory
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ANNOUNCE-3.1.5
ANNOUNCE-3.2
ANNOUNCE-3.2.1
ANNOUNCE-3.2.2
ANNOUNCE-3.2.3
Assemble.c
bitmap.c
bitmap.h
Expand Down Expand Up @@ -79,6 +80,7 @@ probe_roms.h
pwgr.c
Query.c
raid5extend.c
raid6check.8
raid6check.c
ReadMe.c
README.initramfs
Expand Down
14 changes: 12 additions & 2 deletions makedist
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,18 @@ then
cp ChangeLog $target/ChangeLog
if [ " $arg" != " test" ]
then
scp $target/$base master.kernel.org:/pub/linux/utils/raid/mdadm/mdadm-$version.tar.gz
scp $target/ANNOUNCE $target/ChangeLog master.kernel.org:/pub/linux/utils/raid/mdadm/
echo -n "Confirm signing this release? "
read a
if [ " $a" != " y" ]; then echo OK - bye. ; exit 1; fi
if zcat $target/$base | gpg -ba > $target/$base.sign && gpg -ba $target/ANNOUNCE
then
kup put $target/$base $target/$base.sign \
/pub/linux/utils/raid/mdadm/mdadm-$version.tar.gz
kup put $target/ANNOUNCE $target/ANNOUNCE.asc /pub/linux/utils/raid/mdadm/ANNOUNCE
else
echo signing failed
exit 1
fi
fi
else
if [ ! -f $target/$base ]
Expand Down
2 changes: 1 addition & 1 deletion mdadm.8.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.\" the Free Software Foundation; either version 2 of the License, or
.\" (at your option) any later version.
.\" See file COPYING in distribution for details.
.TH MDADM 8 "" v3.2.2
.TH MDADM 8 "" v3.2.3
.SH NAME
mdadm \- manage MD devices
.I aka
Expand Down
4 changes: 3 additions & 1 deletion mdadm.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
Name: mdadm
Version: 3.2.2
Version: 3.2.3
Release: 1
Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tgz
URL: http://neil.brown.name/blog/mdadm
Expand Down Expand Up @@ -41,6 +41,8 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
%doc TODO ChangeLog mdadm.conf-example COPYING
%{_sbindir}/mdadm
%{_sbindir}/mdmon
/lib/udev/rules.d/64-md-raid.rules
%config(noreplace,missingok)/%{_sysconfdir}/mdadm.conf
%{_mandir}/man*/md*

Expand Down
2 changes: 1 addition & 1 deletion mdassemble.8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" -*- nroff -*-
.TH MDASSEMBLE 8 "" v3.2.2
.TH MDASSEMBLE 8 "" v3.2.3
.SH NAME
mdassemble \- assemble MD devices
.I aka
Expand Down
2 changes: 1 addition & 1 deletion mdmon.8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" See file COPYING in distribution for details.
.TH MDMON 8 "" v3.2.2
.TH MDMON 8 "" v3.2.3
.SH NAME
mdmon \- monitor MD external metadata arrays

Expand Down

0 comments on commit 1fbc5b7

Please sign in to comment.