]> git.ipfire.org Git - thirdparty/mdadm.git/log
thirdparty/mdadm.git
6 years agosysfs: include faulty drive in disk count
Mariusz Tkaczyk [Tue, 7 Nov 2017 15:49:56 +0000 (16:49 +0100)] 
sysfs: include faulty drive in disk count

When the disk fails, it goes into faulty state first and it is removed
from the array in a while. It gives mdadm monitor a chance to see the disk
has failed and notify an event (e.g. FailSpare). It doesn't work when
sysfs is used to get a number of disks in the array as it skips faulty
disk. ioctl implementation doesn't differentiate between active and
faulty disk. Do the same for sysfs then. It should not matter that number
of disks reported is greater than list of disk structures returned by the
call because the same approach already takes place for offline disks.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: More precise message when spanned raid is created
Michal Zylowski [Wed, 8 Nov 2017 14:43:41 +0000 (15:43 +0100)] 
imsm: More precise message when spanned raid is created

When RAID is created between VMD and SATA disks, printed message is
"Mixing devices attached to different VMD domains is not allowed". This message
is unclear and misleading because creating spanned containers between different
VMD domains is allowed. Set error message to more precise text.

Signed-off-by: Michal Zylowski <michal.zylowski@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoTo support clustered raid10
Guoqing Jiang [Mon, 30 Oct 2017 09:09:51 +0000 (17:09 +0800)] 
To support clustered raid10

We are now considering to extend clustered raid to
support raid10. But only near layout is supported,
so make the check when create the array or switch
the bitmap from internal to clustered.

Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: fix reading scsi serial
Artur Paszkiewicz [Thu, 2 Nov 2017 15:10:57 +0000 (16:10 +0100)] 
imsm: fix reading scsi serial

Improve error detection after SG_IO ioctl. Checking only the return
value and response length is insufficient and leads to anomalies if a
drive does not have a serial number.

Reported-by: NeilBrown <neilb@suse.com>
Tested-by: NeilBrown <neilb@suse.com>
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoIncremental: Use ->validate_geometry instead of ->avail_size
NeilBrown [Mon, 30 Oct 2017 04:43:41 +0000 (15:43 +1100)] 
Incremental: Use ->validate_geometry instead of ->avail_size

Since mdadm 3.3 is has not been correct to call ->avail_size if
metadata hasn't been read from the device.  ->validate_geometry
should be used instead.

Unfortunately array_try_spare() didn't get the memo, and it can crash
when adding a spare with no metdata.

So change it to use ->validate_geometry().

Only one place remains that uses ->avail_size(), and that is safe.

Also fix a comment with a typo.

Reported-and-tested-by: Bjørnar Ness <bjornar.ness@gmail.com>
Fixes: 641da7459192 ("super1: separate to version of _avail_space1().")
Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosystemd: add %I to description of mdadm-last-resort services.
NeilBrown [Mon, 30 Oct 2017 00:42:15 +0000 (11:42 +1100)] 
systemd: add %I to description of mdadm-last-resort services.

Just like the other template services, include the instance
name (I%) in the description of
 mdadm-last-resort@.service
 mdadm-last-resort@.timer

so that it is clear from the logs which array is affected.

Reported-by: Andrei Borzenkov <arvidjaar@gmail.com>
Link: http://bugzilla.opensuse.org/show_bug.cgi?id=1064915
Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/mdopen: create new function create_named_array for writing to new_array
Zhilong Liu [Mon, 16 Oct 2017 07:54:18 +0000 (15:54 +0800)] 
mdadm/mdopen: create new function create_named_array for writing to new_array

Split 'write to new_array' out into a function named create_named_array.
And fixed a trivial compiling warning 'warn_unused_result' against commit:
fdbf7aaa1956 (mdopen: call "modprobe md_mod" if it might be needed.)

Suggested-by: NeilBrown <neilb@suse.com>
Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/grow: adding a test to ensure resize was required
Zhilong Liu [Wed, 11 Oct 2017 08:53:12 +0000 (16:53 +0800)] 
mdadm/grow: adding a test to ensure resize was required

To fix the commit: 4b74a905a67e
(mdadm/grow: Component size must be larger than chunk size)

array.level > 1 : against the raids which chunk_size is meaningful.
s->size > 0 : ensure that changing component size has required.
array.chunk_size / 1024 > s->size : ensure component size should
be always >= current chunk_size when requires resize, otherwise,
mddev->pers->resize would be set mddev->dev_sectors as '0'.

Reported-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Suggested-by: NeilBrown <neilb@suse.com>
Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMove mdadm_env.sh out of /usr/lib/systemd
NeilBrown [Thu, 5 Oct 2017 06:13:17 +0000 (17:13 +1100)] 
Move mdadm_env.sh out of /usr/lib/systemd

The systemd developers like to keep control of the
lib/systemd namespace, and haven't approved of the use
of lib/systemd/scripts.  So we should stop using it.

Move the mdadm_env.sh script, optionally sourced by
mdmonitor.service, to a new directory /usr/lib/mdadm.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdcheck: improve cleanup
NeilBrown [Fri, 6 Oct 2017 01:34:40 +0000 (12:34 +1100)] 
mdcheck: improve cleanup

