diff options
author | NeilBrown <neilb@suse.de> | 2014-05-22 09:22:47 +0200 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2014-05-22 09:22:47 +0200 |
commit | 20d430ca81320face2a7753e4969cbda8e559755 (patch) | |
tree | cc07bd09cf267133fb0f284ddd57055600d15d8c /super-ddf.c | |
parent | install: use BINDIR consistently to locate mdadm and mdmon (diff) | |
download | mdadm-20d430ca81320face2a7753e4969cbda8e559755.tar.xz mdadm-20d430ca81320face2a7753e4969cbda8e559755.zip |
DDF: remove "BVD xx is missing".
This can happen in normal cases during incremental assembly so
printing an error message is confusing.
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'super-ddf.c')
-rw-r--r-- | super-ddf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/super-ddf.c b/super-ddf.c index 64893e07..8c8e886c 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -3727,7 +3727,7 @@ static int check_secondary(const struct vcl *vc) } for (i = 0; i < conf->sec_elmnt_count; i++) { if (!__was_sec_seen(i)) { - pr_err("BVD %d is missing\n", i); + /* pr_err("BVD %d is missing\n", i); */ return -1; } } |