]> git.ipfire.org Git - thirdparty/mdadm.git/log
thirdparty/mdadm.git
11 years agoMinor cosmetic fixes in various files.
NeilBrown [Sun, 12 Aug 2012 22:00:21 +0000 (08:00 +1000)] 
Minor cosmetic fixes in various files.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agotests/03r5assemV1: reduce sync speed further.
NeilBrown [Sun, 12 Aug 2012 22:00:21 +0000 (08:00 +1000)] 
tests/03r5assemV1: reduce sync speed further.

This test is quite sensitive to resync speed - if the resync happens
to quickly it fails because it sees aan optimal array when it expects
a degraded array.
1000 is often slow enough but now always, so slow it down even more.
This requires reducing speed_limit_min also as kernel ignores 'max'
when speed is below 'min'.

Reported-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage_subdevs: factor out Manage_delete
NeilBrown [Sun, 12 Aug 2012 22:00:21 +0000 (08:00 +1000)] 
Manage_subdevs: factor out Manage_delete

Now Manage_subdevs is now small enough to be manageable.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage_subdevs: split most of 'add' handling into Manage_add.
NeilBrown [Sun, 12 Aug 2012 22:00:21 +0000 (08:00 +1000)] 
Manage_subdevs: split most of 'add' handling into Manage_add.

This makes Manage_subdevs smaller, and makes the error-path handling
for Manage_add much cleaner and probably less buggy.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage: split out attempt_re_add.
NeilBrown [Sun, 12 Aug 2012 22:00:21 +0000 (08:00 +1000)] 
Manage: split out attempt_re_add.

The indent level is way too deep here, and this is a well defined
task, so split it out to a separate function.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage_subdev: give 'st' a better name and narrower focus.
NeilBrown [Sun, 12 Aug 2012 22:00:20 +0000 (08:00 +1000)] 
Manage_subdev: give 'st' a better name and narrower focus.

'st' is use to examine the metadata on the device being added
to see if a 're-add' is possible.  However it is loaded long before
the 're-add' attempt is made.

So move the 'load_super' closer to were it is used - allowing us to
discard a number of 'free_super' call - and rename it to 'dev_st'
to emphasize that it related to the current device.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage: minor cosmetic fixes.
NeilBrown [Sun, 12 Aug 2012 22:00:20 +0000 (08:00 +1000)] 
Manage: minor cosmetic fixes.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoFix default size calculations that were recently broken.
NeilBrown [Sun, 12 Aug 2012 22:00:18 +0000 (08:00 +1000)] 
Fix default size calculations that were recently broken.

commit d04f65f48c93e7e57cc3c1d70dd07d094dece717
    Change the values for "max size" from -1 to 1.

Messed up 's->size' - leaving it as '1' (MAX_SIZE) in some cases and
causing the array reshape to fail.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoRepair mode for raid6
Robert Buchholz [Mon, 9 Jul 2012 07:22:45 +0000 (17:22 +1000)] 
Repair mode for raid6

In repair mode, raid6check will rewrite one single stripe
by regenerating the data (or parity) of two raid devices that
are specified via the command line.
If you need to rewrite just one slot, pick any other slot
at random.

Note that the repair option will change data on the disks
directly, so both the md layer above as well as any layers
above md (such as filesystems) may be accessing the stripe
data from cached buffers. Either instruct the kernels
to drop the caches or reassemble the raid after repair.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMake test a bash script (as it is)
Robert Buchholz [Mon, 9 Jul 2012 07:22:43 +0000 (17:22 +1000)] 
Make test a bash script (as it is)

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoExtract function to generate zeroes and expose xor function
Robert Buchholz [Mon, 9 Jul 2012 07:22:38 +0000 (17:22 +1000)] 
Extract function to generate zeroes and expose xor function

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoManage: simplify device searches in Manage_subdevs
NeilBrown [Mon, 9 Jul 2012 07:22:16 +0000 (17:22 +1000)] 
Manage: simplify device searches in Manage_subdevs

We currently have rather hard-to-follow loop to iterate
through all the matches for 'missing' or 'faulty' or 'detached'.