We should remove the tmp file on signals as well as on exit.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdcheck: add some logging.
NeilBrown [Fri, 6 Oct 2017 01:33:36 +0000 (12:33 +1100)] 
mdcheck: add some logging.

Use 'logger' to report when mdcheck starts, stops, or continues
the check on an array.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/mdstat: correct the strncmp number 4 as 6
Zhilong Liu [Mon, 9 Oct 2017 08:21:14 +0000 (16:21 +0800)] 
mdadm/mdstat: correct the strncmp number 4 as 6

mdstat: it should be corrected as 6 when strncmp 'resync'.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/mdstat: fixup a number of '==' broken formatting
Zhilong Liu [Mon, 9 Oct 2017 08:21:13 +0000 (16:21 +0800)] 
mdadm/mdstat: fixup a number of '==' broken formatting

This commit doesn't change any codes, just tidy up the
code formatting.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: Add one test case for raid5 reshape
Xiao Ni [Tue, 10 Oct 2017 11:32:52 +0000 (19:32 +0800)] 
mdadm/test: Add one test case for raid5 reshape

This case tries to allow raid5 reshape to use backwards direction.
It changes chunksize after reshape and stops the raid. Then starts
the raid again.

Signed-off-by: Xiao Ni <xni@redhat.com>
Suggested-by: Jes Sorensen <jes.sorensen@gmail.com>
Suggested-by: Zhilong Liu <zlliu@suse.com>
Suggested-by: Paul Menzel <pmenzel@molgen.mpg.de>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdmon: get safe mode delay file descriptor early
Tomasz Majchrzak [Wed, 4 Oct 2017 08:18:21 +0000 (10:18 +0200)] 
mdmon: get safe mode delay file descriptor early

After switch root new mdmon is started. It sends initrd mdmon a signal
to terminate. initrd mdmon receives it and switches the safe mode delay
to 1 ms in order to get array to clean state and flush last version of
metadata. The problem is sysfs filesystem is not available to initrd mdmon
after switch root so the original safe mode delay is unchanged. The delay
is set to few seconds - if there is a lot of traffic on the filesystem,
initrd mdmon doesn't terminate for a long time (no clean state). There
are 2 instances of mdmon. initrd mdmon flushes metadata when array goes
to clean state but this metadata might be already outdated.

Use file descriptor obtained on mdmon start to change safe mode delay.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: Set disk slot number
Mariusz Tkaczyk [Tue, 3 Oct 2017 12:49:49 +0000 (14:49 +0200)] 
imsm: Set disk slot number

If first disk of IMSM RAID1 is failed but still present in the system,
the array is not auto-assembled. Auto-assemble uses raid disk slot from
metadata to index disks. As it's not set, the valid disk is seen as a
replacement disk and its metadata is ignored. The problem is not
observed for other RAID levels as they have more than 2 disks -
replacement disks are only stored under uneven indexes so third disk
metadata is used in such scenario.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Reviewed-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: Use all 80 characters
Jes Sorensen [Mon, 2 Oct 2017 21:21:40 +0000 (17:21 -0400)] 
Grow: Use all 80 characters

Try to use the full line length and avoid breaking up lines excessively.
Equally break up lines that are too long for no reason.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: write initial ppl on a disk added for rebuild
Artur Paszkiewicz [Thu, 28 Sep 2017 12:41:18 +0000 (14:41 +0200)] 
imsm: write initial ppl on a disk added for rebuild

When rebuild is initiated by the UEFI driver it is possible that the new
disk will not contain a valid ppl header. Just write the initial ppl
and don't abort assembly.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: use correct map when validating ppl
Artur Paszkiewicz [Thu, 28 Sep 2017 12:41:17 +0000 (14:41 +0200)] 
imsm: use correct map when validating ppl

Use the first map to get the correct disk when rebuilding and not the
failed disk from the second map.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: always do ppl recovery when starting a rebuilding array
Artur Paszkiewicz [Thu, 28 Sep 2017 12:41:16 +0000 (14:41 +0200)] 
imsm: always do ppl recovery when starting a rebuilding array

Set resync_start to 0 when starting a rebuilding array to make the
kernel perform ppl recovery before the rebuild.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: Write empty PPL header if assembling regular clean array.
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:15 +0000 (14:41 +0200)] 
imsm: Write empty PPL header if assembling regular clean array.

If array was initially assembled with kernel without PPL support -
initial header was never written to the drive.
If initial resync was completed and system is rebooted to kernel with
PPL support - mdadm prevents from assembling normal clean array
due to lack of valid PPL.
Write empty header when assemble normal clean array, so the
its assamble is no longer blocked.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: don't skip resync when an invalid ppl header is found
Artur Paszkiewicz [Thu, 28 Sep 2017 12:41:14 +0000 (14:41 +0200)] 
imsm: don't skip resync when an invalid ppl header is found

If validate_ppl_imsm() detects an invalid ppl header it will be
overwritten with a valid, empty ppl header. But if we are assembling an
array after unclean shutdown this will cause the kernel to skip resync
after ppl recovery. We don't want that because if there was an invalid
ppl it's best to assume that the ppl recovery is not enough to make the
array consistent and a full resync should be performed. So when
overwriting the invalid ppl add one ppl_header_entry with a wrong
checksum. This will prevent the kernel from skipping resync after ppl
recovery.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: fix switching on PPL during recovery
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:13 +0000 (14:41 +0200)] 
Grow: fix switching on PPL during recovery

