Release mdadm-3.3.1

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2014-06-05 16:45:56 +10:00
parent 1e60caebbc
commit 9275a5ec59
7 changed files with 45 additions and 7 deletions

23
ANNOUNCE-3.3.1 Normal file
View File

@ -0,0 +1,23 @@
Subject: ANNOUNCE: mdadm 3.3.1 - A tool for managing md Soft RAID under Linux
I am pleased to announce the availability of
mdadm version 3.3.1
It is available at the usual places:
http://www.kernel.org/pub/linux/utils/raid/mdadm/
and via git at
git://github.com/neilbrown/mdadm
git://neil.brown.name/mdadm
http://git.neil.brown.name/git/mdadm.git
The main changes are:
- lots of work on "DDF" support. Hopefully it will be more stable
now. Bug reports are always welcome.
- improved interactions with 'systemd'. Where possible, background
tasks are run from systemd (if it is present) rather then forking
disassociationg from the session. This is important because udev
doesn't really let you disassociate.
though there are a number of other little bug fixes too.
NeilBrown 5th June 2014

View File

@ -1,7 +1,7 @@
/* /*
* mdadm - manage Linux "md" devices aka RAID arrays. * mdadm - manage Linux "md" devices aka RAID arrays.
* *
* Copyright (C) 2001-2013 Neil Brown <neilb@suse.de> * Copyright (C) 2001-2014 Neil Brown <neilb@suse.de>
* *
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -25,10 +25,10 @@
#include "mdadm.h" #include "mdadm.h"
#ifndef VERSION #ifndef VERSION
#define VERSION "3.3" #define VERSION "3.3.1"
#endif #endif
#ifndef VERS_DATE #ifndef VERS_DATE
#define VERS_DATE "3rd September 2013" #define VERS_DATE "5th June 2014"
#endif #endif
char Version[] = Name " - v" VERSION " - " VERS_DATE "\n"; char Version[] = Name " - v" VERSION " - " VERS_DATE "\n";

View File

@ -18,6 +18,7 @@ ANNOUNCE-3.2.4
ANNOUNCE-3.2.5 ANNOUNCE-3.2.5
ANNOUNCE-3.2.6 ANNOUNCE-3.2.6
ANNOUNCE-3.3 ANNOUNCE-3.3
ANNOUNCE-3.3.1
Assemble.c Assemble.c
Build.c Build.c
COPYING COPYING
@ -75,6 +76,7 @@ mdmon.h
mdopen.c mdopen.c
mdstat.c mdstat.c
misc/ misc/
misc/mdcheck
misc/syslog-events misc/syslog-events
mkinitramfs mkinitramfs
monitor.c monitor.c
@ -103,7 +105,13 @@ super1.c
swap_super.c swap_super.c
sysfs.c sysfs.c
systemd/ systemd/
systemd/SUSE-mdadm_env.sh
systemd/mdadm-grow-continue@.service
systemd/mdadm-last-resort@.service
systemd/mdadm-last-resort@.timer
systemd/mdadm.shutdown
systemd/mdmon@.service systemd/mdmon@.service
systemd/mdmonitor.service
test test
tests/ tests/
tests/00linear tests/00linear
@ -128,6 +136,7 @@ tests/02r6grow
tests/03assem-incr tests/03assem-incr
tests/03r0assem tests/03r0assem
tests/03r5assem tests/03r5assem
tests/03r5assem-failed
tests/03r5assemV1 tests/03r5assemV1
tests/04r0update tests/04r0update
tests/04r1update tests/04r1update
@ -173,13 +182,19 @@ tests/07testreshape5
tests/09imsm-assemble tests/09imsm-assemble
tests/09imsm-create-fail-rebuild tests/09imsm-create-fail-rebuild
tests/09imsm-overlap tests/09imsm-overlap
tests/10ddf-assemble-missing
tests/10ddf-create tests/10ddf-create
tests/10ddf-create-fail-rebuild tests/10ddf-create-fail-rebuild
tests/10ddf-fail-create-race tests/10ddf-fail-create-race
tests/10ddf-fail-readd
tests/10ddf-fail-readd-readonly
tests/10ddf-fail-spare tests/10ddf-fail-spare
tests/10ddf-fail-stop-readd
tests/10ddf-fail-twice tests/10ddf-fail-twice
tests/10ddf-fail-two-spares tests/10ddf-fail-two-spares
tests/10ddf-geometry tests/10ddf-geometry
tests/10ddf-incremental-wrong-order
tests/10ddf-sudden-degraded
tests/11spare-migration tests/11spare-migration
tests/12imsm-r0_2d-grow-r0_3d tests/12imsm-r0_2d-grow-r0_3d
tests/12imsm-r0_2d-grow-r0_4d tests/12imsm-r0_2d-grow-r0_4d

View File

@ -5,7 +5,7 @@
.\" the Free Software Foundation; either version 2 of the License, or .\" the Free Software Foundation; either version 2 of the License, or
.\" (at your option) any later version. .\" (at your option) any later version.
.\" See file COPYING in distribution for details. .\" See file COPYING in distribution for details.
.TH MDADM 8 "" v3.3 .TH MDADM 8 "" v3.3.1
.SH NAME .SH NAME
mdadm \- manage MD devices mdadm \- manage MD devices
.I aka .I aka

View File

@ -1,6 +1,6 @@
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays) Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
Name: mdadm Name: mdadm
Version: 3.3 Version: 3.3.1
Release: 1 Release: 1
Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.gz Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.gz
URL: http://neil.brown.name/blog/mdadm URL: http://neil.brown.name/blog/mdadm

View File

@ -1,5 +1,5 @@
.\" -*- nroff -*- .\" -*- nroff -*-
.TH MDASSEMBLE 8 "" v3.3 .TH MDASSEMBLE 8 "" v3.3.1
.SH NAME .SH NAME
mdassemble \- assemble MD devices mdassemble \- assemble MD devices
.I aka .I aka

View File

@ -1,5 +1,5 @@
.\" See file COPYING in distribution for details. .\" See file COPYING in distribution for details.
.TH MDMON 8 "" v3.3 .TH MDMON 8 "" v3.3.1
.SH NAME .SH NAME
mdmon \- monitor MD external metadata arrays mdmon \- monitor MD external metadata arrays