Simplify it by creating a list of possible devices for each
of those and splicing the new list into the device list.

This removes the need for 'jnext' and 'next' and various other hacks.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUse new struct context and struct shape for Grow_addbitmap
NeilBrown [Mon, 9 Jul 2012 07:22:12 +0000 (17:22 +1000)] 
Use new struct context and struct shape for Grow_addbitmap

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUse new struct context and struct shape in Grow_reshape
NeilBrown [Mon, 9 Jul 2012 07:22:09 +0000 (17:22 +1000)] 
Use new struct context and struct shape in Grow_reshape

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUse new 'struct shape' to pass args to Create
NeilBrown [Mon, 9 Jul 2012 07:22:05 +0000 (17:22 +1000)] 
Use new 'struct shape' to pass args to Create

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUse new 'struct shape' to pass args to Build
NeilBrown [Mon, 9 Jul 2012 07:21:57 +0000 (17:21 +1000)] 
Use new 'struct shape' to pass args to Build

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoFix --build on 2.2 kernels :-)
NeilBrown [Mon, 9 Jul 2012 07:21:50 +0000 (17:21 +1000)] 
Fix --build on 2.2 kernels :-)

This code has clearly never been used because it isn't right.
But let's fix it anyway.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate new 'struct shape' to pass around array details.
NeilBrown [Mon, 9 Jul 2012 07:21:38 +0000 (17:21 +1000)] 
Create new 'struct shape' to pass around array details.

This collects to together many of the args given to
create/build/grow

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate: Remove unnecessary cast from 'size'.
NeilBrown [Mon, 9 Jul 2012 07:21:27 +0000 (17:21 +1000)] 
Create: Remove unnecessary cast from 'size'.

'size' is already unsigned long long, so no need to cast it.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agochange array_size to be unsigned and use the new MAX_SIZE
NeilBrown [Mon, 9 Jul 2012 07:21:06 +0000 (17:21 +1000)] 
change array_size to be unsigned and use the new MAX_SIZE

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange the values for "max size" from -1 to 1.
NeilBrown [Mon, 9 Jul 2012 07:20:32 +0000 (17:20 +1000)] 
Change the values for "max size" from -1 to 1.

Both are impossible, and '1' allows size to be unsigned,
which is neater.
Also #define MAX_SIZE to be '1' to make it all more explicit.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAssemble: don't leak memory with fdlist.
NeilBrown [Mon, 9 Jul 2012 07:20:25 +0000 (17:20 +1000)] 
Assemble: don't leak memory with fdlist.

We should free fdlist when finished with it.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange Incremental and related functions to take struct context
NeilBrown [Mon, 9 Jul 2012 07:20:22 +0000 (17:20 +1000)] 
Change Incremental and related functions to take struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange Monitor to take a struct context
NeilBrown [Mon, 9 Jul 2012 07:20:19 +0000 (17:20 +1000)] 
Change Monitor to take a struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange Detail and misc_scan to take a struct context
NeilBrown [Mon, 9 Jul 2012 07:20:16 +0000 (17:20 +1000)] 
Change Detail and misc_scan to take a struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange name of 'c' variable in Detail
NeilBrown [Mon, 9 Jul 2012 07:20:05 +0000 (17:20 +1000)] 
Change name of 'c' variable in Detail

I want to use 'c' uniformly as a 'struct context', so
in Detail change 'c' to 'str'.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agochange Examine to take a struct context
NeilBrown [Mon, 9 Jul 2012 07:20:00 +0000 (17:20 +1000)] 
change Examine to take a struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoExamine: split 'verbose' out from 'brief'.
NeilBrown [Mon, 9 Jul 2012 07:19:48 +0000 (17:19 +1000)] 
Examine: split 'verbose' out from 'brief'.