If raid memeber is not in sync - it is skipped during
enablement of PPL. This is not correct, since the drive that
we are currently recovering to does not have ppl_size and ppl_sector
properly set in sysfs.
Remove this skipping, so all drives are updated during turning on the PPL.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: switch to multiple ppls automatically during assemble
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:12 +0000 (14:41 +0200)] 
imsm: switch to multiple ppls automatically during assemble

If user has array with single ppl -
update the metadata to use multiple ppls.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoZeroout whole ppl space during creation/force assemble
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:11 +0000 (14:41 +0200)] 
Zeroout whole ppl space during creation/force assemble

PPL area should be cleared before creation/force assemble.
If the drive was used in other RAID array, it might contains PPL from it.
There is a risk that mdadm recognizes those PPLs and
refuses to assemble the RAID due to PPL conflict with created
array.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: validate multiple ppls during assemble
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:10 +0000 (14:41 +0200)] 
imsm: validate multiple ppls during assemble

Change validation algorithm to check validity of multiple ppls that
are stored in PPL area.

If read error occurs during - treat the all PPLs as invalid -
there is no guarantee that this one was not latest. If the header CRC is
incorrect - assume that there are no further PPLs in PPL area.

If whole PPL area was written at least once - there is a possibility that
old PPL (with lower generation number) will follow the recent one
(with higest generation number). Compare those generation numbers to check
which PPL is latest.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: Add support for multiple ppls
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:09 +0000 (14:41 +0200)] 
imsm: Add support for multiple ppls

Add interpreting new rwh_policy bits. Set PPL size as 1MB.
If new array with ppl is created - use new implementation of ppl by
default.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosuper1: Add support for multiple-ppls
Pawel Baldysiak [Thu, 28 Sep 2017 12:41:08 +0000 (14:41 +0200)] 
super1: Add support for multiple-ppls

Add support for super1 with multiple ppls. Extend ppl area size to 1MB.
Use 1MB as default during creation. Always start array as single ppl -
if kernel is capable of multiple ppls and there is enough space reserved -
it will switch the policy during first metadata update.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoDon't abort starting the array if kernel does not support ppl
Artur Paszkiewicz [Thu, 28 Sep 2017 12:41:07 +0000 (14:41 +0200)] 
Don't abort starting the array if kernel does not support ppl

Change the behavior of assemble and create for consistency-policy=ppl
for external metadata arrays. If the kernel does not support ppl, don't
abort but print a warning and start the array without ppl
(consistency-policy=resync). No change for native md arrays because the
kernel will not allow starting the array if it finds an unsupported
feature bit in the superblock.

In sysfs_add_disk() check consistency_policy in the mdinfo structure
that represents the array, not the disk and read the current consistency
policy from sysfs in mdmon's manage_member(). This is necessary to make
sysfs_add_disk() honor the actual consistency policy and not what is in
the metadata. Also remove all the places where consistency_policy is set
for a disk's mdinfo - it is a property of the array, not the disk.

Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: fixes some trivial typos in comments
Zhilong Liu [Tue, 5 Sep 2017 09:41:38 +0000 (17:41 +0800)] 
mdadm: fixes some trivial typos in comments

fix some trivial typos in comments.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/manpage: disable bitmap_resize for external file bitmap
Zhilong Liu [Tue, 5 Sep 2017 09:41:37 +0000 (17:41 +0800)] 
mdadm/manpage: disable bitmap_resize for external file bitmap

Update the manpage in "SIZE CHANGES" against the md commit.
Commit: e8a27f836f165c26f867ece7f31eb5c811692319
(md/bitmap: disable bitmap_resize for file-backed bitmaps.)

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/grow: Component size must be larger than chunk size
Zhilong Liu [Tue, 5 Sep 2017 09:41:36 +0000 (17:41 +0800)] 
mdadm/grow: Component size must be larger than chunk size

Grow: Changing component size must be larger than current
chunk size against stripe raids, otherwise Grow_reshape()
would set s->size to '0'.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: Check redundancy for arrays
Mariusz Tkaczyk [Mon, 4 Sep 2017 10:52:46 +0000 (12:52 +0200)] 
Monitor: Check redundancy for arrays

GET_MISMATCH option doesn't exist for RAID arrays without redundancy
so sysfs_read fails if this information is requested. Set options
according to the device using information from /proc/mdstat.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: New disk controller domains
Mariusz Tkaczyk [Thu, 7 Sep 2017 14:05:09 +0000 (16:05 +0200)] 
imsm: New disk controller domains

Add disk controller domain for nvme and vmd devices to prevent moving
spares between different domains.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: stop previous reshape process first
Tomasz Majchrzak [Thu, 7 Sep 2017 11:01:16 +0000 (13:01 +0200)] 
Grow: stop previous reshape process first

If array is stopped during reshape and assembled again straight away,
reshape process in a background might still be running. systemd doesn't
start a new service if one already exists. If there is a race, previous
process might terminate and new one is not created. Reshape doesn't
continue after assemble.

