From 9008ed1c9623b7c11775ea8a7be17eb1bde5fd09 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Tue, 4 Nov 2008 20:51:12 +1100 Subject: Assemble: allow members of containers to be assembled and auto-assembled. Try to treat members of containers much like other arrays for assembly. We still look through the list of devices for a match (it will be the container), then find the relevant 'info' and try to assemble the array. Signed-off-by: NeilBrown --- config.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config.c') diff --git a/config.c b/config.c index 8b233559..6ab5a346 100644 --- a/config.c +++ b/config.c @@ -261,6 +261,7 @@ mddev_dev_t load_partitions(void) d->devname = strdup(name); d->next = rv; d->used = 0; + d->content = NULL; rv = d; } fclose(f); @@ -290,6 +291,7 @@ mddev_dev_t load_containers(void) } d->next = rv; d->used = 0; + d->content = NULL; rv = d; } free_mdstat(mdstat); @@ -803,6 +805,7 @@ mddev_dev_t conf_get_devs() t->devname = strdup(globbuf.gl_pathv[i]); t->next = dlist; t->used = 0; + t->content = NULL; dlist = t; /* printf("one dev is %s\n", t->devname);*/ } -- cgit v1.2.3