The value of 'verbose' is sometimes mixed into 'brief', particularly
for Examine.
This is messy and confusing.  So keep them separate.
'brief' still gets assumed when 'scan' is set, unless we are very
verbose.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange Create to take a struct context
NeilBrown [Mon, 9 Jul 2012 07:19:24 +0000 (17:19 +1000)] 
Change Create to take a struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange Build to take a struct context
NeilBrown [Mon, 9 Jul 2012 07:19:21 +0000 (17:19 +1000)] 
Change Build to take a struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoChange misc_list to take struct context
NeilBrown [Mon, 9 Jul 2012 07:19:17 +0000 (17:19 +1000)] 
Change misc_list to take struct context

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoConvert Assemble() to take a context rather than a list of options.
NeilBrown [Mon, 9 Jul 2012 07:19:07 +0000 (17:19 +1000)] 
Convert Assemble() to take a context rather than a list of options.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoDiscard 'quiet' context variable.
NeilBrown [Mon, 9 Jul 2012 07:18:48 +0000 (17:18 +1000)] 
Discard 'quiet' context variable.

Just use negative verbose, now that we are ready for that.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoConvert 'quiet' to 'not verbose' in various places.
NeilBrown [Mon, 9 Jul 2012 07:18:09 +0000 (17:18 +1000)] 
Convert 'quiet' to 'not verbose' in various places.

If we change some functions to accept 'verbose', where <0 means to be
quiet, in place of 'quiet', then we will be able to merge
'quiet' and 'verbose' together for simplicity.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate 'struct context' for ad hoc context option.
NeilBrown [Mon, 9 Jul 2012 07:17:33 +0000 (17:17 +1000)] 
Create 'struct context' for ad hoc context option.

Rather than passing a long list of little flags etc to various
functions we will soon pass a small collection of structures.

This first step combines a collection of variables local to
'main' into a single structure.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate parse_num() function.
NeilBrown [Mon, 9 Jul 2012 07:14:17 +0000 (17:14 +1000)] 
Create parse_num() function.

Instead of open-coding this several times, just do it once.

The frees up the name 'c' which I'm about to use.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate: support --readonly flag.
NeilBrown [Mon, 9 Jul 2012 07:14:17 +0000 (17:14 +1000)] 
Create: support --readonly flag.

Allow array to be created read-only

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAssemble: allow arrays to be assembled read-only.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
Assemble: allow arrays to be assembled read-only.

The option was there, but never used.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoRemove scattered checks for malloc success.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
Remove scattered checks for malloc success.

malloc should never fail, and if it does it is unlikely
that anything else useful can be done.  Best approach is to
abort and let some super-daemon restart.

So define xmalloc, xcalloc, xrealloc, xstrdup which don't
fail but just print a message and exit.  Then use those
removing all the tests for failure.

Also replace all "malloc;memset" sequences with 'xcalloc'.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoRemove re_add flag in favour of new disposition.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
Remove re_add flag in favour of new disposition.

Instead of
   disposition == 'a'  re_add == 1
use
   disposition == 'A'

to record that a re-add was requested.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoIntroduce pr_err for printing error messages.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
Introduce pr_err for printing error messages.

'pr_err("' is a lot shorter than 'fprintf(stderr, Name ": '
cont_err() is also available.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoHelp: use an array to choose which help matches which mode.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
Help: use an array to choose which help matches which mode.

Looks cleaner than a big switch statement.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomain: extract more functions.
NeilBrown [Mon, 9 Jul 2012 07:14:16 +0000 (17:14 +1000)] 
main: extract more functions.

extract misc_scan stop_scan misc_list from main to try to
make main() a little more manageable.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomain: split scan_assemble into a separate function
NeilBrown [Mon, 9 Jul 2012 07:14:10 +0000 (17:14 +1000)] 
main: split scan_assemble into a separate function

main is too big.  This makes it a little more manageable.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomdadm.c: various minor clean-ups
NeilBrown [Mon, 9 Jul 2012 07:00:50 +0000 (17:00 +1000)] 
mdadm.c: various minor clean-ups

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUse explicit non-char opt for --zero-super
NeilBrown [Mon, 9 Jul 2012 07:00:45 +0000 (17:00 +1000)] 
Use explicit non-char opt for --zero-super

