From fffdbe5ed0ac135000522e5e74c6583d93618c9c Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Mon, 21 May 2007 14:25:53 +1000 Subject: Release 2.6.2 --- ANNOUNCE-2.6.2 | 37 +++++++++++++++++++++++++++++++++++++ ChangeLog | 2 +- ReadMe.c | 11 +++-------- inventory | 3 +++ mdadm.8 | 2 +- mdadm.h | 2 +- mdadm.spec | 2 +- mdassemble.8 | 2 +- 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 + * Copyright (C) 2001-2007 Neil Brown * * * 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: - * Paper: Neil Brown - * School of Computer Science and Engineering - * The University of New South Wales - * Sydney, 2052 - * Australia + * Email: */ #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 -- cgit