]> git.ipfire.org Git - thirdparty/mdadm.git/log
thirdparty/mdadm.git
13 years agoAdd raid1->raid0 takeover support
Krzysztof Wojcik [Wed, 26 Jan 2011 21:42:41 +0000 (08:42 +1100)] 
Add raid1->raid0 takeover support

Add support for raid1 to raid0 takeover operation in user space.
This patch includes support for native and imsm metadata.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoWORKAROUND: mdadm hangs during reshape
Adam Kwolek [Wed, 26 Jan 2011 20:56:21 +0000 (07:56 +1100)] 
WORKAROUND: mdadm hangs during reshape

During reshape when reshape is finished in md, progress_reshape() hangs
on select().
This is because 'sync_completed' is reset to zero before 'sync_action'
becomes 'idle', and we don't look for notification on 'sync_action'.

So if completed becomes zero after reshape_progress has made some
progress, then deduce that reshape has finished.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: monitor doesn't handshake with md
Adam Kwolek [Wed, 26 Jan 2011 20:31:25 +0000 (07:31 +1100)] 
FIX: monitor doesn't handshake with md

when in container are present raid0 and raid5 arrays, and reshape order is:
1. raid0 array
2. raid5 array

mdadm cannot set new raid_disks for raid0 array. For this action md has to have
handshake with mdmon. We have the following conditions:
1. Raid0 is not monitored
2. raid0 has been just takeovered to raid4/5 (it has to be monitored
3. monitor has to start monitor new raid4/5 array
4. monitor is not started (it is started to second raid5 array)
In such situation pig_monitor is required to let know to m monitor about new array
(not in the starting monitor case only)

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: support for Intel SAS controller in get_disk_controller_domain handler
Labun Marcin [Tue, 25 Jan 2011 06:44:12 +0000 (17:44 +1100)] 
imsm: support for Intel SAS controller in get_disk_controller_domain handler

get_disk_controller_domain recognizes Intel (R) SAS controller (isci).
The function returns three different strings that differentiate disk attached
to AHCI, ISCI or unknown controller types to create separate domains
for each case.

Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: detail_platform_imsm supports Intel SAS controller (isci driver)
Labun Marcin [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
imsm: detail_platform_imsm supports Intel SAS controller (isci driver)

Added support in detail_platform_imsm for Intel (R) SAS controller.
Function supports AHCI and ISCI controllers. RAID properties are derived
from common OROM for both types.

Based on code From: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: prepare detail_platform_imsm to support different types of controllers
Labun Marcin [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
imsm: prepare detail_platform_imsm to support different types of controllers

Pull out the AHCI specific parts of detail_platform_imsm to separate functions.
Introduce support new types of controllers.

Based on code From: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: support for Intel(R) SAS controller in imsm handler
Labun Marcin [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
imsm: support for Intel(R) SAS controller in imsm handler

add_to_super_imsm handler is able to recognize new type of controller.
It stores the controller information in its structures and blocks
mixing of different controller type in the same container.
In this way it maintains compatibility between Linux and Windows IMSM RAID
stacks. IMSM metadata does not allow arrays to span on devices attached to
different storage controllers.

Based on code From: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm platform: support for Intel(R) SAS controller.
Labun Marcin [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
imsm platform: support for Intel(R) SAS controller.

This patch adds platform support for SAS controller(s) built in Intel(R) Patsburg
chipset.

Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Reset disk state if disk is missing
Krzysztof Wojcik [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
FIX: Reset disk state if disk is missing

If we can't read actual disk state, it shoud be initiated
to 0.
Overwise it may be out of date value resulting false action
later in code (e.g. set disk to improper state).

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoCheck number of failed disks durig raid10->raid0 takeover
Krzysztof Wojcik [Tue, 25 Jan 2011 06:44:11 +0000 (17:44 +1100)] 
Check number of failed disks durig raid10->raid0 takeover

Number of failed disks MUST be half of initial number of disks.
If number of failed disks is different we should not update
metadata- data corruption may occur after array reassemlation.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoraid0->raid10 takeover- process metadata update
Krzysztof Wojcik [Tue, 25 Jan 2011 06:44:10 +0000 (17:44 +1100)] 
raid0->raid10 takeover- process metadata update

Implementation of raid0->raid10 takeover metadata update
at process_update level.
- We are using memory previously allocated in prepare_update to
  create two dummy disks will be inserted in the metadata and
  new imsm_dev structure with expanded disk order table.
- Update indexes in disk list
- Update metadata map
- Update disk order table

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoraid0->raid10 takeover- allocate memory for added disks
Krzysztof Wojcik [Tue, 25 Jan 2011 06:44:10 +0000 (17:44 +1100)] 
raid0->raid10 takeover- allocate memory for added disks

Allocate memory will be used in process_update.
For raid0->raid10 takeover operation number of disks doubles
so we should allocate memory for additional disks
and one imsm_dev structure with extended order table.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoraid0->raid10 takeover- create metadata update
Krzysztof Wojcik [Tue, 25 Jan 2011 06:44:10 +0000 (17:44 +1100)] 
raid0->raid10 takeover- create metadata update

Create metadata update for raid0 -> raid10 takeover.
Because we have no mdmon running for raid0 we have to
update metadata using local update mechanism

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoAdd raid10 -> raid0 takeover support
Krzysztof Wojcik [Tue, 25 Jan 2011 06:49:03 +0000 (17:49 +1100)] 
Add raid10 -> raid0 takeover support

The patch introduces takeover from level 10 to level 0 for imsm
metadata. This patch contains procedures connected with preparing
and applying metadata update during 10 -> 0 takeover.
When performing takeover 10->0 mdmon should update the external
metadata (due to disk slot and level changes).
To achieve that mdadm calls reshape_super() and prepare
the "update_takeover" metadata update type.
Prepared update is processed by mdmon in process_update().

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix some issues with setting 'new' state of a reshape
NeilBrown [Tue, 25 Jan 2011 22:47:06 +0000 (08:47 +1000)] 
Fix some issues with setting 'new' state of a reshape

- when reshaping a container, ->reshape_active is already set
  even though it isn't really active yet, so we need to set
  the new geometry even when reshape_active is set.  This is safe.

- When restarting a reshape, make sure the reshape_position is set
  appropriately when external metadata is used.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoDon't close fds in write_init_super
NeilBrown [Mon, 24 Jan 2011 20:56:53 +0000 (07:56 +1100)] 
Don't close fds in write_init_super

We previously closed all 'fds' associated with an array in
write_init_super .. sometimes, and sometimes at bad times.
This isn't neat and free_super is a better place to close them.

So make sure free_super always closes the fds that the metadata
manager kept hold of, and stop closing them in write_init_super.

Also add a few more calls to free_super to make sure they really do
get closed.

Reported-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix up analysis of reshape from RAID1 to RAID5.
NeilBrown [Thu, 20 Jan 2011 22:13:44 +0000 (09:13 +1100)] 
Fix up analysis of reshape from RAID1 to RAID5.

Need to allow raid-disks to change at the same time.

NeilBrown <neilb@suse.de>

13 years agoreindent/reformat some code.
NeilBrown [Thu, 20 Jan 2011 22:06:31 +0000 (09:06 +1100)] 
reindent/reformat some code.

Indenting was all wrong here, so fix it up.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoBe more careful about adjusting reshape_progress based on backup.
NeilBrown [Thu, 20 Jan 2011 22:03:53 +0000 (09:03 +1100)] 
Be more careful about adjusting reshape_progress based on backup.

Only adjust reshape_progress based on the backup that was found
if the backup covered the current reshape_progress point.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoCorrectly initialise backup_point when reshaping backwards.
NeilBrown [Thu, 20 Jan 2011 22:01:09 +0000 (09:01 +1100)] 
Correctly initialise backup_point when reshaping backwards.

When reshaping backwards we only backup from backup_blocks to
the start, so initialise backup_point appropriately.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoerror check reading of 'degraded' from sysfs.
NeilBrown [Thu, 20 Jan 2011 21:59:00 +0000 (08:59 +1100)] 
error check reading of 'degraded' from sysfs.

I'm seen mdadm spinning while failing to read 'degraded'.
This doesn't really fix it, but is a reminder that it needs to be
fixed.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoInitialise reshape_progress properly in reshape_array.
NeilBrown [Thu, 20 Jan 2011 21:56:35 +0000 (08:56 +1100)] 
Initialise reshape_progress properly in reshape_array.

Previously uninitialised.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix management of backed-up region for hi-to-low reshapes.
NeilBrown [Thu, 20 Jan 2011 20:59:53 +0000 (07:59 +1100)] 
Fix management of backed-up region for hi-to-low reshapes.

When reshaping from the end of the array to the start, for times
when the number of data devices is decreasing, the handling of the
backup area isn't a simple mirror of the handling on low-to-hi
reshapes as the backup areas is always low in the array.

So re-write that to make it work.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Arrays cannot be opened exclusively
Adam Kwolek [Mon, 17 Jan 2011 04:06:02 +0000 (15:06 +1100)] 
FIX: Arrays cannot be opened exclusively

When reshaping it is correct to open containers exclusively, but not
arrays.  The array could very easily be in use, e.g. by a mounted
filesystem.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoUnfreeze for non re-striping transitions
Krzysztof Wojcik [Mon, 17 Jan 2011 01:56:43 +0000 (12:56 +1100)] 
Unfreeze for non re-striping transitions

For non re-striping transitions array must be unfrozen
before end of processing.
For restriping transitions we normally let the child
unfreeze the array but in this case there is no child.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoSet reshape.after.data_disks for raid0<->raid10 takeover
Krzysztof Wojcik [Mon, 17 Jan 2011 01:53:31 +0000 (12:53 +1100)] 
Set reshape.after.data_disks for raid0<->raid10 takeover

reshape.after.data_disks field must be initiated
for raid0<->raid10 transition.
Instead calculated spares_needed variable in reshape_array
function has random value.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoDefine imsm_analyze_change function
Krzysztof Wojcik [Mon, 17 Jan 2011 01:52:36 +0000 (12:52 +1100)] 
Define imsm_analyze_change function

Function intended to use for single volume migration.
Function analyze transition and validate if it is supported.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agofix: Monitor: min_size must be set to 0
Czarnowska, Anna [Mon, 17 Jan 2011 01:46:14 +0000 (12:46 +1100)] 
fix: Monitor: min_size must be set to 0

Otherwise a random value will be used for comparison later
for native and ddf metadata (until min_acceptable_spare_size is defined).

Signed-off-by: Anna Czarnowska <anna.czarnowska@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: sync_completed == 0 causes reshape cancellation in metadata
Adam Kwolek [Mon, 17 Jan 2011 01:44:52 +0000 (12:44 +1100)] 
FIX: sync_completed == 0 causes reshape cancellation in metadata

md signals reshape completion (whole area or parts) by setting
sync_completed to 0.  This causes in set_array_state() to rollback
metadata changes (super-intel.c:4977.  To avoid this do not allow for
set last_checkpoint to 0 if reshape is finished.

This was also root cause of my previous fix for finalization reshape
that I agreed earlier is not necessary,

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: mdadm throws coredump on exit in error case
Adam Kwolek [Mon, 17 Jan 2011 01:38:13 +0000 (12:38 +1100)] 
FIX: mdadm throws coredump on exit in error case

When mdadm falls in "reduce size" error on takeovered array it jumps
to release and tries execute backward takeover. This time sra pointer
is not initialized and coredump is generated.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agofix: segfault if subarray is monitored but container is not
Czarnowska, Anna [Thu, 13 Jan 2011 13:22:16 +0000 (13:22 +0000)] 
fix: segfault if subarray is monitored but container is not

In this situation to->parent is null so "to" doesn't change to
parent container and to->metadata is still null.
This results in segmentation fault when checking
to->metadata->ss->external.
We should just skip this array as container is needed to move spares to.

Signed-off-by: Anna Czarnowska <anna.czarnowska@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoAdd 'restart' arg to various functions used for reshaping.
NeilBrown [Sun, 16 Jan 2011 22:53:56 +0000 (09:53 +1100)] 
Add 'restart' arg to various functions used for reshaping.

When we restart an array in the middle of a reshape, we reuse a lot of
the code for starting the reshape, but it needs to know that
circumstances are slightly different.

So add a 'restart' arg which is used:
 - skip checking and adding spares
 - activate the array (rather than start reshape)
 - allow the backup file to already exist

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoBe more careful checking why reshape has stopped.
NeilBrown [Sun, 16 Jan 2011 22:53:25 +0000 (09:53 +1100)] 
Be more careful checking why reshape has stopped.

If reshape_position reports 'none', check array_state to see if array
is still active.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoIgnore error when setting sync_min
NeilBrown [Sun, 16 Jan 2011 22:51:33 +0000 (09:51 +1100)] 
Ignore error when setting sync_min

When restarting an array that is in the middle of a reshape,
sync_min cannot be set.  So just ignore any errors we get
when trying to set it.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMake sure child_monitor reliably reports whether reshape completed or aborted.
NeilBrown [Sun, 16 Jan 2011 22:51:25 +0000 (09:51 +1100)] 
Make sure child_monitor reliably reports whether reshape completed or aborted.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoClean up return path for reshape_array.
NeilBrown [Thu, 13 Jan 2011 04:20:21 +0000 (15:20 +1100)] 
Clean up return path for reshape_array.

Particular problem was that we didn't unfreeze if a reshape
wasn't needed.

But all that 'rv' stuff isn't needed and some of it was wrong,
so simplify it all.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Mistake in delta_disk comparison.
Krzysztof Wojcik [Thu, 13 Jan 2011 02:37:31 +0000 (13:37 +1100)] 
FIX: Mistake in delta_disk comparison.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoreshape_super reorganization
Krzysztof Wojcik [Thu, 13 Jan 2011 02:02:44 +0000 (13:02 +1100)] 
reshape_super reorganization

Function has been divided into two clear parts:
1. Container operations
2. Volume operations

Prototype of imsm_analyze_change function has been added.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoClean up exit paths from reshape_array.
NeilBrown [Thu, 13 Jan 2011 01:57:25 +0000 (12:57 +1100)] 
Clean up exit paths from reshape_array.

We only 'goto release' on error, but that branch contained handling
for non-error conditions:  reloading metadata.  Obviously that doesn't
work.

So re-arrange the code to make it more of a straight line that is
easier to follow and reload the metadata if that might be at all
needed.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoreshape_array: move lots of code out of a 'switch'.
NeilBrown [Wed, 12 Jan 2011 23:44:52 +0000 (10:44 +1100)] 
reshape_array: move lots of code out of a 'switch'.

Everything other than the 'child' part of the 'switch(fork)' returns
quickly, so leave them inside the switch but move the other large bit
out so as to make the flow of code more natural.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix up calls to unfrozen at end of reshape.
NeilBrown [Wed, 12 Jan 2011 23:39:34 +0000 (10:39 +1100)] 
Fix up calls to unfrozen at end of reshape.

1/ don't pass 'frozen' as an arg to unfreeze - just use it
   to conditionally call 'unfreeze'.

2/ Always unfreeze at end of reshape_container

3/ Only unfreeze at end of reshape_array if not 'forked'.  So when
   reshape_array is called from reshape_container it doesn't unfreeze,
   but when called directly.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: spares are not counted
Adam Kwolek [Wed, 12 Jan 2011 23:16:07 +0000 (10:16 +1100)] 
imsm: FIX: spares are not counted

Field info->array.spare_disks is used on begin of reshape_array() to
check if there is enough number of spares to process reshape.  During
container_content_imsm() call spare disks are not counted.  This
causes that reshape_array() reports that there is not enough spares to
execute reshape.

Patch adds spares counting for reshape process.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Cannot load container information
Adam Kwolek [Wed, 12 Jan 2011 23:15:54 +0000 (10:15 +1100)] 
FIX: Cannot load container information

When container is passed to grow_reshape(), load_container() function
has to be used to get all required information from metadata.
So load_super is never correct here - in particular, cfd is a
'container fd' so we must 'load_container' on it.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: old devices memory has to be released
Adam Kwolek [Wed, 12 Jan 2011 23:06:29 +0000 (10:06 +1100)] 
imsm: FIX: old devices memory has to be released

When process_update() replaces memory for bigger devices, old memory
areas are collected in a list and has to be assigned in to pointer in
update for later release.

List created from old devices is created and attached to space_list
for later releasing.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: local mdadm update shouldn't be done in update creation function.
Adam Kwolek [Wed, 12 Jan 2011 23:05:31 +0000 (10:05 +1100)] 
imsm: FIX: local mdadm update shouldn't be done in update creation function.

Local update is performed based on created update, so this code can broke
local update and it is not necessary as prepare and process update functions
are used.

Code removed.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: mdadm should process local data
Adam Kwolek [Wed, 12 Jan 2011 23:04:33 +0000 (10:04 +1100)] 
imsm: FIX: mdadm should process local data

When update is created by mdadm, local information should be updated
also.  This makes us to prepare one update for mdmon and second
"update" to maintain local changes.  we can use prepared update for
"local/mdadm" metadata update purposes.

We have 2 cases:
1. when metadata is updated by mdmon, we avoid metadata reloading in
   mdadm.
   we proceed the same updtate 2 times:
- one time in mdadm for "local update"
        - second time in mdmon for real metadat update
2. when metadata is updated by mdadm (no mdmon running) updates are
   processed in the same way.
- one time in mdadm for "local update"
- there is no "second time" update but mdadm just flushes
          metadata to array

   This let us to avoid code duplication by using prepare and process
   update functions as for update via mdmon. This makes update
   preparing mdmon independent and there is no need to maintain the
   same thing in 2 places in code.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: size is passed incorrectly
Kwolek, Adam [Wed, 12 Jan 2011 10:42:44 +0000 (21:42 +1100)] 
FIX: size is passed incorrectly

reshape_super() called from reshape_container() with size set to
info->component_size gives size in reshape_super == -2 due to unsigned
signed conversion (info->component_size is not initializes).

As size is not changed during container reshape '-1' value is passed
to indicate this.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMake text_version available to reshape_array for subarray processing.
Marcin Labun [Wed, 12 Jan 2011 06:11:56 +0000 (17:11 +1100)] 
Make text_version available to reshape_array for subarray processing.

reshape_array uses text_version to reload the container content,
so make sure it is available.

Signed-off-by: Marcin Labun <marcin.labun@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: only one spare is passed in update
Adam Kwolek [Tue, 11 Jan 2011 14:04:19 +0000 (15:04 +0100)] 
imsm: FIX: only one spare is passed in update

Only one spare is passed in update.
When more than one disk is added first spare is passed multiple times.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: set correct slot information in metadata (raid0)
Adam Kwolek [Tue, 11 Jan 2011 14:03:55 +0000 (15:03 +0100)] 
imsm: FIX: set correct slot information in metadata (raid0)

Slot was set based on anchor information.
Disks information was copied outside disk list area.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoload_super should not try to load_container
NeilBrown [Wed, 12 Jan 2011 05:18:04 +0000 (16:18 +1100)] 
load_super  should not try to load_container

Now that load_container is a separate operation, load_super
should not try it first.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMonitor: skip array if error getting size
Anna Czarnowska [Tue, 11 Jan 2011 10:36:37 +0000 (11:36 +0100)] 
Monitor: skip array if error getting size

load_super tries to load container first anyway but if it fails
eg. after physically removing a disk
then it tries to read metadata from container device.
This will always fail and print confusing errors.
So use load_container instead of load_super on container.

On failure to read metadata we should skip this array.
It will be dealt with the next time round.

Signed-off-by: Anna Czarnowska <anna.czarnowska@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Fill sys_name for disk add
Adam Kwolek [Mon, 10 Jan 2011 11:29:12 +0000 (12:29 +0100)] 
FIX: Fill sys_name for disk add

Add disks fails due to empty sys name field.
sysfs_init fills out required fields for add disk operation.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoDon't complain about missing spares when reshaping a raid0.
NeilBrown [Wed, 12 Jan 2011 04:59:24 +0000 (15:59 +1100)] 
Don't complain about missing spares when reshaping a raid0.

To reshape a RAID0 we convert to RAID4 first.  This makes it look
like it could be degraded and so we are tempted to ensure there are
enough spares.  However this is not appropriate for RAID0, so
explicitly exclude new_level == RAID0 in this check

Reported-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: update disks status in container_contents()
Adam Kwolek [Wed, 12 Jan 2011 04:12:44 +0000 (15:12 +1100)] 
imsm: FIX: update disks status in container_contents()

Based on status information disks are added to array during grow (in reshape_array()).
This information currently is not present and all disks (old and new) were added to md.
To avoid adding already present disks, disk.state has to be set.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMake child_monitor a candidate for ->manage_reshape
NeilBrown [Wed, 12 Jan 2011 03:46:17 +0000 (14:46 +1100)] 
Make child_monitor a candidate for ->manage_reshape

Child_monitor was design to perform 'manage_reshape' for native
arrays.  So change the signature for ->manage_reshape to match
child_monitor and move the all to the same place that child_monitor
is called from.

Also give super-intel a manage_reshape handler which simple calls
child_monitor.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMove setup of backup superblock into child_monitor
NeilBrown [Wed, 12 Jan 2011 03:42:51 +0000 (14:42 +1100)] 
Move setup of backup superblock into child_monitor

child_monitor has overall responsibility for backups using the generic
bsb, so move all handling under it's control.

signed-off-by: NeilBrown <neilb@suse.de>

13 years agoAdd comment about future enhancement
NeilBrown [Wed, 12 Jan 2011 03:04:09 +0000 (14:04 +1100)] 
Add comment about future enhancement

We currently suspend rather large sections of
the array which can take a while to process.
Possibly smaller sections are better.  Possibly it should be
adjusted on a timeout basis.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoCorrectly handle the final partial backup of an in-place reshape.
NeilBrown [Wed, 12 Jan 2011 03:01:36 +0000 (14:01 +1100)] 
Correctly handle the final partial backup of an in-place reshape.

The array might not be a multiple of the chosen backup size, so
the last bit to be backed up might be a bit smaller.  Handle that
correctly.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoHandle edge case with suspend_point updates.
NeilBrown [Tue, 11 Jan 2011 23:51:44 +0000 (10:51 +1100)] 
Handle edge case with suspend_point updates.

If reshape_progress equals suspend_point, it is also appropriate to
update the end of the suspend region.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoBe more enthusiastic/flexible in backing up data.
NeilBrown [Tue, 11 Jan 2011 23:44:58 +0000 (10:44 +1100)] 
Be more enthusiastic/flexible in backing up data.

At some points we need to perform 2 backups at once so as to
start the 'double buffering' approach.  So rather than assuming
what the next backup should be, example suspend_point and backup
as much as possible up to there.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix issues with the finish of monitoring a reshape.
NeilBrown [Tue, 11 Jan 2011 23:40:56 +0000 (10:40 +1100)] 
Fix issues with the finish of monitoring a reshape.

1/ We need to clean up the backup file after the reshape finishes.
2/ We need to remove the suspended region and clear the resync
   controls after the resync finishes.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agofix array_size in child_monitor
NeilBrown [Tue, 11 Jan 2011 23:37:26 +0000 (10:37 +1100)] 
fix array_size in child_monitor

The array_size we need to consider is the largest possible size of the
array, which is a different calculation depending on whether the array
is growing or shrinking.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix calculations for max_progress and completed.
NeilBrown [Tue, 11 Jan 2011 23:34:44 +0000 (10:34 +1100)] 
Fix calculations for max_progress and completed.

'sync_completed' can sometimes have a value which is slightly high.
So round-down relevant values to new-chunk size and that is what we
want.

Subtract from component_size after scaling down rather than before as
that is easier.
Make sure max_progress never goes negative when reshaping backwards.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoImprove determination of when a backup is needed.
NeilBrown [Tue, 11 Jan 2011 04:20:40 +0000 (15:20 +1100)] 
Improve determination of when a backup is needed.

The current code is right.
Instead compute where we might eventually need to back up to, and
then compare that to how far we have progressed.

Also move suspend_point up towards where we might need to backup to,
rather than just as far as max_progress - as max_progress can never
exceed where we are currently suspended to.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoRemove write_range from calculation of max_progress
NeilBrown [Tue, 11 Jan 2011 04:07:57 +0000 (15:07 +1100)] 
Remove write_range from calculation of max_progress

It isn't needed as we always work in multiples of full
destination stripes.

Also multiply by 'after' disks, not before.

We can progress until the point we would write then lines up with
where we would read now.
We read now from
  array-address: reshape_progress   device-address: read_offset
So we write then to
  device-address: read_offset    array-address:  read_offset * after.disks

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoSwitch calculations of read_offset and write_offset
NeilBrown [Tue, 11 Jan 2011 03:57:14 +0000 (14:57 +1100)] 
Switch calculations of read_offset and write_offset

These were backwards...  we read from 'before' and write to 'after'.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoAvoid confusing with 'blocks' number.
NeilBrown [Tue, 11 Jan 2011 03:51:09 +0000 (14:51 +1100)] 
Avoid confusing with 'blocks' number.

The 'blocks' number computed by analyse_change is the number of
blocks that it makes sense to back-up at a time.
It is the smallest number of blocks that is a whole number of
stripes in both the old and the new layout.

However we are also using it as the smallest amount of progress
that can be made at a time, which is wrong as it is always valid
to progress a single stripe in the new layout.

So change 'blocks' to be called 'backup_blocks' to make it more clear.
And pass new_chunk size down so it can be used for 'minimum forward
progress' calculations.

Also set 'stripes' (the amount actually backed up) from the
possibly-scaled 'blocks' number rather than ignoring it and using
backup_blocks.

Finally, get rid of 'read_range' as it isn't used (or needed).

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoCorrectly abort level change when reshape_array fails.
NeilBrown [Tue, 11 Jan 2011 03:41:49 +0000 (14:41 +1100)] 
Correctly abort level change when reshape_array fails.

We were returning too early.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoMisc reshape_array fixes.
NeilBrown [Tue, 11 Jan 2011 03:41:48 +0000 (14:41 +1100)] 
Misc reshape_array fixes.

1/ test on spares_needed is backwards
2/ stray white space
3/ reuse a goto instead of explicit exit().

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoAvoid double-unfreeze of arrays during grow.
NeilBrown [Tue, 11 Jan 2011 03:41:47 +0000 (14:41 +1100)] 
Avoid double-unfreeze of arrays  during grow.

Once we have called reshape_container or reshape_super we have handed
on the responsibility for unfreezing the array, so Grow_reshape
shouldn't call unfreeze.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoanalyse_change fixes
NeilBrown [Tue, 11 Jan 2011 03:41:46 +0000 (14:41 +1100)] 
analyse_change fixes

When converting to RAID6, the new layout should match the old
layout, not the RAID6 version of the old layout.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFix some typos in fprintf messages.
NeilBrown [Tue, 11 Jan 2011 03:41:42 +0000 (14:41 +1100)] 
Fix some typos in fprintf messages.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoGrow: fix type when 'or'ing flags together.
NeilBrown [Tue, 11 Jan 2011 03:16:11 +0000 (14:16 +1100)] 
Grow: fix type when 'or'ing flags together.

'||' should have been '|'

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoEnsure start_reshape copes with unexpected state
NeilBrown [Tue, 11 Jan 2011 02:23:16 +0000 (13:23 +1100)] 
Ensure start_reshape copes with unexpected state

We want start_reshape to work no matter what the current values
of suspend_lo/suspend_hi are.  So initialise suspend_lo very high
as this allows suspend_hi to be set to anything.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoRaid0: detect reshape on array start
Adam Kwolek [Thu, 6 Jan 2011 08:27:25 +0000 (19:27 +1100)] 
Raid0: detect reshape on array start

When raid0 array is takeovered to raid4 for reshape it should be possible to detect
that array for reshape is monitored now for metadata update.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: do not repair raid4 arrays
Adam Kwolek [Thu, 6 Jan 2011 08:20:25 +0000 (19:20 +1100)] 
imsm: FIX: do not repair raid4 arrays

As raid4 is not supported by imsm (this is takeovered raid0)
do not fix degraded raid4 arrays.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoRaid0: execute backward takeover
Adam Kwolek [Thu, 6 Jan 2011 08:20:01 +0000 (19:20 +1100)] 
Raid0: execute backward takeover

After raid0 reshape is finished backward takeover has to be executed.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoDetect level change
Adam Kwolek [Thu, 6 Jan 2011 08:17:29 +0000 (19:17 +1100)] 
Detect level change

For level migration support it is necessary to allow mdmon to react for level changes.
It has to have ability to change configuration of active array,
and for array level change to raid0 finish array monitoring.

Signed-off-by: Maciej Trela <maciej.trela@intel.com>
Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: Update raid0 metadata for reshape
Adam Kwolek [Thu, 6 Jan 2011 08:14:24 +0000 (19:14 +1100)] 
imsm: Update raid0 metadata for reshape

When raid0 reshape is performed metadata has to be applied by mdadm.
(without mdmon)

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: Move reshape update processing to function
NeilBrown [Thu, 6 Jan 2011 08:10:04 +0000 (19:10 +1100)] 
imsm: Move reshape update processing to function

For code reuse in raid0 reshape case when monitor is not loaded.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoAdd spares to raid0 in mdadm
Adam Kwolek [Thu, 6 Jan 2011 07:42:53 +0000 (18:42 +1100)] 
Add spares to raid0 in mdadm

When user wants to add spares to container with raid0 arrays only
it is not possible to update metadata due to lack of running mdmon.
To allow for this direct metadata update by mdadm is used in such case.

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: Update metadata for second array
Adam Kwolek [Thu, 6 Jan 2011 07:29:23 +0000 (18:29 +1100)] 
imsm: Update metadata for second array

When second array reshape is about to start metadata should be updated
by mdmon in imsm_set_array_state().

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoSet array size after adding new disks
Adam Kwolek [Thu, 6 Jan 2011 07:29:20 +0000 (18:29 +1100)] 
Set array size after adding new disks

When new disks are added array size has to be set by mdadm as array grows.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: update array size information in metadata
Adam Kwolek [Thu, 6 Jan 2011 07:29:15 +0000 (18:29 +1100)] 
imsm: update array size information in metadata

When disks are added size has to increase in metadata.
This size should be used by common code to set size in md when reshape will be finished.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: Division by 0
Adam Kwolek [Thu, 6 Jan 2011 07:29:11 +0000 (18:29 +1100)] 
imsm: FIX: Division by 0

For general migration function blocks_per_migr_unit() has to return valid value.
If there is no valid return, 0 is returned instead and causes division by 0 error.
Additionally guard in function was added for such case.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: Finalize reshape in metadata
Adam Kwolek [Thu, 6 Jan 2011 07:29:07 +0000 (18:29 +1100)] 
imsm: Finalize reshape in metadata

When reshape is finished monitor calls set_array_state() and finishes migration in metadata.
This change allows for finishing metadata migration on reshape end.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Use sysfs to change array parameters
Adam Kwolek [Thu, 6 Jan 2011 07:29:03 +0000 (18:29 +1100)] 
FIX: Use sysfs to change array parameters

For external metadata parameters has to be changed via sysfs.
i.e. change of raid_disks requires handshake mdmon<->md (md_allow_write())

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Get array information in reshape_array()
Adam Kwolek [Thu, 6 Jan 2011 07:29:02 +0000 (18:29 +1100)] 
FIX: Get array information in reshape_array()

Uninitialized array structure is used.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: support general migration by getinfo_super_imsm_volume
Adam Kwolek [Thu, 6 Jan 2011 07:28:56 +0000 (18:28 +1100)] 
imsm: FIX: support general migration by getinfo_super_imsm_volume

Add support for reading volume information during migration process.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: update first array in container only
Adam Kwolek [Tue, 4 Jan 2011 14:36:57 +0000 (15:36 +0100)] 
imsm: FIX: update first array in container only

During first metadata update imsm for compatibility reason should update
only one array.
Buffers in prepare_update() are prepared for second update as well.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: get updated information from metadata
Adam Kwolek [Thu, 6 Jan 2011 05:56:05 +0000 (16:56 +1100)] 
FIX: get updated information from metadata

Metadata is not modified by metadata preparation handler.
It has to be read again from array.
There is 2 read required:
1. before 'for' entry to get updated information after reshape_super() call
2. inside 'for' loop to get updated information for every processed array
  (it can happen /i.e. imsm case/ that container operation is a set of array operations
   and information in metadata is changed after every loop).

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: Perform first metadata update for container operation
Adam Kwolek [Thu, 6 Jan 2011 05:24:07 +0000 (16:24 +1100)] 
imsm: FIX: Perform first metadata update for container operation

Meta data was not updated due to the following problems:
1.disk index < 0 was treated as invalid, but this is spare device
2. disk index greater than currently used disks is correct also
3. newmap pointer has to be refreshed for second map copy operation
4. size calculation has to be guarded for shrinking operation

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: display error message
Adam Kwolek [Thu, 6 Jan 2011 05:22:01 +0000 (16:22 +1100)] 
imsm: FIX: display error message

When container operation is not allowed user has to get proper information on console about it
Currently this information was displayed as debug info only.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoimsm: FIX: display correct information for '-E' option
Adam Kwolek [Thu, 6 Jan 2011 05:11:35 +0000 (16:11 +1100)] 
imsm: FIX: display correct information for '-E' option

Correct information displayed by '-E' option.
1. FIX: Slot information during raid0 migration is displayed incorrectly
        (missing disk position is taken from wrong map)
2. Improvement: information about (level, members, chunk size) migration is displayed.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agomdadm: second_map enhancement for imsm_get_map()
Adam Kwolek [Thu, 6 Jan 2011 05:08:04 +0000 (16:08 +1100)] 
mdadm: second_map enhancement for imsm_get_map()

Allow map related operations for the given map: first of second.
For reshape specific functionality it is required to have an access

Until now, the active map was chosen according to the current volume status.

Signed-off-by: Maciej Trela <maciej.trela@intel.com>
Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoFIX: Position calculation in mdstat_by_subdev
Krzysztof Wojcik [Thu, 6 Jan 2011 05:07:20 +0000 (16:07 +1100)] 
FIX: Position calculation in mdstat_by_subdev

Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoRefactor reshape monitoring.
NeilBrown [Thu, 6 Jan 2011 04:58:32 +0000 (15:58 +1100)] 
Refactor reshape monitoring.

Combine all the non-backing-up code into a single function:
progress_reshape.  It is called repeatedly to monitor a
reshape and allow it to happen safely.

Have a single separate function 'child_monitor' which
performs backups of data and calls progress_reshape to
wait for the next backup to be needed.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoGrow_reshape re-factor
NeilBrown [Thu, 6 Jan 2011 04:58:00 +0000 (15:58 +1100)] 
Grow_reshape re-factor

Significant rewrite/refactor of Grow_reshape to make it easier to work
with externally-managed-metadata.

This patch it too big, but we'll just have to live with that.

Signed-off-by: NeilBrown <neilb@suse.de>
13 years agoIncremental: move suitable spares to container when subarrays started.
Anna Czarnowska [Wed, 5 Jan 2011 03:42:27 +0000 (14:42 +1100)] 
Incremental: move suitable spares to container when subarrays started.

By default Incremental places all imsm spares in separate container
with uuid=0:0:0:0. (patch giving spares uuid_zero needed)

When we find enough members to start an array
we are able to determine domain so we search spare container
for suitable spares and move them to the container that
is currently assembled.

Signed-off-by: Anna Czarnowska <anna.czarnowska@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>