As we don't allow '-K' for '--zero-super' there is no point
using it internally.  Just define a 'KillOpt' like with
other options.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoReadMe: various updates and corrections.
NeilBrown [Mon, 9 Jul 2012 07:00:24 +0000 (17:00 +1000)] 
ReadMe: various updates and corrections.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomdmon: fix arg parsing.
NeilBrown [Mon, 9 Jul 2012 06:50:22 +0000 (16:50 +1000)] 
mdmon: fix arg parsing.

-t aka --takeover should not be setting container_name.
It sets it to NULL which causes failure when you try
  mdmon --all --takeover

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMonitor: fix reporting for Fail vs FailSpare etc.
NeilBrown [Mon, 4 Jun 2012 02:57:52 +0000 (12:57 +1000)] 
Monitor: fix reporting for Fail vs FailSpare etc.

The tests here were specific to 0.90 metadata and didn't
work properly for 1.x metadata, where a device's "number"
doesn't change.

By checking if this is a new array we can avoid some
corner cases.  Then we test mostly based on state and
not based on 'number' at all.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMonitor: Report NewArray when an array the disappeared, reappears.
NeilBrown [Mon, 4 Jun 2012 02:52:36 +0000 (12:52 +1000)] 
Monitor: Report NewArray when an array the disappeared, reappears.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMonitor: fix inconsistencies in values for ->percent
NeilBrown [Mon, 4 Jun 2012 02:31:40 +0000 (12:31 +1000)] 
Monitor: fix inconsistencies in values for ->percent

->percent sometimes stores negative values recording states
like 'pending' or 'delayed'.
The value '-2' means both 'delayed' and in Monitor, 'unknown'.
Also, '-1' has a meaning but not #define.

So change the #defines to be prefixed with "RESYNC_", instead
of "PROCESS_", add new "_NONE" and "_UNKNOWN", and use correct
value in each location.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMonitor: Allow correct monitoring of more member devices.
NeilBrown [Sun, 3 Jun 2012 23:30:56 +0000 (09:30 +1000)] 
Monitor: Allow correct monitoring of more member devices.

Having "MaxDisks == 384" is not good.  Discard it in favour of
MAX_DISKS which is 4096

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoDetail: show which 'set' each device in a RAID10 belongs to
NeilBrown [Wed, 30 May 2012 03:08:39 +0000 (13:08 +1000)] 
Detail: show which 'set' each device in a RAID10 belongs to

A RAID10 can be though of as having 2 sets of devices
(if there are 2 copies and an even number of devices in total).

With this patch "mdadm --detail" shows which 'set' each device
belongs to - set-A or set-B.

If there are more than 3 copies, there can be more than 3 sets.

If the number of copies does not evenly divide the number of devices,
there are not distinct 'sets' so none are reported.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoNew tests testing removal of internal bitmaps
Jes Sorensen [Wed, 30 May 2012 00:46:25 +0000 (10:46 +1000)] 
New tests testing removal of internal bitmaps

To match the add-bitmap tests, here is a set of tests checking the
removal of bitmaps.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoNew tests testing the addition of bitmaps
Jes Sorensen [Wed, 30 May 2012 00:45:27 +0000 (10:45 +1000)] 
New tests testing the addition of bitmaps

This set of tests verifies that it is possible to add an internal
bitmap to an existing array, and that the device can be written to
after the bitmap is added. This should catch cases such as the one
fixed by 4474ca42e2577563a919fd3ed782e2ec55bf11a2

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoFix --no-error in test script
Jes Sorensen [Tue, 29 May 2012 13:17:54 +0000 (15:17 +0200)] 
Fix --no-error in test script

b8e91a32cdaa2a6dea8b0dd54365ede33d5a9a60 was applied incorrectly.
It changed the name of the variable set when specifying --no-error,
without changing the places checking it.

Set it back as it was to make --no-error work correctly again.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoimsm: fix: correct checking volume's degradation
Lukasz Dorau [Fri, 25 May 2012 13:06:41 +0000 (15:06 +0200)] 
imsm: fix: correct checking volume's degradation

