diff options
author | NeilBrown <neilb@suse.de> | 2008-09-18 08:21:08 +0200 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2008-09-18 08:21:08 +0200 |
commit | dbb44303d7d3ad8fffb9e25c8ed6fd57afa57b95 (patch) | |
tree | 659ac563f499c3f397aa9947d37ce332fe025784 /mdadm.h | |
parent | Use common code to report MD_UUID for --detail --export (diff) | |
download | mdadm-dbb44303d7d3ad8fffb9e25c8ed6fd57afa57b95.tar.xz mdadm-dbb44303d7d3ad8fffb9e25c8ed6fd57afa57b95.zip |
Add support for assembling specific subarrays.
This normally isn't needed as --incremental does all the work.
But it is needed to recognise member= and container= in mdadm.conf
Diffstat (limited to '')
-rw-r--r-- | mdadm.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -259,6 +259,12 @@ typedef struct mddev_ident_s { char *bitmap_file; int bitmap_fd; + char *container; /* /dev/whatever name of container. You + * would expect this to be the 'devname' + * of some other entry. + */ + char *member; /* subarray within a container */ + struct mddev_ident_s *next; } *mddev_ident_t; |