Tell systemd to restart the service rather than just start it. It will
assure previous service is stopped first. If it's not running, stopping
has no effect and only new process is started.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoClose mdfd before returning main function
Xiao Ni [Tue, 19 Sep 2017 06:06:46 +0000 (14:06 +0800)] 
Close mdfd before returning main function

Signed-off-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoutil: Code is 80 characters wide
Jes Sorensen [Fri, 29 Sep 2017 22:15:23 +0000 (18:15 -0400)] 
util: Code is 80 characters wide

Lets not make things uglier than they need to be.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoManage_subdevs(): Use a dev_t
Jes Sorensen [Fri, 29 Sep 2017 22:08:01 +0000 (18:08 -0400)] 
Manage_subdevs(): Use a dev_t

Use the correct type for rdev

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosysfs_init_dev - take a dev_t argument
Jes Sorensen [Fri, 29 Sep 2017 22:04:06 +0000 (18:04 -0400)] 
sysfs_init_dev - take a dev_t argument

Be consistent and use the correct type.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agolib: devid2kname() should take a dev_t
Jes Sorensen [Fri, 29 Sep 2017 21:54:12 +0000 (17:54 -0400)] 
lib: devid2kname() should take a dev_t

Make devid2kname() and devid2devnm() consistent in their APIs

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdopen: call "modprobe md_mod" if it might be needed.
NeilBrown [Mon, 25 Sep 2017 05:52:19 +0000 (15:52 +1000)] 
mdopen: call "modprobe md_mod" if it might be needed.

Creating an array by opening a block-device with major number of 9
will transparently load the md module if needed.
Creating an array by opening
   /sys/module/md_mod/parameters/new_array
and writing to it won't, it will just fail if md_mod isn't loaded.

So when opening that file fails with ENOENT, run "modprobe md_mod" and
try again.

This fixes a bug whereby if you have "CREATE names=yes" in mdadm.conf,
and the md modules isn't loaded, then creating or assembling an
array will not honor the "names=yes" configuration.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: add new testcase for testing readonly/readwrite
Zhilong Liu [Mon, 28 Aug 2017 09:24:31 +0000 (17:24 +0800)] 
mdadm/test: add new testcase for testing readonly/readwrite

This is a test case for testing --readonly and
--readwrite feature, it covers common metadata
versions and raid levels.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: get rid of tests/check
Zhilong Liu [Mon, 28 Aug 2017 09:24:30 +0000 (17:24 +0800)] 
mdadm/test: get rid of tests/check

The tests/check can be removed due to check()
in new 'test' has covered various checking.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: get rid of the tests/testdev
Zhilong Liu [Mon, 28 Aug 2017 09:24:29 +0000 (17:24 +0800)] 
mdadm/test: get rid of the tests/testdev

It's time to get rid of the tests/testdev due
to it has covered by testdev() in new 'test'.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: use the first element of array as parsing condition
Zhilong Liu [Mon, 28 Aug 2017 09:24:28 +0000 (17:24 +0800)] 
mdadm/test: use the first element of array as parsing condition

it would complain "too many arguments" when array[] has
few members, it's proper to check whether or not array[0]
is null.

Reported-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/bitmap: examine-bitmap failed when bitmap is external mode
Zhilong Liu [Mon, 28 Aug 2017 09:24:27 +0000 (17:24 +0800)] 
mdadm/bitmap: examine-bitmap failed when bitmap is external mode

--examine-bitmap: the bitmap_file_open() shouldn't omit the
regular file descriptor when the bitmap is external mode.
Such as: ./mdadm -X /mnt/3

This commit is partial revert of commit 0a6bff09d416
(mdadm/util: unify fstat checking blkdev into function)

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: set journal_clean after scanning all disks
Song Liu [Tue, 29 Aug 2017 16:53:02 +0000 (09:53 -0700)] 
mdadm: set journal_clean after scanning all disks

Summary:
In Incremental.c:count_active(), max_events is tracked to show to
which devices are up to date. If a device has events==max_events+1,
getinfo_super() is called to reload the superblock from this
device. getinfo_super1() blindly set journal_clean to 0, which is
wrong.

This patch fixes this by tracking max_journal_events for all the
disks. After scanning all disks, journal_clean is set if
max_journal_events >= max_events-1.

Signed-off-by: Song Liu <songliubraving@fb.com>
Reviewed-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: install two more udev rules in mdadm.spec
Song Liu [Mon, 28 Aug 2017 22:20:35 +0000 (15:20 -0700)] 
mdadm: install two more udev rules in mdadm.spec

To avoid rpmbuild error.

Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoDetail: differentiate between container and inactive arrays
Mariusz Tkaczyk [Fri, 18 Aug 2017 10:00:23 +0000 (12:00 +0200)] 
Detail: differentiate between container and inactive arrays

Containers used to be handled as active arrays because GET_ARRAY_INFO
ioctl returns valid structure for them. As containers appear as inactive
in sysfs, the output for detail command has changed.

Stop relying on inactive state for containers. Make the output look the
same as in mdadm 4.0.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: Include containers in spare migration
Mariusz Tkaczyk [Wed, 16 Aug 2017 12:59:46 +0000 (14:59 +0200)] 
Monitor: Include containers in spare migration