We do not check the return value of sysfs_get_ll() now. It is wrong.
If reading of the sysfs "degraded" key does not succeed,
the "new_degraded" variable will not be initiated
and accidentally it can have the value of "degraded" variable.
In that case the change of degradation will not be checked.

It happens if mdadm is compiled with gcc's "-fstack-protector" option
when one tries to stop a volume under reshape (e.g. OLCE).
Reshape seems to be finished then (metadata is in normal/clean state)
but it is not finished, it is broken and data are corrupted.

Now we always check the return value of sysfs_get_ll().
Even if reading of the sysfs "degraded" key does not succeed
(rv == -1) the change of degradation will be checked.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomdadm: Fix Segmentation fault.
majianpeng [Mon, 28 May 2012 23:21:51 +0000 (09:21 +1000)] 
mdadm: Fix Segmentation fault.

In function write_init_super1():
If "rv = store_super1(st, di->fd)" return error and the di is the last.
Then the di = NULL && rv > 0, so exec:
if (rv)
    fprintf(stderr, Name ": Failed to write metadata to%s\n",
       di->devname);
will be segmentation fault.

Signed-off-by: majianpeng <majianpeng@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoMove setup code to a function and introduce matching cleanup argument
Jes Sorensen [Mon, 28 May 2012 00:52:27 +0000 (10:52 +1000)] 
Move setup code to a function and introduce matching cleanup argument

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoImprove --help message from test
Jes Sorensen [Mon, 28 May 2012 00:51:57 +0000 (10:51 +1000)] 
Improve --help message from test

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAdd --no-error argument to 'test'
Jes Sorensen [Mon, 28 May 2012 00:51:43 +0000 (10:51 +1000)] 
Add --no-error argument to 'test'

This allows the test suite to run to completion even if one test
fails.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAdd support for saving log files in test script
Jes Sorensen [Mon, 28 May 2012 00:50:38 +0000 (10:50 +1000)] 
Add support for saving log files in test script

--logdir= specifies where to save, if different from default, and
--save-logs tells test to save all log files.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoIncrease minimum chunk size in testsuite to 64kB
Anton Blanchard [Thu, 24 May 2012 05:10:47 +0000 (15:10 +1000)] 
Increase minimum chunk size in testsuite to 64kB

When running the mdadm testsuite on ppc64 with a 64kB page size I
see a couple of failures because the chunk size is smaller than a
page.

Bump the chunksize to 64kB to fix these failures.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoudev-rules: prevent systemd from mount devices before they are ready.
NeilBrown [Thu, 24 May 2012 01:49:49 +0000 (11:49 +1000)] 
udev-rules: prevent systemd from mount devices before they are ready.

When an array is assembled incrementally, systemd might see it
before it is ready, try to mount it, fail, and give up.
Result is that array doesn't get mounted.

If we ask udev to tell systemd that it isn't ready yet in this
case, systemd waits until it is ready, and all are happy.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAdd command line argument parsing to 'test' sript
Jes Sorensen [Wed, 23 May 2012 03:36:52 +0000 (13:36 +1000)] 
Add command line argument parsing to 'test' sript

This adds more generic command line argument parsing to the test
script. It also introduces a couple of new options, while preserving
the old '<prefix>' and 'setup' arguments. The new options are
--disable-multipath and --tests=<test1>,<test2>,...

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCheck for multipath module before running multipath tests
Jes Sorensen [Tue, 22 May 2012 16:55:29 +0000 (18:55 +0200)] 
Check for multipath module before running multipath tests

Some systems do not ship the md multipath module. If not available
simply skip any multipath tests.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate new release: 3.2.5 mdadm-3.2.5
NeilBrown [Fri, 18 May 2012 06:21:41 +0000 (16:21 +1000)] 
Create new release: 3.2.5

Fix a serious regression in 3.2.4 which caused "--add" to often
fail.  Other minor fixes included.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUpdate some device sizes for self tests.
NeilBrown [Fri, 18 May 2012 07:08:28 +0000 (17:08 +1000)] 
Update some device sizes for self tests.

