]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Release 2.6.2 mdadm-2.6.2
authorNeil Brown <neilb@suse.de>
Mon, 21 May 2007 04:25:53 +0000 (14:25 +1000)
committerNeil Brown <neilb@suse.de>
Mon, 21 May 2007 04:25:53 +0000 (14:25 +1000)
ANNOUNCE-2.6.2
ChangeLog
ReadMe.c
inventory
mdadm.8
mdadm.h
mdadm.spec
mdassemble.8

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..215bd1ad82bc3e7dc5ae0af14435bef65601a1b8 100644 (file)
@@ -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
index d92f5ef00de22adc363e40389f3c959e6544cb16..e34a6b97570fc35fb8bd757a4f4964f6e7cfd98a 100644 (file)
--- 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
index 679778ce36fbde06355d5583099907d57eec67fa..9423db3264f28a66a65d14479b311416bb7b4b2a 100644 (file)
--- 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
  *    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
index c31de2e43d81d8243d88a24a394330b3b2b415f1..31ad6be5edb7a26de5cdefdde09b0f015efb4a1a 100644 (file)
--- 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 0d3adfc37d5b80e78520f68af86962a5b5d1e896..ce88d04b3a61eea97b97cc41392b85e6f617696f 100644 (file)
--- 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 e6b03c58c5d4cef213ee832ea022575c7f99f34e..2ecd9fc1c5fa538cb45b867cf0e7a53ea1003e36 100644 (file)
--- 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
index b070bb43595ac4b9151dcfda2a69684dd4f84c53..fcf6dcf0555d7a6c56384167e2ca66e8950c2c53 100644 (file)
@@ -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/
index d76e1631bc161605752eed2f6321a78620374cea..e8447561bf15b6348fd114cc8f922578382a63f9 100644 (file)
@@ -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