Spare migration doesn't work for external metadata. mdadm skips
a container with spare device because it is inactive. It used to work
because GET_ARRAY_INFO ioctl returned valid structure for a container
and mdadm treated such response as active container. Current
implementation checks it in sysfs where container is shown as inactive.

Adapt sysfs implementation to work the same way as ioctl.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: containers don't have the same sysfs properties as arrays
Mariusz Tkaczyk [Wed, 16 Aug 2017 12:22:32 +0000 (14:22 +0200)] 
Monitor: containers don't have the same sysfs properties as arrays

GET_MISMATCH option doesn't exist for containers so sysfs_read fails if
this information is requested. Set options according to the device using
information from /proc/mdstat.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoDon't use exit(ERANGE)
NeilBrown [Fri, 4 Aug 2017 05:30:02 +0000 (15:30 +1000)] 
Don't use exit(ERANGE)

mdadm uses smaller exit codes like 0,1,2,3,4.
Using ERANGE is inconsistent and not helpful.
So change it to a more consistent number.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosuper1: only set clustered flag when bitmap is present
NeilBrown [Fri, 4 Aug 2017 05:30:02 +0000 (15:30 +1000)] 
super1: only set clustered flag when bitmap is present

If no bitmap is present, then the test

if (__le32_to_cpu(bsb->nodes) > 1)

accesses uninitialised memory.  So move that test inside
a test for a bitmap being present.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoUse correct syntax for passing DEVLINKS to mdadm from udev
NeilBrown [Fri, 4 Aug 2017 05:30:02 +0000 (15:30 +1000)] 
Use correct syntax for passing DEVLINKS to mdadm from udev

 ${DEVLINKS}
is not valid udev syntax, and is passed through uninterpreted.
 $env{DEVLINKS}
or
  %e{DEVLINKS}
is correct.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoError messages should end with a newline character.
NeilBrown [Fri, 4 Aug 2017 05:30:02 +0000 (15:30 +1000)] 
Error messages should end with a newline character.

Add "\n" to the end of error messages which don't already
have one.  Also spell "opened" correctly.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: rebuild from 2-disk RAID10
Tomasz Majchrzak [Thu, 10 Aug 2017 13:47:22 +0000 (15:47 +0200)] 
imsm: rebuild from 2-disk RAID10

When RAID10 loses 2 disks and it is still operational, it cannot be
rebuilt. The rebuild process starts for the first disk and completes,
however completion is not recorded in metadata. There is an assumption
that rebuild completion corresponds to transition from degraded to
normal state. It's not the case for 2-disk RAID10 as it's still degraded
after rebuild to first disk completes.

Check if disk rebuild flag is set in the second map and clear it. So far it
has been checked only in the first map (where it was not set). The flag in
the second map has not been cleared but rebuild completion dropped second
map so the problem was not visible.

If rebuild completion is notified and array still has failed disks and is in
degraded state, check first if rebuild position is really unset (the same
check as for array in normal state). If so, mark migration as done but don't
change array state (it should remain degraded). Update failed disk number.

On rebuild start don't clear the rebuild flag in the destination map for all
the drives because failed state is lost for one of them. Just do a copy of
a map and clear the flag in the destination map for the disk that goes into
rebuild. Similarily preserve the rebuild flag in the map during disk removal.

If the disk is missing on array start and migration has been in progress,
don't just cancel it. Check first if maybe one of the disks was not under
rebuild (rebuild flag present both in source and destination map). If so,
rebuild was running despite of failed disk so there is no need to cancel
migration.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoDetail: correct output for active arrays
Mariusz Tkaczyk [Thu, 10 Aug 2017 09:43:48 +0000 (11:43 +0200)] 
Detail: correct output for active arrays

The check for inactive array is incorrect as it compares it against
active array. Introduce a new function md_is_array_active so the check
is consistent across the code.

As the output contains list of disks in the array include this
information in sysfs read.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoudev rules: introduce rules for cluster-md to confirm device
Guoqing Jiang [Wed, 2 Aug 2017 02:05:41 +0000 (10:05 +0800)] 
udev rules: introduce rules for cluster-md to confirm device

For cluster scenario, add device is different with native raid.
When a node issues adds a device, then the node will broadcast
a message with UUID to other nodes in the cluster. If receiving
node can find the device with the specific UUID, it must confirm
the device, otherwise reports it is missing.

Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/r5cache: allow adding journal to array without journal
Song Liu [Tue, 28 Mar 2017 18:04:44 +0000 (11:04 -0700)] 
mdadm/r5cache: allow adding journal to array without journal

Currently, --add-journal can be only used to recreate broken journal
for arrays with journal since  creation. As the kernel code getting
more mature, this constraint is no longer necessary.

This patch allows --add-journal to add journal to array without
journal.

Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosuper1: Always round data offset to 1M
Pawel Baldysiak [Wed, 26 Jul 2017 14:41:54 +0000 (16:41 +0200)] 
super1: Always round data offset to 1M

Currently if metadata requires more then 1M,
data offset will be rounded down to closest MB.
This is not correct, since less then required space is reserved.
Always round data offset up to multiple of 1M.

Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: don't assume mdadm parameter is a block device
Tomasz Majchrzak [Mon, 19 Jun 2017 09:19:53 +0000 (11:19 +0200)] 
Monitor: don't assume mdadm parameter is a block device