A recent change means that devices smaller than
1Gig no longer have 1Meg wasted at the start.
So we must adjust some sizes again.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoimsm: fix: check if size of expansion is not larger than maximum
Lukasz Dorau [Thu, 17 May 2012 14:14:00 +0000 (16:14 +0200)] 
imsm: fix: check if size of expansion is not larger than maximum

We do not check if requested size of expansion is larger than maximum
available size now. If it is larger the output message is a bit misleading,
for example:
   mdadm: Cannot set size on array members.
   mdadm: Cannot set device size for /dev/md/vol: Device or resource busy
Now we check if requested size of expansion is larger than maximum
available size and the appropriate output message was added.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoimsm: fix a typo in fprintf message
Lukasz Dorau [Thu, 17 May 2012 13:37:24 +0000 (15:37 +0200)] 
imsm: fix a typo in fprintf message

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agomdadm.conf.5: typo: of -> or
NeilBrown [Fri, 18 May 2012 02:29:29 +0000 (12:29 +1000)] 
mdadm.conf.5: typo: of -> or

Addresses-Debian-bug: 673344
Reported-by: Robert Henney <robh@rut.org>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoRebuildMap: check that container_content returns a valid 'info'.
NeilBrown [Thu, 17 May 2012 05:46:09 +0000 (15:46 +1000)] 
RebuildMap: check that container_content returns a valid 'info'.

If it doesn't, just skip that entry.

Reported-by: Maciej Naruszewicz <maciej.naruszewicz@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoDon't consider disks with a valid recovery offset as candidates for bumping up event...
Alexander Lyakas [Sun, 13 May 2012 07:10:43 +0000 (10:10 +0300)] 
Don't consider disks with a valid recovery offset as candidates for bumping up event count

When we are looking for a candidate disk to bump up the event count,
we consider only disks that have recovery_start==MaxSector.
However, after we find one such disk, we agree to accept more disks
having same event count, regardless of their recovery_start.
Be consistent and don't accept disks with a valid recovery_start at all.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoGrow: don't print message if unfreezing fails.
NeilBrown [Tue, 15 May 2012 02:12:58 +0000 (12:12 +1000)] 
Grow: don't print message if unfreezing fails.

This is most likely to happen if the array has been stopped,
in which case the error is pointless.

Reported-by: Patrik Horník <patrik@dsl.sk>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoGrow: fix --layout=preserve to match man page.
NeilBrown [Tue, 15 May 2012 01:59:40 +0000 (11:59 +1000)] 
Grow: fix --layout=preserve to match man page.

I think there was some confusion about what --layout=preserve
actually means, but in any case it wasn't doing what the man
page says it should.
So add some case analysis and make sure it does the right thing,
or complains if it cannot.

Reported-by: Patrik Horník <patrik@dsl.sk>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agosuper1: fix choice of data_offset.
NeilBrown [Mon, 14 May 2012 23:51:03 +0000 (09:51 +1000)] 
super1: fix choice of data_offset.

While it is nice to set a high data_offset to leave plenty of head
room it is much more important to leave enough space to allow
of the data of the array.
So after we check that sb->size is still available, only reduce the
'reserved', don't increase it.

This fixes a bug where --adding a spare fails because it does not have
enough space in it.

Reported-by: nowhere <nowhere@hakkenden.ath.cx>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoNew sha1.c and sha1.h
NeilBrown [Mon, 14 May 2012 10:09:47 +0000 (20:09 +1000)] 
New sha1.c and sha1.h

These are from:
  http://gcc.gnu.org/svn/gcc/branches/cilkplus/include/sha1.h
and
  http://gcc.gnu.org/svn/gcc/branches/cilkplus/libiberty/sha1.c

and hopefully avoid aliasing issues.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoCreate new release: 3.2.4 mdadm-3.2.4
NeilBrown [Tue, 8 May 2012 23:42:57 +0000 (09:42 +1000)] 
Create new release: 3.2.4

Bugfix release

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agosuper-intel.c: Fix resource leak from opendir()
Jes Sorensen [Fri, 4 May 2012 11:41:22 +0000 (13:41 +0200)] 
super-intel.c: Fix resource leak from opendir()

