2.0-devel-1 release

Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
This commit is contained in:
Neil Brown 2005-06-07 23:03:47 +00:00
parent 11484a635a
commit e793c2e583
6 changed files with 44 additions and 6 deletions

View File

@ -6,6 +6,11 @@ Changes Prior to 1.10.0 release
- Open sub-devices with O_EXCL to detect if already in use
- Make sure superblock updates are flushed directly to disk.
Changes Prior to 2.0-deve-1 release
- Support for version-1 superblock. See --metadata option.
- Support for bitmap based intent logging.
- Minor fixes.
Changes Prior to 1.9.0 release
- Fix rpm build problem (stray %)
- Minor manpage updates
@ -28,8 +33,6 @@ Changes Prior to 1.9.0 release
mdadm /dev/md0 -A /dev/sd[ab]
works.
- Assume '-Q' if just a device is given, rather than being silent.
Changes Prior to this release
- Change "dirty" status to "active" as it was confusing people.
Changes Prior to 1.8.0 release

View File

@ -29,7 +29,7 @@
#include "mdadm.h"
char Version[] = Name " - v1.11.0 - 11 April 2005\n";
char Version[] = Name " - v2.0-devel-1 - DEVELOPMENT VERSION NOT FOR REGULAR USE - 18 February 2005\n";
/*
* File: ReadMe.c

View File

@ -141,7 +141,7 @@ typedef struct bitmap_super_s {
__u32 chunksize; /* 52 the bitmap chunk size in bytes */
__u32 daemon_sleep; /* 56 seconds between disk flushes */
__u8 pad[4096 - 60]; /* set to zero */
__u8 pad[256 - 60]; /* set to zero */
} bitmap_super_t;
/* notes:

View File

@ -12,6 +12,7 @@ ANNOUNCE-1.7.0
ANNOUNCE-1.8.0
ANNOUNCE-1.8.1
ANNOUNCE-1.9.0
ANNOUNCE-2.0-devel-1
Assemble.c
Build.c
COPYING
@ -28,6 +29,8 @@ Monitor.c
Query.c
ReadMe.c
TODO
bitmap.c
bitmap.h
config.c
dlink.c
dlink.h
@ -48,4 +51,6 @@ mdstat.c
misc/
misc/syslog-events
raid5extend.c
super0.c
super1.c
util.c

32
mdadm.8
View File

@ -1,5 +1,5 @@
.\" -*- nroff -*-
.TH MDADM 8 "" v1.11.1
.TH MDADM 8 "" v2.0-devel-1
.SH NAME
mdadm \- manage MD devices
.I aka
@ -165,6 +165,10 @@ mode.
.BR -G ", " --grow
Change the size or shape of an active array.
.TP
.BR -X ", " --examine-bitmap
Report information about a bitmap file.
.TP
.BR -h ", " --help
Display help message or, after above option, mode specific help
@ -190,6 +194,18 @@ Be less verbose. This is used with
and
.BR --examine .
.TP
.BR -b ", " --bitmap=
Give the name of a bitmap file to use with this array. Can be used
with --create (file should not exist) or --assemble (file should
exist).
.TP
.BR --bitmap-chunk=
Set the Chunksize of the bitmap. Each bit corresponds to that many
Kilobytes of storage. Default is 4.
.TP
.BR -f ", " --force
Be more forceful about certain operations. See the various modes of
@ -319,6 +335,16 @@ must be specified before the fault mode is specified.
.BR --layout=
same as --parity
.TP
.BR -b ", " --bitmap=
Specify a file to store a write-intent bitmap in. The file should not
exist unless --force is also given. The same file should be provided
when assembling the array.
.TP
.BR --bitmap-chunk=
Specifty the chunksize for the bitmap.
.TP
.BR -n ", " --raid-devices=
Specify the number of active devices in the array. This, plus the
@ -467,6 +493,10 @@ an attempt will be made to start it anyway.
.BR -a ", " "--auto{=no,yes,md,mdp,part}"
See this option under Create and Build options.
.TP
.BR -b ", " --bitmap=
Specify the bitmap file that was given when the array was created.
.TP
.BR -U ", " --update=
Update the superblock on each device while assembling the array. The

View File

@ -1,6 +1,6 @@
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
Name: mdadm
Version: 1.11.1
Version: 2.0-devel-1
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/