summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-05-21 14:25:53 +1000
committerNeil Brown <neilb@suse.de>2007-05-21 14:25:53 +1000
commitfffdbe5ed0ac135000522e5e74c6583d93618c9c (patch)
treeff66cb575a8fee7b4816ec5e405ad00d3776cc9a
parenta77be586720af37f175f3e9f48047d65ef5f67de (diff)
downloadmdadm-fffdbe5ed0ac135000522e5e74c6583d93618c9c.tar.gz
mdadm-fffdbe5ed0ac135000522e5e74c6583d93618c9c.tar.xz
mdadm-fffdbe5ed0ac135000522e5e74c6583d93618c9c.zip
Release 2.6.2mdadm-2.6.2
-rw-r--r--ANNOUNCE-2.6.237
-rw-r--r--ChangeLog2
-rw-r--r--ReadMe.c11
-rw-r--r--inventory3
-rw-r--r--mdadm.82
-rw-r--r--mdadm.h2
-rw-r--r--mdadm.spec2
-rw-r--r--mdassemble.82
8 files changed, 48 insertions, 13 deletions
diff --git a/ANNOUNCE-2.6.2 b/ANNOUNCE-2.6.2
index e69de29..215bd1a 100644
--- a/ANNOUNCE-2.6.2
+++ b/ANNOUNCE-2.6.2
@@ -0,0 +1,37 @@
+Subject: ANNOUNCE: mdadm 2.6.2 - A tool for managing Soft RAID under Linux
+
+I am pleased to announce the availability of
+ mdadm version 2.6.2
+
+It is available at the usual places:
+ http://www.cse.unsw.edu.au/~neilb/source/mdadm/
+and
+ 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?p=mdadm
+
+mdadm is a tool for creating, managing and monitoring
+device arrays using the "md" driver in Linux, also
+known as Software RAID arrays.
+
+Release 2.6.2 adds a few minor bug fixes to 2.6.1
+
+Changelog Entries:
+ - --fail detached and --remove faulty can be used to fail and
+ remove devices that are no longer physically present.
+ - --export option for --detail or present information in a format
+ that can be processed by udev.
+ - fix internal bitmap allocation problems with v1.1, v1.2 metadata.
+ - --help now goes to stdout so you can direct it to a pager.
+ - Various manpage updates.
+ - Make "--grow --add" for linear arrays really work.
+ - --auto-detect to trigger in-kernel autodetect.
+ - Make return code for "--detail --test" more reliable. Missing
+ devices as well as failed devices cause an error.
+
+Development of mdadm is sponsored by
+ SUSE Labs, Novell Inc.
+
+NeilBrown 21st May 2007
diff --git a/ChangeLog b/ChangeLog
index d92f5ef..e34a6b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Changes Prior to this release
+Changes Prior to 2.6.2 release
- --fail detached and --remove faulty can be used to fail and
remove devices that are no longer physically present.
- --export option for --detail or present information in a format
diff --git a/ReadMe.c b/ReadMe.c
index 679778c..9423db3 100644
--- a/ReadMe.c
+++ b/ReadMe.c
@@ -1,7 +1,7 @@
/*
* mdadm - manage Linux "md" devices aka RAID arrays.
*
- * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
+ * Copyright (C) 2001-2007 Neil Brown <neilb@suse.de>
*
*
* This program is free software; you can redistribute it and/or modify
@@ -19,17 +19,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Neil Brown
- * Email: <neilb@cse.unsw.edu.au>
- * Paper: Neil Brown
- * School of Computer Science and Engineering
- * The University of New South Wales
- * Sydney, 2052
- * Australia
+ * Email: <neilb@suse.de>
*/
#include "mdadm.h"
-char Version[] = Name " - v2.6.1 - 22nd February 2007\n";
+char Version[] = Name " - v2.6.2 - 21st May 2007\n";
/*
* File: ReadMe.c
diff --git a/inventory b/inventory
index c31de2e..31ad6be 100644
--- a/inventory
+++ b/inventory
@@ -16,6 +16,7 @@ ANNOUNCE-2.5.5
ANNOUNCE-2.5.6
ANNOUNCE-2.6
ANNOUNCE-2.6.1
+ANNOUNCE-2.6.2
Assemble.c
bitmap.c
bitmap.h
@@ -83,6 +84,7 @@ tests/00raid5
tests/00raid6
tests/01r1fail
tests/01r5fail
+tests/02lineargrow
tests/02r1add
tests/02r1grow
tests/02r5grow
@@ -111,6 +113,7 @@ tests/06r5swap
tests/06sysfs
tests/06update-uuid
tests/06wrmostly
+tests/07autodetect
tests/07testreshape5
tests/check
tests/testdev
diff --git a/mdadm.8 b/mdadm.8
index 0d3adfc..ce88d04 100644
--- a/mdadm.8
+++ b/mdadm.8
@@ -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 "" v2.6.1
+.TH MDADM 8 "" v2.6.2
.SH NAME
mdadm \- manage MD devices
.I aka
diff --git a/mdadm.h b/mdadm.h
index e6b03c5..2ecd9fc 100644
--- a/mdadm.h
+++ b/mdadm.h
@@ -32,7 +32,7 @@
#ifndef __dietlibc__
extern __off64_t lseek64 __P ((int __fd, __off64_t __offset, int __whence));
#else
-# ifdef __NO_STAT64
+# if defined(__NO_STAT64) || __WORDSIZE != 32
# define lseek64 lseek
# endif
#endif
diff --git a/mdadm.spec b/mdadm.spec
index b070bb4..fcf6dcf 100644
--- a/mdadm.spec
+++ b/mdadm.spec
@@ -1,6 +1,6 @@
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
Name: mdadm
-Version: 2.6.1
+Version: 2.6.2
Release: 1
Source: http://www.cse.unsw.edu.au/~neilb/source/mdadm/mdadm-%{version}.tgz
URL: http://www.cse.unsw.edu.au/~neilb/source/mdadm/
diff --git a/mdassemble.8 b/mdassemble.8
index d76e163..e844756 100644
--- a/mdassemble.8
+++ b/mdassemble.8
@@ -1,5 +1,5 @@
.\" -*- nroff -*-
-.TH MDASSEMBLE 8 "" v2.6.1
+.TH MDASSEMBLE 8 "" v2.6.2
.SH NAME
mdassemble \- assemble MD devices
.I aka