Use closedir() on dirp from opendir() to avoid resource leaking.

Acked-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agosuper-intel.c: Don't try to close negative fd
Jes Sorensen [Fri, 4 May 2012 11:41:21 +0000 (13:41 +0200)] 
super-intel.c: Don't try to close negative fd

This should be harmless, but lets be consistent and not try to close a
negative file descripter.

Acked-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoGrow: failing the set the per-device size is not an error.
NeilBrown [Thu, 3 May 2012 06:18:22 +0000 (16:18 +1000)] 
Grow: failing the set the per-device size is not an error.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agotest: don't worry too much about array size.
NeilBrown [Thu, 3 May 2012 05:29:04 +0000 (15:29 +1000)] 
test: don't worry too much about array size.

With different amounts of space being reserved for metadata
it is hard for the script to know how big the array should be.
So allow a bit of slack.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoAdjust to new standard of /run
NeilBrown [Thu, 3 May 2012 04:16:56 +0000 (14:16 +1000)] 
Adjust to new standard of /run

Now that /run seems to be a good standard, make that
the default for storing various run-time files, rather than
/var/run or /dev/.mdadm.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoUpdate test for "is udev active".
NeilBrown [Thu, 3 May 2012 04:16:51 +0000 (14:16 +1000)] 
Update test for "is udev active".

Newer udev doesn't use /dev/.udev any more. it used
/run/udev instead.
So test for that as well.

Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoimsm: fix: thunderdome may drop 2tb attribute
Czarnowska, Anna [Mon, 2 Apr 2012 20:59:03 +0000 (20:59 +0000)] 
imsm: fix: thunderdome may drop 2tb attribute

Spare superblock doesn't depend on other spares in container.
When loading container metadata thunderdome
may pick a small disk for the champion. This will result in incorrect
interpretation of sizes of other disks in container when joint superblock
is returned. If any disk in container has the 2TB attribute set, the result
must have it set too.

Signed-off-by: Anna Czarnowska <anna.czarnowska@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoIntroduce sysfs_set_num_signed() and use it to set bitmap/offset
Jes Sorensen [Thu, 26 Apr 2012 15:12:57 +0000 (17:12 +0200)] 
Introduce sysfs_set_num_signed() and use it to set bitmap/offset

mdinfo->bitmap_offset is a signed long and needs to be treated as
such when passed to the kernel.

This resolves the problem with adding internal bitmaps to a 1.0 array.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
11 years agoFix sign extension of bitmap_offset in super1.c
Jes Sorensen [Thu, 26 Apr 2012 15:12:56 +0000 (17:12 +0200)] 
Fix sign extension of bitmap_offset in super1.c

fbdef49811c9e2b54e2064d9af68cfffa77c6e77 incorrectly tried to fix sign
extension of the bitmap offset. However mdinfo->bitmap_offset is a u32
and needs to be converted to a 32 bit signed integer before the sign
extension.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agofix: correct extending size of raid0 array
Lukasz Dorau [Fri, 20 Apr 2012 09:00:25 +0000 (11:00 +0200)] 
fix: correct extending size of raid0 array

Setting "sync_action" to "idle" while extending size of raid0 array
is racy and sometimes fails.
"sync_action" should be set to "frozen" instead.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoimsm: fix: rebuild does not continue after reboot
Lukasz Dorau [Fri, 20 Apr 2012 11:45:02 +0000 (13:45 +0200)] 
imsm: fix: rebuild does not continue after reboot

If system is rebooted during rebuild, md driver changes sync_action
from 'recover' to 'idle' (during stopping all md devices).
If mdmon is still running then, it detects the change of sync_action state,
finishes rebuild and writes metadata to disks. After computer's restart
the RAID volume is in Normal state in OROM and rebuild seems to be finished.
After system's start-up RAID volume is in auto-read-only state
and metadata is in Dirty state. Rebuild seems to be finished but it is not.
Data is inconsistent (out-of-sync).

