conditionally remove map_dev from find_free_devnum

map_dev can be slow so it is best to not call it when
not necessary.
The final test in "find_free_devnum" is not relevant when
udev is being used, so remove the test in that case.

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2013-01-07 10:17:04 +11:00
parent 6d388a8816
commit 06d2ffc3e2
4 changed files with 23 additions and 8 deletions

13
lib.c
View File

@ -390,3 +390,16 @@ void print_escape(char *str)
}
}
}
int use_udev(void)
{
static int use = -1;
struct stat stb;
if (use < 0) {
use = ((stat("/dev/.udev", &stb) == 0
|| stat("/run/udev", &stb) == 0)
&& check_env("MDADM_NO_UDEV") == 0);
}
return use;
}

View File

@ -1217,6 +1217,7 @@ extern char *conf_line(FILE *file);
extern char *conf_word(FILE *file, int allow_key);
extern void print_quoted(char *str);
extern void print_escape(char *str);
extern int use_udev(void);
extern int conf_name_is_free(char *name);
extern int conf_verify_devnames(struct mddev_ident *array_list);
extern int devname_matches(char *name, char *match);

View File

@ -330,8 +330,7 @@ int create_mddev(char *dev, char *name, int autof, int trustworthy,
* If we cannot detect udev, we need to make
* devices and links ourselves.
*/
if ((stat("/dev/.udev", &stb) != 0 && stat("/run/udev", &stb) != 0) ||
check_env("MDADM_NO_UDEV")) {
if (!use_udev()) {
/* Make sure 'devname' exists and 'chosen' is a symlink to it */
if (lstat(devname, &stb) == 0) {
/* Must be the correct device, else error */

14
util.c
View File

@ -839,7 +839,6 @@ int find_free_devnum(int use_partitions)
int devnum;
for (devnum = 127; devnum != 128;
devnum = devnum ? devnum-1 : (1<<20)-1) {
char *dn;
int _devnum;
char nbuf[50];
@ -849,11 +848,14 @@ int find_free_devnum(int use_partitions)
sprintf(nbuf, "%s%d", use_partitions?"mdp":"md", devnum);
if (!conf_name_is_free(nbuf))
continue;
/* make sure it is new to /dev too, at least as a
* non-standard */
dn = map_dev(dev2major(_devnum), dev2minor(_devnum), 0);
if (dn && ! is_standard(dn, NULL))
continue;
if (!use_udev()) {
/* make sure it is new to /dev too, at least as a
* non-standard */
char *dn = map_dev(dev2major(_devnum),
dev2minor(_devnum), 0);
if (dn && ! is_standard(dn, NULL))
continue;
}
break;
}
if (devnum == 128)