]> git.ipfire.org Git - thirdparty/mdadm.git/blob - ChangeLog
syslog support for monitor mode
[thirdparty/mdadm.git] / ChangeLog
1 Changes Prior to this release
2 - Assorted bug fixes
3 - Support write-intent-bitmaps on raid10
4 - Support little-endian (Rather than hostendian) bitmaps.
5 - Return correct error code from 'mdadm -S'
6 - Remove extra blank line from 'mdadm -Eb' output.
7 - Improve option parsing so that -a and -b do not have
8 optional arguements: the arg is either required or not
9 depending on context.
10 - Allow scanning of devices listed in /proc/partitions even
11 if they don't appear in /dev.
12 - Support --assume-clean in --create mode as well as --build
13 - Add support for --monitor to report to syslog: -y or --syslog.
14 Thanks to Ross Vandegrift
15 - --monitor now reports which device failed in a 'Fail' message
16 This broke with 2.6
17
18 Changes Prior to 2.1 release
19 - Fix assembling of raid10 array when devices are missing.
20 mdadm now correctly detects if a array is workable or not
21 depending on which devices are present, and so will correctly
22 handle "--assemble --force" if multiple devices have failed.
23 - Report raid10 layout in --examine output.
24 - Fix assembling of arrays that use the version-1 superblock and
25 have spares. Previously the spares would be ignored.
26 - Fix bug so that multiple drives can be re-added at once.
27 - Fix problem with hot-adding a bitmap to version-1-superblock
28 arrays.
29
30 Changes Prior to 2.0
31 - Support assembling from byte-swapped superblocks
32 metadata type "0.swap" and --update=byteorder
33 - write-mostly and write-behind support for raid1.
34 - Support --name= and 'name=' config entry for identifying
35 arrays be name.
36 - RAID10 in man pages.
37 - Lot of minor manpage updates
38
39 Changes Prior to 2.0-devel-3 release
40 - Assorted fixes for multiple bugs...
41 - Add test suite
42
43 Changes Prior to 1.12.0 release
44 Several of these are backported from the Debian package
45 - Don't use 'lstat' to check for blockdevices, use stat.
46 - Document --size=max option for --grow
47 - Document SparesMissing event and DeviceDisappeared/WrongLevel
48 - --stop --scan repeatly cycles until no more progress can be made
49 so that stack devices are stopped properly
50 - Minor type rationalisation for ident->uuid - now always 'int[]'
51 - Fix type in online help for --grow (was -F, now -G)
52 - Allow --auto command line option to set default auto=
53 value when running "--assemble --scan". Previously
54 --auto was ignored if --scan was given
55 - Fix a few type casts
56 - Fix parsing of /dev/md/N in is_standard
57 - Fix rounding errors in human_size()
58 - Fix silly example in mdadm.conf-examples
59 - When finding a /dev name for a device, prefer shorter names
60 - Suppress listing of devices= in --brief output of -D or -E,
61 unless -v is given (-vv gives the old behaviour with -Dsv).
62 This is because the device list can change and so is not a
63 stable aspect of the array
64 - Allow --force with --grow so '-Gfn1' works (on raid1)
65 - Replace sprintf calls with snprintf (to quiet diet-libc)
66 - Add man page for mdassemble
67 - Fix compilation with tinyc
68
69 Changes Prior to 1.11.0 release
70 - Fix embarassing bug which causes --add to always fail.
71
72 Changes Prior to 1.10.0 release
73 - Fix bug with --config=partitions
74 - Open sub-devices with O_EXCL to detect if already in use
75 - Make sure superblock updates are flushed directly to disk.
76
77 Changes Prior to 2.0-devel-1 release
78 - Support for version-1 superblock. See --metadata option.
79 - Support for bitmap based intent logging.
80 - Minor fixes.
81
82 Changes Prior to 1.9.0 release
83 - Fix rpm build problem (stray %)
84 - Minor manpage updates
85 - Change "dirty" status to "active" as it was confusing people.
86 - --assemble --auto recognises 'standard' name and insists on using
87 the appropriate major/minor number for them.
88 - Remove underscore from partition names, so partitions of
89 "foo" are "foo1", "foo2" etc (unchanged) and partitions of
90 "f00" are "f00p1", "f00p2" etc rather than "f00_p1"...
91 - Use "major", "minor", "makedev" macros instead of
92 "MAJOR", "MINOR", "MKDEV" so that large device numbers work
93 on 2.6 (providing you have glibc 2.3.3 or later).
94 - Add some missing closes of open file descriptors.
95 - Reread /proc/partition for every array assembled when using
96 it to find devices, rather than only once.
97 - Make "mdadm -Ss" stop stacked devices properly, by reversing the
98 order in which arrays are stopped.
99 - Improve some error messages.
100 - Allow device name to appear before first option, so e.g.
101 mdadm /dev/md0 -A /dev/sd[ab]
102 works.
103 - Assume '-Q' if just a device is given, rather than being silent.
104 - Change "dirty" status to "active" as it was confusing people.
105
106 Changes Prior to 1.8.0 release
107 - Makefile cleanup from Luca Berra <bluca@comedia.it>
108 - --pid-file (-i) to set a pid file to use with --monitor --daemonise
109 - Fix typo in mdadm man page
110 - Fix coredump when "-s" used with no config file present.
111 - Support new "faulty" personality which can inject synthetic
112 faults. (Not in kernel.org yet at 1Nov2004)
113 - Support raid0/linear on devices > 2 Terabytes
114 - Make sure raid6 resyncs when created with one missing device
115
116 Changes Prior to 1.7.0 release
117 - Support "--grow --add" to add a device to a linear array, if the
118 kernel supports it. Not documented yet.
119 - Restore support for uclibc which was broken recently.
120 - Several improvements to the output of --detail, including
121 reporting "resyncing" or "recovering" in the state.
122 - Close filedescriptor at end of --detail (exit would have closed it
123 anyway, so this isn't abig deal).
124 - Report "Sync checkpoint" in --examine output if appropriate.
125 - Add --update=resync for --assemble mode to for a resync when the
126 array is assembled.
127 - Add support for "raid10", which is under development in 2.6.
128 Not documented yet.
129 - --monitor now reads spare-group and spares info from config file
130 even when names of arrays to scan are given on the command line
131
132 Changes Prior to 1.6.0 release
133 - Device name given in -Eb is determined by examining /dev rather
134 than assuming /dev/md%d
135 - Fix bug in --monitor where an array could be held open an so
136 could not be stopped without killing mdadm.
137 - Add --grow mode. Currently only --size and --raid-disks can be
138 changed. Both require kernel support which, at the time of
139 writing, is not in a release kernel yet.
140 - Don't print out "errors" or "no-errors" in -D and -E, as the bit
141 is never set or used.
142 - Use md event notification in 2.6.??? to make --monitor mode
143 respond instantly to events.
144 - Add --auto= option and auto= configfile entry to tell mdadm to
145 create device files as needed. This is particularly useful
146 with partitioned arrays where the major device number can change.
147 - When generating --brief listing, if the standard name doesn't
148 exist, search /dev for one rather than using a temp name.
149 - Allow --build to build raid1 and multipath arrays.
150 - Add "--assume-clean" for Create and Build, particularly for raid1
151 Note: this is dangerous. Only use it if you are certain.
152 - Fix bug so that Rebuild status monitoring works again.
153 - Add "degraded" and "recovering" options to the "Status:"
154 entry for --detail
155
156 Changes Prior to 1.5.0 release
157 - new commands "mdassemble" which is a stripped-down equivalent of
158 "mdadm -As", that can be compiled with dietlibc.
159 Thanks to Luca Berra <bluca@comedia.it>.
160 It can be using in an initramfs or initrd.
161 - Fix compiling error with BLKGETSIZE64 and some signed/unsigned
162 comparison warnings.
163 - Add Rebuild Status (% complete) to --detail output.
164 - Support "--monitor --test" which will generate a test alert
165 for each array once, to test notification paths.
166 - Generate RebuildFinished event when rebuild finishes.
167 - Support for raid6 as found in 2.6.2 - thanks to
168 H. Peter Anvin <hpa@zytor.com>
169 - Support partitioned md arrays with a different major number and
170 naming scheme (md_dX in /proc/mdstat, /dev/md/dXpY in /dev).
171
172 Changes Prior to 1.4.0 release
173 - Document fact that creating a raid5 array really creates a
174 degraded array with a spare.
175 - Add "spares=" tag to config file and generate it wit --detail and
176 --examine
177 - Add "SparesMissing" event when --monitor first sees an array and
178 it doesn't have the enough spare devices.
179 - Add --update=summaries for --assemble to update summary
180 information in superblock, and correct other inconsistancies in
181 the superblock.
182 - Add --test option to --detail to set a meaningful exit status.
183
184 Changes Prior to 1.3.0 release
185 - Make 'size' and unsigned long in Create to allow creation of
186 larger arrays.
187 - Explicitly flag spare devices as 'spare' in --detail and --examine
188 output. Previously they simply had no flags lists.
189 - Make MailCmd (for monitor) configurable in Makefile, and default
190 to "/usr/sbin/sendmail -t". Also split out the warning related
191 flags into CWFLAGS for easier build configurability.
192 - Minor bugfix in Manage code.
193 - --monitor now notices and reports degraded arrays at startup using
194 "DegradedArray" event, and also has a --oneshot option to only
195 report DegradedArrays, and then exit.
196 - Small man-page clarification w.r.t. raid levels and raid4 in
197 particular.
198 - Disallow creation of arrays with only one device as this is
199 probably a mistake. --force will override this check.
200 - Correct some misleading documentation in the "mdadm --create --help"
201 message.
202 - Ignore chunksize if raid1 or multipath.
203 - Explicit statement in man page that raid-disks cannot be changed
204 after array is created.
205 - Improve message when attempting to start an array with
206 insufficient devices. Instead of required the array to be full,
207 we only require it has as many active devices as last time.
208
209 Changes Prior to 1.2.0 release
210 - Fix bug where --daemonise required an argument.
211 - In --assemble --verbose, print appropriate message if device is
212 not in devices= list
213 - Updated mdadm.conf.5 to reflect fact that device= takes wildcards
214 - Typos: componenet -> component
215 - Reduce size of "--help" message put excess into "--help-options"
216 - Fix bug introduced when MD_SB_DISKS dependancy removed, and which
217 caused spares not be assembled properly.
218 - Print appropriate message if --monitor --scan decides not to
219 monitor anything.
220 Changes Prior to 1.1.0 release
221 - add --deamonise flag for --monitor - forks and prints pid to stdout
222 - Fix bug so we REALLY clear dirty flag with -Af
223 - -Db now prints a 'devices=' word for each array.
224 - "mdadm -A /dev/md0" will get info from configfile, even without scan
225 - When assembling multipath arrays, ignore devices which are flagged
226 as having errors.
227 - take --super-minor=dev to mean "use the minor number of the mddev
228 being assembled.
229 - take --config=none to mean "completely ignore config file"
230 - Make --monitor require --scan or a device list.
231 Changes Prior to 1.0.9 release
232 - Documentation updates including kernel parameters documented
233 in md.4
234 - --assemble --force for raid4/5 will mark clean, needed for 2.5
235 - --detail prints out the events counter as well
236 - flush device before reading superblock to be sure to get
237 current data
238 - added mdadm.static target to makefile for static linking
239 - --monitor was ignoring /dev/md0 due to off-by-one error
240 - Fix assorted typos
241 - Fix printing of Gibibytes - calc was wrong.
242 - Fix printing of Array Size in --detail when very big.
243 - --monitor no longer tries to work for raid0 or linear as these
244 have nothing to be monitored.
245 - The word 'partitions' on a DEVICE line will cause all partitions
246 listed in /proc/partitions to be considered
247 - If the config file is called 'partitions' then it will be treated
248 as though it contained exactly 'device partitions' so e.g.
249 mdadm -Ebsc partitions
250 will find all raid partitions easily.
251 - successfully assemble multipath devices by ignoring raid_disk
252 value from superblock (it is always the same).
253 - --assemble not tied to MD_SB_DISKS limit quite so much
254 - Support compiling with tcc
255 - Support compiling with uclibc - just skip scan of /dev
256 - Add --update= option for Assemble mode. Either sparc2.2
257 or super-minor updates are possible. See mdadm.8
258
259 Changes Prior to 1.0.1 release
260 - Round off MB/GiB etc values instead of round down.
261 - Add --sparc2.2 option to examine to shift superblock around
262 and --sparc2.2update to rewrite the superblock
263 - Fix assorted typos in online help
264
265 Changes Prior to 1.0.0 release
266 - Allow --config with Misc mode (for --examine --scan)
267 - Add $(CXFLAGS) to end of CFLAGS in makefile
268 - When making an N disk raid5 array, the Nth drive
269 is moved to the end of the array as a spare rather than
270 being shifted up one place. This means that when the
271 kernel builds onto the last spare and inserts it,
272 the devices will be in the expected order.
273 - Man page improvements
274 Changes Prior to 0.8.2 release
275 - Correct spelling of persist[ae]nce/persist[ae]nt.
276 - Change "disk" to "device" in options and config file
277 - convert array size to "long long" *before* shift-left in -D and -Q
278
279 Changes Prior to 0.8.1 release
280 - Add "INSTALL" file.
281 - Fix some "i" variables that were not being set properly
282 - Initialise minsize and maxsize so that compilers don't complain.
283 - Tidy up Makefile and mdadm.spec installations
284 - Add "multipath" to documentation of valid levels
285
286 Changes Prior to 0.8 release
287 - Fix another bug in Assemble.c due to confusing 'i' with 'j'
288 - Minimal, untested, support for multipath
289 - re-write of argument parsing to have more coherent modes,
290 - add --query,-Q option
291 - Update mdadm.8 to reflect arg processing change and --query
292 - Change "long" to "unsigned long" for device sizes
293 - Handle "mailaddr" and "program" lines in config file for follow/scan mode.
294 - --follow --scan will exit if no program or mail found
295 - Add MAILADDR and PROGRAM to mdadm.conf-example
296 - Spell check man pages
297 - consistently use "component devices" instead of "subdevices"
298 - Make -Wall -Werror really work and fix lots of errors.
299 - --detail and --stop can have --scan which chooses devices from /proc/mdstat
300 - --monitor detects 20% changes in resync, failed spares,
301 disappearing arrays,
302 - --monitor --scan will automatically add any devices found in /proc/mdstat
303 - --monitor will move spares between arrays with same spare-group if necessary
304 - Documentation for Monitor Mode
305 - --query notes if the array containing the given device is active or not
306 - Finished md.4 man page.
307
308 Changes Prior to 0.7.2 release
309 - mdadm.spec updates and ifdef BLKGETSIZE64 from Luca Berra -- bluca@comedia.it
310 - more mdadm.spec updates from Gregory Leblanc <gleblanc@linuxweasel.com>
311 - make directory for mdadm.conf configurable in Makefile
312 - Finished mdadm.conf.5. Removed details of conf file from
313 mdadm.8 leaving a reference to mdadm.conf.5.
314 - Fix bug in Assemble.c, thanks to Junaid Rizvi <domdev@sat.net.pk>
315 - Get --assemble --force to make sure old major/minor numbers are
316 consistant, as md.c worries about this :-(
317
318
319 Changes Prior to 0.7.1 release
320 - update mdadm.spec
321 - use BLKGETSIZE64 if available for array size
322 - give human readable as GiB/MiB and GB and MB, with 2 decimal point precision
323 - Only warn about size variation for raid1/4/5.
324 - Started md.4 man page
325 - Started mdadm.conf.5 man page
326
327 Changes Prior to 0.7 release
328
329 - Fix makefile to install binary at /sbin and not /sbin/sbin
330 Also install man page.
331 - Add --zero-superblock based on --destroywithextremeprejudice
332 from Dale Stephenson <steph@snapserver.com>
333 - change name to mdadm. It is palandromic, and much nicer to pronouce.
334
335 Changes Prior to 0.6 release
336
337 - Remove the limit on the number of device names that can be
338 given on the command line.
339 - Fix bug in --assemble --force where it would only update a
340 single superblock.
341 - Fix bogus printing of big numbers not being block devices
342 when given names of devices that don't exist.
343 - When --assemble --force, consider superblocks with an event
344 count that is 1 behind as out-of-date. Normally they are
345 considered up-to-date (as the kernel assumes this too).
346 - When marking drives as not-failed in the superblock,
347 we also mark them as ACTIVE and SYNC.
348 - Don't start arrays for which not all drives are available unless:
349 --scan which implies that all drives were found automatically
350 --run which means the user knows what they want
351 --force which means that we are fixing something broken
352 - Make sure all device numbers passed as 3rd arg of ioctl
353 are passed as unsigned lock, so that it works on SPARC
354 - If HOT_ADD_DISK failes for -a, then only try ADD_NEW_DISK
355 if we cannot read from the array, i.e. if the array is
356 not started yet.
357 - man page update
358 - Taught Examine to handle --scan. It examines all devices listed
359 on DEVICE lines in the config file.
360 - Added --brief (-b) flag for Examine and Detail to print out
361 and mdctl.conf compatible description with uuid=, level=,
362 disks= and - for Examine - devices=
363 --examine --brief collects all devices the make the one array and
364 list them as one entry.
365 - Added level= and disks= options to ARRAY lines in config files
366 so --brief output could be used as-is.
367 - Make parity style ({left,right}-{,a}symmetric) consistantly use -,
368 never _.
369 - Add "Array Size" to --detail output
370 - Change "Size" to "Device Size" and exclude from Detail of arrays
371 that do not have a consistent device size.
372 - Add Human readable MiB or GiB value on size lines of Detail and Examine
373 - --assemble --scan doesn't complain about active drives
374 - require number of spares given in -x to be listed.
375 - Made --build actually work.
376 Changes Prior to 0.5 release
377
378 --assemble:
379 spare drives are handled properly.
380
381 --force can be used to recover from 2-drive failures on RAID5
382 If you belive that /dev/hda1 /dev/hdb1 /dev/hdc1 /dev/hdd1 should
383 make a raid5 array, but it has experienced multiple failures and
384 wont start, then
385
386 mdctl --assemble --force /dev/md0 /dev/hd[abcd]1
387
388 Should update the superblock on the newest failed drive and
389 restart the array in degraded mode. You should then remove the
390 remaining failed drive and re-add it (if you are happy that it
391 might work).
392
393 Ofcourse whenever you have a 2-drive failure, you have a risk
394 of corruption in data that hasn't be changed for a long time. So
395 this doesn't give you your array back all nice and happy, but it
396 does allow you to recover data that might not be corrupt.
397
398 More flexibility in identifying a RAID array in the mdctl.conf
399 e.g.
400 array /dev/md4 super-minor=4
401
402 assembles /dev/md4 from all devices found that have a raid
403 superblock that says the minor number of the array is 4.
404 If the blocks with the right minor number do not all have the
405 same UUID, an error is flags and no assembly happens.
406
407 array /dev/md3 devices=/dev/hd[abc]2
408
409 Assembles /dev/md3 drom /dev/hda2 /dev/hdb2 and/dev/hdc2. All
410 devices must exist and have raid superblock with the same uuid.
411
412 If two identity specifiers are used, only devices that match all
413 of them are considered, so
414
415 array /dev/md2 devices=/dev/hd?2 super-minor=2
416
417 will assemble /dev/md2 using all /dev/hd?2 devices which have a
418 raid superblock with minor number 2.
419
420 --create:
421 When listing devices for --create, the word "missing" can be
422 used to indicate that the respective slot does not have a
423 working drive currently. This is similar to the "failed-disk"
424 directive in mkraid/raidtab.
425 e.g.
426 mdctl --create --level=5 -raid-disks=4 --spare-disks=2
427 /dev/md0 /dev/sda /dev/sdb missing /dev/sdc /dev/sdd /dev/sde
428
429 will create a raid5 array with the third slot empty, and two
430 spares.
431
432 By default, raid5 arrays are created with the last slot empty
433 and drive listed for the last slot added as a spare. If a
434 "missing" slot is given, or if --force is given, then --create
435 does exactly what you ask and doesn't try to be clever.
436
437
438 --follow / --monitor:
439
440 This is a new mode. I couldn't stop my self from picking a name
441 starting with F (as current modes start A,B,C,D,E) but I
442 relented and provided an alternate name that is somewhat more
443 meaningful.
444
445 In this mode, mdctl does not exit, but runs continuously and
446 periodically polls all the md devices to see if they have had
447 any interested state change.
448 The changes that it currently notices are:
449 Fail - an active disc fails
450 FailSpare - a spare, that was presumably being build, fails
451 ActiveSpare - a spare becomes active, presumably after a rebuild.
452
453 Options:
454 --mail mailaddress - send Email on any Fail* event
455 --program program - run the program on any event.
456 Args are: eventname mddevice subdevice(if-known)
457 --delay seconds - change from the default 60second pause
458 between polls.
459
460 I plan to add functionality to this mode to allow sharing of
461 spare drives. If an array is marks "spare-group=fred", and it
462 has a failed drive and no spares, and if some other array is
463 also "spare-group=fred" and it has no failed drives, but does
464 have a spare drive that is big enough, the spare will be moved
465 to the first array.
466
467 I also have the idea of adding a --grow mode which will re-organise
468 the data on an N disk raid0/4/5 array to be on an N+M disk array.
469 I have no concrete plans for this though.
470
471 I got rid of the "v" in the archive file name, and include the
472 version number in the directory created by the archive.
473
474 There is now a man page and mdctl.spec (for rpm) thanks to
475 Danilo Godec <danci@agenda.si>.
476
477 Ofcourse, the man page is now out of date and despite being based on
478 the --help output, is not wholy correct. After I get --follow
479 working properly, I plan to revise the various documentation and/or
480 the code to make sure the two match.