When mdmon detects the change of sync_action from 'recover' to 'idle',
it has to check if rebuild is really finished. Appropriate test was added.
Now mdmon examines each volume's member if it is being rebuilt.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoRelax restrictions on when --add is permitted.
NeilBrown [Wed, 18 Apr 2012 04:19:49 +0000 (14:19 +1000)] 
Relax restrictions on when --add is permitted.

The restriction that --add was not allowed on a device which
looked like a recent member of an array was overly harsh.

The real requirement was to avoid using --add when the array had
failed, and the device being added might contain necessary
information which can only be incorporated by stopping and
re-assembling with --force.

So change the test to reflect the need.

Reported-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoAdd --prefer option for --detail and --monitor
NeilBrown [Wed, 18 Apr 2012 01:00:07 +0000 (11:00 +1000)] 
Add --prefer option for --detail and --monitor

Both --detail and --monitor can report the names of member
devices on an array, and do so by searching /dev and finding
the shortest name that matches.

If
   --prefer=foo
is given, they will instead prefer a name that contain /foo/.
So
   mdadm --detail /dev/md0 --prefer=by-path

will list the component devices via their /dev/disk/by-path/xxx
names.

Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoRaid limit of 1024 when scanning for devices.
NeilBrown [Tue, 17 Apr 2012 23:06:02 +0000 (09:06 +1000)] 
Raid limit of 1024 when scanning for devices.

When we can for devices using GET_DISK_INFO we currently
limit to 1024.  But some arrays can have more than this.
So raise it to 4096 and make the constant a #define.

Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoFIX: resolve make everything compilation error
Lukasz Dorau [Mon, 16 Apr 2012 14:12:55 +0000 (16:12 +0200)] 
FIX: resolve make everything compilation error

When mdadm is compiled using e.g. 'everything' option, mdassemble
compilation is broken.

Change code to enable mdassemble compilation.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoFIX: Assembled second array is in read only state during reshape
Adam Kwolek [Fri, 13 Apr 2012 14:52:08 +0000 (16:52 +0200)] 
FIX: Assembled second array is in read only state during reshape

When arrays using external metadata are assembled, and one of array
in container is under reshape, second array will remain in read only
state (not auto read only). It is caused by array fact that array
is frozen and mdmon doesn't has opportunity to switch array in r/w mode.

Freezing not reshaped array just after it is being assembled allows mdmon
to enable it for writing.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoFIX: Size change is possible as standalone change only
Adam Kwolek [Fri, 13 Apr 2012 14:52:07 +0000 (16:52 +0200)] 
FIX: Size change is possible as standalone change only

Size change is possible as standalone change only. To make sure size change
is not requested pass '-1' as size parameter.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoimsm: FIX: Component size alignment check
Adam Kwolek [Fri, 13 Apr 2012 14:52:06 +0000 (16:52 +0200)] 
imsm: FIX: Component size alignment check

Put currently existing code for alignment correction in to function
imsm_component_size_aligment_check() and use it for align component size
to chunk size during volume size expansion operation.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoimsm: Support setting max size for size change operation
Adam Kwolek [Fri, 13 Apr 2012 14:52:05 +0000 (16:52 +0200)] 
imsm: Support setting max size for size change operation

Add support for setting max size for size change operation using
imsm_get_free_size() function for computing maximum available space.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoimsm: Add function imsm_get_free_size()
Adam Kwolek [Fri, 13 Apr 2012 14:52:04 +0000 (16:52 +0200)] 
imsm: Add function imsm_get_free_size()

Add function imsm_imsm_get_free_size() using part of code from function
reserve_space().

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoFIX: Detect error and rollback metadata
Adam Kwolek [Fri, 13 Apr 2012 14:52:03 +0000 (16:52 +0200)] 
FIX: Detect error and rollback metadata

Some setting size error cases were not detected.
When error occurs, stop setting new size action and rollback metadata
changes.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
12 years agoFIX: Respect metadata size limitations
Adam Kwolek [Fri, 13 Apr 2012 14:52:02 +0000 (16:52 +0200)] 
FIX: Respect metadata size limitations

When reshape_super() updates metadata with new size, due to some metadata
limitations saved value can be different than requested value by user.
Update size (read it from metadata) for setting it in md.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>