If symlink (e.g. /dev/md/raid) is passed as a parameter to mdadm --wait,
it fails as it's not able to find a corresponding entry in /proc/mdstat
output. Get parameter file major:minor and look for block device name in
sysfs. This commit is partial revert of commit 9e04ac1c43e6
("mdadm/util: unify stat checking blkdev into function").

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: Add '--disks=' to support testing phsical devices
Zhilong Liu [Wed, 14 Jun 2017 13:02:53 +0000 (21:02 +0800)] 
mdadm/test: Add '--disks=' to support testing phsical devices

If test mode has set as '--dev=disk', then users can specify
the argument of "--disks" to test a bunch of physical devices.
For example: ./test --dev=disk --disks=/dev/sda{2..15}
could execute all test cases on physical devices.

Currently, the --dev=disk mode would confilct with testdev()
in current test cases, thus ignore testing testdev() if has
set --dev=disk mode.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: Add '--raidtype=' to run different raidlevel cases
Zhilong Liu [Wed, 14 Jun 2017 13:02:52 +0000 (21:02 +0800)] 
mdadm/test: Add '--raidtype=' to run different raidlevel cases

It supports to specify the argument of "--raidtype"
to run the different raid level cases. Details refer
to the do_help() usage.
For example: ./test --raidtype=raid1
could execute all the raid1 test cases under tests/.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: Refactor and revamp 'test' script
Zhilong Liu [Wed, 14 Jun 2017 13:02:51 +0000 (21:02 +0800)] 
mdadm/test: Refactor and revamp 'test' script

Adding functions:
die()
  uniform the abnormal situations that have to abort.
check_env()
  do various basic checking before running test suite.
save_log()
  collect array infos, include of dmesg, superblock,
  bitmap and /proc/mdstat.
main()
  the core function of this script.

Improve functions:
cleanup()
  clear dmesg and remove the /var/tmp/mdtest* files.
mdadm()
  clear superblock once creating or building arrays
  every time, because it's always creating arrays
  many times in a test case.
check()
  just tidy up with die(), didn't change code meanings.
testdev()
  add checking $1 must be a block device, add 'return 0'
  in final because this function exists in last line of
  test case, such as tests/05r6tor0.
do_test()
  add checking abnormal dmesg and changing log management.
do_help()
  just recommend a better way to print Usage.
parse_args()
  revamp and improve.

Delete function:
fast_sync()
  It's no longer used, so get rid of it.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/test: Convert code format to use Tab
Zhilong Liu [Wed, 7 Jun 2017 09:31:26 +0000 (17:31 +0800)] 
mdadm/test: Convert code format to use Tab

In case to make codes neat, this commit didn't change
any codes, just tidy up and use Tab as code format.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: don't allow to enable PPL when reshape is in progress
Tomasz Majchrzak [Fri, 9 Jun 2017 14:20:19 +0000 (16:20 +0200)] 
Grow: don't allow to enable PPL when reshape is in progress

Don't allow to enable PPL consistency policy when reshape is in progress.
Current PPL implementation doesn't work when reshape is taking place.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: don't allow array geometry change with ppl enabled
Tomasz Majchrzak [Thu, 8 Jun 2017 14:05:51 +0000 (16:05 +0200)] 
Grow: don't allow array geometry change with ppl enabled

Don't allow array geometry change (size expand, disk adding) when PPL
consistency policy is enabled. Current PPL implementation doesn't work when
reshape is taking place.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGet failed disk count from array state
Tomasz Majchrzak [Wed, 31 May 2017 10:46:57 +0000 (12:46 +0200)] 
Get failed disk count from array state

Recent commit has changed the way failed disks are counted. It breaks
recovery for external metadata arrays as failed disks are not part of
the array and have no corresponding entries is sysfs (they are only
reported for containers) so degraded arrays show no failed disks.

Recent commit overwrites GET_DEGRADED result prior to GET_STATE and it
is not set again if GET_STATE has not been requested. As GET_STATE
provides the same information as GET_DEGRADED, the latter is not needed
anymore. Remove GET_DEGRADED option and replace it with GET_STATE
option.

Don't count number of failed disks looking at sysfs entries but
calculate it at the end. Do it only for arrays as containers report
no disks, just spares.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoGrow: set component size prior to array size
Tomasz Majchrzak [Mon, 5 Jun 2017 14:09:44 +0000 (16:09 +0200)] 
Grow: set component size prior to array size

