]>
git.ipfire.org Git - thirdparty/mdadm.git/blob - config.c
2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Email: <neilb@suse.de>
35 * Read the config file
37 * conf_get_uuids gets a list of devicename+uuid pairs
38 * conf_get_devs gets device names after expanding wildcards
40 * Each keeps the returned list and frees it when asked to make
43 * The format of the config file needs to be fairly extensible.
44 * Now, arrays only have names and uuids and devices merely are.
45 * But later arrays might want names, and devices might want superblock
46 * versions, and who knows what else.
47 * I like free format, abhore backslash line continuation, adore
48 * indentation for structure and am ok about # comments.
50 * So, each line that isn't blank or a #comment must either start
51 * with a key word, and not be indented, or must start with a
52 * non-key-word and must be indented.
54 * Keywords are DEVICE and ARRAY ... and several others.
55 * DEV{ICE} introduces some devices that might contain raid components.
57 * DEV style=0 /dev/sda* /dev/hd*
58 * DEV style=1 /dev/sd[b-f]*
59 * ARR{AY} describes an array giving md device and attributes like uuid=whatever
61 * ARRAY /dev/md0 uuid=whatever name=something
62 * Spaces separate words on each line. Quoting, with "" or '' protects them,
63 * but may not wrap over lines
68 #define CONFFILE "/etc/mdadm.conf"
71 /* for Debian compatibility .... */
72 #define CONFFILE2 "/etc/mdadm/mdadm.conf"
74 char DefaultConfFile
[] = CONFFILE
;
75 char DefaultAltConfFile
[] = CONFFILE2
;
77 enum linetype
{ Devices
, Array
, Mailaddr
, Mailfrom
, Program
, CreateDev
,
78 Homehost
, AutoMode
, LTEnd
};
80 [Devices
] = "devices",
82 [Mailaddr
] = "mailaddr",
83 [Mailfrom
] = "mailfrom",
84 [Program
] = "program",
85 [CreateDev
]= "create",
86 [Homehost
] = "homehost",
92 * match_keyword returns an index into the keywords array, or -1 for no match
93 * case is ignored, and at least three characters must be given
96 int match_keyword(char *word
)
98 int len
= strlen(word
);
101 if (len
< 3) return -1;
102 for (n
=0; keywords
[n
]; n
++) {
103 if (strncasecmp(word
, keywords
[n
], len
)==0)
109 /* conf_word gets one word from the conf file.
110 * if "allow_key", then accept words at the start of a line,
111 * otherwise stop when such a word is found.
112 * We assume that the file pointer is at the end of a word, so the
113 * next character is a space, or a newline. If not, it is the start of a line.
116 char *conf_word(FILE *file
, int allow_key
)
123 char *word
= malloc(wsize
);
127 while (wordfound
==0) {
128 /* at the end of a word.. */
131 while (c
!= EOF
&& c
!= '\n')
134 if (c
== '\n') continue;
136 if (c
!= ' ' && c
!= '\t' && ! allow_key
) {
140 /* looks like it is safe to get a word here, if there is one */
142 /* first, skip any spaces */
143 while (c
== ' ' || c
== '\t')
145 if (c
!= EOF
&& c
!= '\n' && c
!= '#') {
146 /* we really have a character of a word, so start saving it */
147 while (c
!= EOF
&& c
!= '\n' && (quote
|| (c
!=' ' && c
!= '\t'))) {
149 if (quote
&& c
== quote
) quote
= 0;
150 else if (quote
== 0 && (c
== '\'' || c
== '"'))
153 if (len
== wsize
-1) {
155 word
= realloc(word
, wsize
);
161 /* Hack for broken kernels (2.6.14-.24) that put
162 * "active(auto-read-only)"
163 * in /proc/mdstat instead of
164 * "active (auto-read-only)"
166 if (c
== '(' && len
>= 6
167 && strncmp(word
+len
-6, "active", 6) == 0)
171 if (c
!= EOF
) ungetc(c
, file
);
175 /* Further HACK for broken kernels.. 2.6.14-2.6.24 */
176 if (strcmp(word
, "auto-read-only)") == 0)
177 strcpy(word
, "(auto-read-only)");
179 /* printf("word is <%s>\n", word); */
188 * conf_line reads one logical line from the conffile.
189 * It skips comments and continues until it finds a line that starts
190 * with a non blank/comment. This character is pushed back for the next call
191 * A doubly linked list of words is returned.
192 * the first word will be a keyword. Other words will have had quotes removed.
195 char *conf_line(FILE *file
)
200 w
= conf_word(file
, 1);
201 if (w
== NULL
) return NULL
;
207 while ((w
= conf_word(file
,0))){
208 char *w2
= dl_strdup(w
);
212 /* printf("got a line\n");*/
216 void free_line(char *line
)
219 for (w
=dl_next(line
); w
!= line
; w
=dl_next(line
)) {
228 struct conf_dev
*next
;
232 mddev_dev_t
load_partitions(void)
234 FILE *f
= fopen("/proc/partitions", "r");
236 mddev_dev_t rv
= NULL
;
238 fprintf(stderr
, Name
": cannot open /proc/partitions\n");
241 while (fgets(buf
, 1024, f
)) {
249 major
= strtoul(buf
, &mp
, 10);
250 if (mp
== buf
|| *mp
!= ' ')
252 minor
= strtoul(mp
, NULL
, 10);
254 name
= map_dev(major
, minor
, 1);
257 d
= malloc(sizeof(*d
));
258 d
->devname
= strdup(name
);
268 mddev_dev_t
load_containers(void)
270 struct mdstat_ent
*mdstat
= mdstat_read(1, 0);
271 struct mdstat_ent
*ent
;
273 mddev_dev_t rv
= NULL
;
278 for (ent
= mdstat
; ent
; ent
= ent
->next
)
279 if (ent
->metadata_version
&&
280 strncmp(ent
->metadata_version
, "external:", 9) == 0 &&
281 !is_subarray(&ent
->metadata_version
[9])) {
282 d
= malloc(sizeof(*d
));
285 if (asprintf(&d
->devname
, "/dev/%s", ent
->dev
) < 0) {
299 struct createinfo createinfo
= {
300 .autof
= 2, /* by default, create devices with standard names */
310 int parse_auto(char *str
, char *msg
, int config
)
313 if (str
== NULL
|| *str
== 0)
315 else if (strcasecmp(str
,"no")==0)
317 else if (strcasecmp(str
,"yes")==0)
319 else if (strcasecmp(str
,"md")==0)
322 /* There might be digits, and maybe a hypen, at the end */
323 char *e
= str
+ strlen(str
);
326 while (e
> str
&& isdigit(e
[-1]))
330 if (num
<= 0) num
= 1;
332 if (e
> str
&& e
[-1] == '-')
335 if ((len
== 2 && strncasecmp(str
,"md",2)==0)) {
336 autof
= config
? 5 : 3;
337 } else if ((len
== 3 && strncasecmp(str
,"yes",3)==0)) {
339 } else if ((len
== 3 && strncasecmp(str
,"mdp",3)==0)) {
340 autof
= config
? 6 : 4;
341 } else if ((len
== 1 && strncasecmp(str
,"p",1)==0) ||
342 (len
>= 4 && strncasecmp(str
,"part",4)==0)) {
345 fprintf(stderr
, Name
": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
346 " optionally followed by a number.\n",
355 static void createline(char *line
)
360 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
361 if (strncasecmp(w
, "auto=", 5) == 0)
362 createinfo
.autof
= parse_auto(w
+5, "auto=", 1);
363 else if (strncasecmp(w
, "owner=", 6) == 0) {
365 fprintf(stderr
, Name
": missing owner name\n");
368 createinfo
.uid
= strtoul(w
+6, &ep
, 10);
374 createinfo
.uid
= pw
->pw_uid
;
376 fprintf(stderr
, Name
": CREATE user %s not found\n", w
+6);
378 } else if (strncasecmp(w
, "group=", 6) == 0) {
380 fprintf(stderr
, Name
": missing group name\n");
383 createinfo
.gid
= strtoul(w
+6, &ep
, 10);
389 createinfo
.gid
= gr
->gr_gid
;
391 fprintf(stderr
, Name
": CREATE group %s not found\n", w
+6);
393 } else if (strncasecmp(w
, "mode=", 5) == 0) {
395 fprintf(stderr
, Name
": missing CREATE mode\n");
398 createinfo
.mode
= strtoul(w
+5, &ep
, 8);
400 createinfo
.mode
= 0600;
401 fprintf(stderr
, Name
": unrecognised CREATE mode %s\n",
404 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
405 /* style of metadata to use by default */
407 for (i
=0; superlist
[i
] && !createinfo
.supertype
; i
++)
408 createinfo
.supertype
=
409 superlist
[i
]->match_metadata_desc(w
+9);
410 if (!createinfo
.supertype
)
411 fprintf(stderr
, Name
": metadata format %s unknown, ignoring\n",
413 } else if (strncasecmp(w
, "symlinks=yes", 12) == 0)
414 createinfo
.symlinks
= 1;
415 else if (strncasecmp(w
, "symlinks=no", 11) == 0)
416 createinfo
.symlinks
= 0;
418 fprintf(stderr
, Name
": unrecognised word on CREATE line: %s\n",
424 void devline(char *line
)
429 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
430 if (w
[0] == '/' || strcasecmp(w
, "partitions") == 0 ||
431 strcasecmp(w
, "containers") == 0) {
432 cd
= malloc(sizeof(*cd
));
433 cd
->name
= strdup(w
);
437 fprintf(stderr
, Name
": unreconised word on DEVICE line: %s\n",
443 mddev_ident_t mddevlist
= NULL
;
444 mddev_ident_t
*mddevlp
= &mddevlist
;
446 static int is_number(char *w
)
448 /* check if there are 1 or more digits and nothing else */
450 while (*w
&& isdigit(*w
)) {
454 return (digits
&& ! *w
);
457 void arrayline(char *line
)
461 struct mddev_ident_s mis
;
465 mis
.super_minor
= UnSet
;
467 mis
.raid_disks
= UnSet
;
471 mis
.spare_group
= NULL
;
476 mis
.bitmap_file
= NULL
;
478 mis
.container
= NULL
;
481 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
482 if (w
[0] == '/' || strchr(w
, '=') == NULL
) {
483 /* This names the device, or is '<ignore>'.
484 * The rules match those in create_mddev.
490 * or anything that doesn't start '/' or '<'
492 if (strcasecmp(w
, "<ignore>") == 0 ||
493 strncmp(w
, "/dev/md/", 8) == 0 ||
494 (w
[0] != '/' && w
[0] != '<') ||
495 (strncmp(w
, "/dev/md", 7) == 0 &&
497 (strncmp(w
, "/dev/md_d", 9) == 0 &&
500 /* This is acceptable */;
502 fprintf(stderr
, Name
": only give one "
503 "device per ARRAY line: %s and %s\n",
508 fprintf(stderr
, Name
": %s is an invalid name for "
509 "an md device - ignored.\n", w
);
511 } else if (strncasecmp(w
, "uuid=", 5)==0 ) {
513 fprintf(stderr
, Name
": only specify uuid once, %s ignored.\n",
516 if (parse_uuid(w
+5, mis
.uuid
))
519 fprintf(stderr
, Name
": bad uuid: %s\n", w
);
521 } else if (strncasecmp(w
, "super-minor=", 12)==0 ) {
522 if (mis
.super_minor
!= UnSet
)
523 fprintf(stderr
, Name
": only specify super-minor once, %s ignored.\n",
527 mis
.super_minor
= strtol(w
+12, &endptr
, 10);
528 if (w
[12]==0 || endptr
[0]!=0 || mis
.super_minor
< 0) {
529 fprintf(stderr
, Name
": invalid super-minor number: %s\n",
531 mis
.super_minor
= UnSet
;
534 } else if (strncasecmp(w
, "name=", 5)==0) {
536 fprintf(stderr
, Name
": only specify name once, %s ignored.\n",
538 else if (strlen(w
+5) > 32)
539 fprintf(stderr
, Name
": name too long, ignoring %s\n", w
);
541 strcpy(mis
.name
, w
+5);
543 } else if (strncasecmp(w
, "bitmap=", 7) == 0) {
545 fprintf(stderr
, Name
": only specify bitmap file once. %s ignored\n",
548 mis
.bitmap_file
= strdup(w
+7);
550 } else if (strncasecmp(w
, "devices=", 8 ) == 0 ) {
552 fprintf(stderr
, Name
": only specify devices once (use a comma separated list). %s ignored\n",
555 mis
.devices
= strdup(w
+8);
556 } else if (strncasecmp(w
, "spare-group=", 12) == 0 ) {
558 fprintf(stderr
, Name
": only specify one spare group per array. %s ignored.\n",
561 mis
.spare_group
= strdup(w
+12);
562 } else if (strncasecmp(w
, "level=", 6) == 0 ) {
563 /* this is mainly for compatability with --brief output */
564 mis
.level
= map_name(pers
, w
+6);
565 } else if (strncasecmp(w
, "disks=", 6) == 0 ) {
566 /* again, for compat */
567 mis
.raid_disks
= atoi(w
+6);
568 } else if (strncasecmp(w
, "num-devices=", 12) == 0 ) {
569 /* again, for compat */
570 mis
.raid_disks
= atoi(w
+12);
571 } else if (strncasecmp(w
, "spares=", 7) == 0 ) {
572 /* for warning if not all spares present */
573 mis
.spare_disks
= atoi(w
+7);
574 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
575 /* style of metadata on the devices. */
578 for(i
=0; superlist
[i
] && !mis
.st
; i
++)
579 mis
.st
= superlist
[i
]->match_metadata_desc(w
+9);
582 fprintf(stderr
, Name
": metadata format %s unknown, ignored.\n", w
+9);
583 } else if (strncasecmp(w
, "auto=", 5) == 0 ) {
584 /* whether to create device special files as needed */
585 mis
.autof
= parse_auto(w
+5, "auto type", 0);
586 } else if (strncasecmp(w
, "member=", 7) == 0) {
587 /* subarray within a container */
588 mis
.member
= strdup(w
+7);
589 } else if (strncasecmp(w
, "container=", 10) == 0) {
590 /* the container holding this subarray. Either a device name
592 mis
.container
= strdup(w
+10);
594 fprintf(stderr
, Name
": unrecognised word on ARRAY line: %s\n",
598 if (mis
.uuid_set
== 0 && mis
.devices
== NULL
&&
599 mis
.super_minor
== UnSet
&& mis
.name
[0] == 0 &&
600 (mis
.container
== NULL
|| mis
.member
== NULL
))
601 fprintf(stderr
, Name
": ARRAY line %s has no identity information.\n", mis
.devname
);
603 mi
= malloc(sizeof(*mi
));
605 mi
->devname
= mis
.devname
? strdup(mis
.devname
) : NULL
;
612 static char *alert_email
= NULL
;
613 void mailline(char *line
)
617 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
618 if (alert_email
== NULL
)
619 alert_email
= strdup(w
);
621 fprintf(stderr
, Name
": excess address on MAIL line: %s - ignored\n",
626 static char *alert_mail_from
= NULL
;
627 void mailfromline(char *line
)
631 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
632 if (alert_mail_from
== NULL
)
633 alert_mail_from
= strdup(w
);
637 if (xasprintf(&t
, "%s %s", alert_mail_from
, w
) > 0) {
638 free(alert_mail_from
);
646 static char *alert_program
= NULL
;
647 void programline(char *line
)
651 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
652 if (alert_program
== NULL
)
653 alert_program
= strdup(w
);
655 fprintf(stderr
, Name
": excess program on PROGRAM line: %s - ignored\n",
660 static char *home_host
= NULL
;
661 static int require_homehost
= 1;
662 void homehostline(char *line
)
666 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
667 if (strcasecmp(w
, "<ignore>")==0)
668 require_homehost
= 0;
669 else if (home_host
== NULL
)
670 home_host
= strdup(w
);
672 fprintf(stderr
, Name
": excess host name on HOMEHOST line: %s - ignored\n",
677 static char *auto_options
= NULL
;
678 void autoline(char *line
)
681 fprintf(stderr
, Name
": AUTO line may only be give once."
682 " Subsequent lines ignored\n");
690 static char *conffile
= NULL
;
691 void set_conffile(char *file
)
696 void load_conffile(void)
702 if (conffile
== NULL
)
703 conffile
= DefaultConfFile
;
705 if (strcmp(conffile
, "none") == 0) {
709 if (strcmp(conffile
, "partitions")==0) {
710 char *list
= dl_strdup("DEV");
712 dl_add(list
, dl_strdup("partitions"));
718 f
= fopen(conffile
, "r");
719 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
720 * To allow Debian users to compile from clean source and still
721 * have a working mdadm, we read /etc/mdadm/mdadm.conf
722 * if /etc/mdadm.conf doesn't exist
725 conffile
== DefaultConfFile
) {
726 f
= fopen(DefaultAltConfFile
, "r");
728 conffile
= DefaultAltConfFile
;
734 while ((line
=conf_line(f
))) {
735 switch(match_keyword(line
)) {
761 fprintf(stderr
, Name
": Unknown keyword %s\n", line
);
768 /* printf("got file\n"); */
771 char *conf_get_mailaddr(void)
777 char *conf_get_mailfrom(void)
780 return alert_mail_from
;
783 char *conf_get_program(void)
786 return alert_program
;
789 char *conf_get_homehost(int *require_homehostp
)
792 if (require_homehostp
)
793 *require_homehostp
= require_homehost
;
797 struct createinfo
*conf_get_create_info(void)
803 mddev_ident_t
conf_get_ident(char *dev
)
808 while (dev
&& rv
&& (rv
->devname
== NULL
809 || !devname_matches(dev
, rv
->devname
)))
814 static void append_dlist(mddev_dev_t
*dlp
, mddev_dev_t list
)
821 mddev_dev_t
conf_get_devs()
826 static mddev_dev_t dlist
= NULL
;
830 mddev_dev_t t
= dlist
;
838 if (cdevlist
== NULL
) {
839 /* default to 'partitions' and 'containers' */
840 dlist
= load_partitions();
841 append_dlist(&dlist
, load_containers());
844 for (cd
=cdevlist
; cd
; cd
=cd
->next
) {
845 if (strcasecmp(cd
->name
, "partitions")==0)
846 append_dlist(&dlist
, load_partitions());
847 else if (strcasecmp(cd
->name
, "containers")==0)
848 append_dlist(&dlist
, load_containers());
850 glob(cd
->name
, flags
, NULL
, &globbuf
);
851 flags
|= GLOB_APPEND
;
854 if (flags
& GLOB_APPEND
) {
855 for (i
=0; i
<globbuf
.gl_pathc
; i
++) {
856 mddev_dev_t t
= malloc(sizeof(*t
));
857 t
->devname
= strdup(globbuf
.gl_pathv
[i
]);
862 /* printf("one dev is %s\n", t->devname);*/
870 int conf_test_dev(char *devname
)
873 if (cdevlist
== NULL
)
874 /* allow anything by default */
876 for (cd
= cdevlist
; cd
; cd
= cd
->next
) {
877 if (strcasecmp(cd
->name
, "partitions") == 0)
879 if (fnmatch(cd
->name
, devname
, FNM_PATHNAME
) == 0)
885 int conf_test_metadata(const char *version
)
887 /* Check if the given metadata version is allowed
888 * to be auto-assembled.
889 * The default is 'yes' but the 'auto' line might over-ride that.
890 * Word in auto_options are processed in order with the first
893 * +version - that version can be assembled
894 * -version - that version cannot be auto-assembled
895 * yes or +all - any other version can be assembled
896 * no or -all - no other version can be assembled.
902 for (w
= dl_next(auto_options
); w
!= auto_options
; w
= dl_next(w
)) {
904 if (strcasecmp(w
, "yes") == 0)
906 if (strcasecmp(w
, "no") == 0)
910 else if (w
[0] == '-')
914 if (strcasecmp(w
+1, "all") == 0)
916 if (strcasecmp(w
+1, version
) == 0)
918 /* allow '0' to match version '0.90'
919 * and 1 or 1.whatever to match version '1.x'
921 if (version
[1] == '.' &&
925 if (version
[1] == '.' && version
[2] == 'x' &&
926 strncmp(w
+1, version
, 2) == 0)
932 int match_oneof(char *devices
, char *devname
)
934 /* check if one of the comma separated patterns in devices
939 while (devices
&& *devices
) {
942 devices
= strchr(devices
, ',');
944 devices
= p
+ strlen(p
);
945 if (devices
-p
< 1024) {
946 strncpy(patn
, p
, devices
-p
);
948 if (fnmatch(patn
, devname
, FNM_PATHNAME
)==0)
957 int devname_matches(char *name
, char *match
)
959 /* See if the given array name matches the
960 * given match from config file.
962 * First strip and /dev/md/ or /dev/, then
963 * see if there might be a numeric match of
967 if (strncmp(name
, "/dev/md/", 8) == 0)
969 else if (strncmp(name
, "/dev/", 5) == 0)
972 if (strncmp(match
, "/dev/md/", 8) == 0)
974 else if (strncmp(match
, "/dev/", 5) == 0)
978 if (strncmp(name
, "md", 2) == 0 &&
981 if (strncmp(match
, "md", 2) == 0 &&
985 return (strcmp(name
, match
) == 0);
988 int conf_name_is_free(char *name
)
990 /* Check if this name is already take by an ARRAY entry in
992 * It can be taken either by a match on devname, name, or
998 for (dev
= mddevlist
; dev
; dev
= dev
->next
) {
1000 if (dev
->devname
&& devname_matches(name
, dev
->devname
))
1002 if (dev
->name
[0] && devname_matches(name
, dev
->name
))
1004 sprintf(nbuf
, "%d", dev
->super_minor
);
1005 if (dev
->super_minor
!= UnSet
&&
1006 devname_matches(name
, nbuf
))
1012 struct mddev_ident_s
*conf_match(struct mdinfo
*info
, struct supertype
*st
)
1014 struct mddev_ident_s
*array_list
, *match
;
1016 char *devname
= NULL
;
1017 array_list
= conf_get_ident(NULL
);
1019 for (; array_list
; array_list
= array_list
->next
) {
1020 if (array_list
->uuid_set
&&
1021 same_uuid(array_list
->uuid
, info
->uuid
, st
->ss
->swapuuid
)
1023 if (verbose
>= 2 && array_list
->devname
)
1024 fprintf(stderr
, Name
1025 ": UUID differs from %s.\n",
1026 array_list
->devname
);
1029 if (array_list
->name
[0] &&
1030 strcasecmp(array_list
->name
, info
->name
) != 0) {
1031 if (verbose
>= 2 && array_list
->devname
)
1032 fprintf(stderr
, Name
1033 ": Name differs from %s.\n",
1034 array_list
->devname
);
1037 if (array_list
->devices
&& devname
&&
1038 !match_oneof(array_list
->devices
, devname
)) {
1039 if (verbose
>= 2 && array_list
->devname
)
1040 fprintf(stderr
, Name
1041 ": Not a listed device for %s.\n",
1042 array_list
->devname
);
1045 if (array_list
->super_minor
!= UnSet
&&
1046 array_list
->super_minor
!= info
->array
.md_minor
) {
1047 if (verbose
>= 2 && array_list
->devname
)
1048 fprintf(stderr
, Name
1049 ": Different super-minor to %s.\n",
1050 array_list
->devname
);
1053 if (!array_list
->uuid_set
&&
1054 !array_list
->name
[0] &&
1055 !array_list
->devices
&&
1056 array_list
->super_minor
== UnSet
) {
1057 if (verbose
>= 2 && array_list
->devname
)
1058 fprintf(stderr
, Name
1059 ": %s doesn't have any identifying information.\n",
1060 array_list
->devname
);
1063 /* FIXME, should I check raid_disks and level too?? */
1067 if (match
->devname
&& array_list
->devname
)
1068 fprintf(stderr
, Name
1069 ": we match both %s and %s - cannot decide which to use.\n",
1070 match
->devname
, array_list
->devname
);
1072 fprintf(stderr
, Name
1073 ": multiple lines in mdadm.conf match\n");