It is a partial revert of commit 758b327cf5a7 ("Grow: Remove unnecessary
optimization"). For native metadata component size is set in kernel for
entire disk space. As external metadata supports multiple arrays within
one disk, the component size is set to array size. If component size is
not updated prior to array size update, the grow operation fails.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomd_u: Remove unused ioctl declaration of START_ARRAY
Zhilong Liu [Wed, 31 May 2017 11:38:36 +0000 (19:38 +0800)] 
md_u: Remove unused ioctl declaration of START_ARRAY

START_ARRAY is no longer used in the code, so get rid of it.
MD commit: fbedac04fa11 ("[PATCH] md: the scheduled removal
of the START_ARRAY ioctl for md") merged in the year 2006.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosuper1: fix sb->max_dev when adding a new disk in linear array
Lidong Zhong [Thu, 25 May 2017 09:28:11 +0000 (17:28 +0800)] 
super1: fix sb->max_dev when adding a new disk in linear array

The value of sb->max_dev will always be increased by 1 when adding
a new disk in linear array. It causes an inconsistence between each
disk in the array and the "Array State" value of "mdadm --examine DISK"
is wrong. For example, when adding the first new disk into linear array
it will be:

Array State : RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
('A' == active, '.' == missing, 'R' == replacing)

Adding the second disk into linear array it will be

Array State : .AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
('A' == active, '.' == missing, 'R' == replacing)

Signed-off-by: Lidong Zhong <lzhong@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoDetail: don't exit if ioctl has been successful
Tomasz Majchrzak [Wed, 24 May 2017 09:34:22 +0000 (11:34 +0200)] 
Detail: don't exit if ioctl has been successful

When GET_ARRAY_INFO ioctl is successful, mdadm exits with an error.
It breaks udev and no links in /dev/md are created.

Also change debug print to error print in the message indicating lack
of the link to facilitate debugging similar issues in the future.

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomanpage: bad block support for IMSM
Tomasz Majchrzak [Thu, 18 May 2017 13:14:49 +0000 (15:14 +0200)] 
manpage: bad block support for IMSM

Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: Fixup != broken formatting
Jes Sorensen [Tue, 16 May 2017 18:09:57 +0000 (14:09 -0400)] 
mdadm: Fixup != broken formatting

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: Fix '==' broken formatting
Jes Sorensen [Tue, 16 May 2017 18:04:22 +0000 (14:04 -0400)] 
mdadm: Fix '==' broken formatting

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: Fixup more broken logical operator formatting
Jes Sorensen [Tue, 16 May 2017 17:59:43 +0000 (13:59 -0400)] 
mdadm: Fixup more broken logical operator formatting

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: Fixup a large number of bad formatting of logical operators
Jes Sorensen [Tue, 16 May 2017 17:52:15 +0000 (13:52 -0400)] 
mdadm: Fixup a large number of bad formatting of logical operators

Logical oprators never belong at the beginning of a line.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosuper-ddf: sysfs_read() takes a pointer as device name argument
Jes Sorensen [Tue, 16 May 2017 17:29:46 +0000 (13:29 -0400)] 
super-ddf: sysfs_read() takes a pointer as device name argument

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm: Uninitialized variable rdev
James Puthukattukaran [Tue, 16 May 2017 15:57:00 +0000 (11:57 -0400)] 
mdadm: Uninitialized variable rdev

rdev is not initialized properly causing compiler complaint.

Signed-off-by: James Puthukattukaran <joejames70@gmail.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: Fixup a pile of whitespace issues
Jes Sorensen [Thu, 11 May 2017 20:56:55 +0000 (16:56 -0400)] 
Monitor: Fixup a pile of whitespace issues

No code was hurt in this event

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: mailfrom is initialized correctly
Jes Sorensen [Thu, 11 May 2017 20:44:19 +0000 (16:44 -0400)] 
Monitor: mailfrom is initialized correctly

Remove gratituous variable initialization.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor: Not much point declaring mdlist in both forks of the if() statement
Jes Sorensen [Thu, 11 May 2017 20:40:16 +0000 (16:40 -0400)] 
Monitor: Not much point declaring mdlist in both forks of the if() statement

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoretire the APIs that driver no longer supports
Zhilong Liu [Thu, 11 May 2017 08:52:41 +0000 (16:52 +0800)] 
retire the APIs that driver no longer supports

refer to commit: e6e5f8f1267d ("Build: Stop
bothering about supporting md driver ...")
continue to retire the APIs that md driver
wasn't supported for very long period of time.

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoIMSM: Correct --examine output for 4k disks
Maksymilian Kunt [Tue, 9 May 2017 12:03:27 +0000 (14:03 +0200)] 
IMSM: Correct --examine output for 4k disks

"Array Size" and "Per Dev Size" are incorrect for disks with sector size
different than 512B.

Calculate "Array Size" and "Per Dev Size" based on sector size. Additionally
print "Sector Size".

Signed-off-by: Maksymilian Kunt <maksymilian.kunt@intel.com>
Signed-off-by: Mariusz Dabrowski <mariusz.dabrowski@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Use working_disks from sysfs
Jes Sorensen [Tue, 9 May 2017 21:15:14 +0000 (17:15 -0400)] 
Monitor/check_array: Use working_disks from sysfs

sysfs now provides working_disks information, so lets use it too.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agosysfs/sysfs_read: Count working_disks
Jes Sorensen [Tue, 9 May 2017 21:09:40 +0000 (17:09 -0400)] 
sysfs/sysfs_read: Count working_disks

This counts working_disks the same way as get_array_info counts it in
the kernel.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Get nr_disks, active_disks and spare_disks from sysfs
Jes Sorensen [Tue, 9 May 2017 21:03:03 +0000 (17:03 -0400)] 
Monitor/check_array: Get nr_disks, active_disks and spare_disks from sysfs

This leaves working_disks and utime missing before we can eliminate
check_array()'s call to md_get_array_info()

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Get array_disks from sysfs
Jes Sorensen [Tue, 9 May 2017 20:58:55 +0000 (16:58 -0400)] 
Monitor/check_array: Get array_disks from sysfs

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Get 'failed_disks' from sysfs
Jes Sorensen [Tue, 9 May 2017 20:54:19 +0000 (16:54 -0400)] 
Monitor/check_array: Get 'failed_disks' from sysfs

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Obtain RAID level from syfs
Jes Sorensen [Tue, 9 May 2017 20:52:44 +0000 (16:52 -0400)] 
Monitor/check_array: Obtain RAID level from syfs

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Read sysfs entry earlier
Jes Sorensen [Tue, 9 May 2017 20:49:33 +0000 (16:49 -0400)] 
Monitor/check_array: Read sysfs entry earlier

This will allow us to pull additional info from sysfs, such as level
and device info.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Declate mdinfo instance globally
Jes Sorensen [Tue, 9 May 2017 20:41:06 +0000 (16:41 -0400)] 
Monitor/check_array: Declate mdinfo instance globally

We can pull in more information from sysfs earlier, so move sra to the top.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Reduce duplicated error handling
Jes Sorensen [Tue, 9 May 2017 20:38:06 +0000 (16:38 -0400)] 
Monitor/check_array: Reduce duplicated error handling

Avoid closing fd in multiple places, and duplicating the error message
for when a device disappeared.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoMonitor/check_array: Centralize exit path
Jes Sorensen [Tue, 9 May 2017 20:25:23 +0000 (16:25 -0400)] 
Monitor/check_array: Centralize exit path

Improve exit handling to make it easier to share error handling and free
sysfs entries later.

Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoAdd sector size as spare selection criterion
Alexey Obitotskiy [Tue, 9 May 2017 10:25:47 +0000 (12:25 +0200)] 
Add sector size as spare selection criterion

Add sector size as new spare selection criterion. Assume that 0 means
there is no requirement for the sector size in the array. Skip disks
with unsuitable sector size when looking for a spare to move across
containers.

Signed-off-by: Alexey Obitotskiy <aleksey.obitotskiy@intel.com>
Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoAllow more spare selection criteria
Alexey Obitotskiy [Tue, 9 May 2017 10:25:46 +0000 (12:25 +0200)] 
Allow more spare selection criteria

Disks can be moved across containers in order to be used as a spare
drive for reubild. At the moment the only requirement checked for such
disk is its size (if it matches donor expectations). In order to
introduce more criteria rename corresponding superswitch method to more
generic name and move function parameter to a structure. This change is
a big edit but it doesn't introduce any changes in code logic, it just
updates function naming and parameters.

Signed-off-by: Alexey Obitotskiy <aleksey.obitotskiy@intel.com>
Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: don't allow disks with different sector size in one array
Alexey Obitotskiy [Tue, 9 May 2017 10:25:45 +0000 (12:25 +0200)] 
imsm: don't allow disks with different sector size in one array

As there is no support in IMSM for arrays including disks with different
sector sizes, don't allow to create such configuration. Also skip the
disk with unsuitable sector size when looking for spares in the same
container.

Signed-off-by: Alexey Obitotskiy <aleksey.obitotskiy@intel.com>
Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: allocate buffer to support maximum sector size
Alexey Obitotskiy [Tue, 9 May 2017 10:25:44 +0000 (12:25 +0200)] 
imsm: allocate buffer to support maximum sector size

Allocate migration record buffer to support maximum sector size. Disk with
non-matching sector size is not going to be included in the array, however
some preparation/cleanup actions still take place on it and they would
cause a crash. Clear migration record using sector size of the disk (not
array) as they might not match.

Signed-off-by: Alexey Obitotskiy <aleksey.obitotskiy@intel.com>
Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agoimsm: allow drives in a container regardless of sector size
Alexey Obitotskiy [Tue, 9 May 2017 10:25:43 +0000 (12:25 +0200)] 
imsm: allow drives in a container regardless of sector size

IMSM doesn't allow to create arrays including drives with different
sector sizes. The initial idea was not to permit to combine drives
with different sector size in the same container. The problem is it
only worked for array creation. On array assemble there are no
calls to metadata handlers to see if drive is suitable for a container
(e.g. as a spare) and it leads to wrong configuration.

Revert the change and allow adding drives with different sector size
to the container.

Signed-off-by: Alexey Obitotskiy <aleksey.obitotskiy@intel.com>
Signed-off-by: Tomasz Majchrzak <tomasz.majchrzak@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
6 years agomdadm/md.4: set page-length as 1000 to avoid warnings from grotty
Zhilong Liu [Tue, 9 May 2017 06:25:17 +0000 (14:25 +0800)] 
mdadm/md.4: set page-length as 1000 to avoid warnings from grotty

"nroff" ("man") or ("tbl") needs a long page to avoid warnings
from "grotty", set 'pl' as 1000 to fix the following issue.

This command invokes by Makefile rule.
linux-tjrh:~/mdadm # man -l md.4 > test
grotty:<standard input> (<standard input>):5967:
character above first line discarded
... ...

Signed-off-by: Zhilong Liu <zlliu@suse.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>