summaryrefslogtreecommitdiffstats
path: root/super-ddf.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2008-07-12 20:27:41 +1000
committerNeil Brown <neilb@suse.de>2008-07-12 20:27:41 +1000
commita35c070bcd05b308120dce5ada15bfbb2d71790c (patch)
treed648b6a69c6891d7439e07c5dde1dcb96952cb0e /super-ddf.c
parentedd8d13c0247b8df5876a94c2d61d74d2cf62c7e (diff)
downloadmdadm-a35c070bcd05b308120dce5ada15bfbb2d71790c.tar.gz
mdadm-a35c070bcd05b308120dce5ada15bfbb2d71790c.tar.xz
mdadm-a35c070bcd05b308120dce5ada15bfbb2d71790c.zip
Remove some noisy printfs.
Diffstat (limited to 'super-ddf.c')
-rw-r--r--super-ddf.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/super-ddf.c b/super-ddf.c
index aefe25e..e5f3fbd 100644
--- a/super-ddf.c
+++ b/super-ddf.c
@@ -2796,7 +2796,7 @@ static void ddf_process_update(struct supertype *st,
int mppe;
int ent;
- printf("Process update %x\n", *magic);
+// printf("Process update %x\n", *magic);
switch (*magic) {
case DDF_PHYS_RECORDS_MAGIC:
@@ -2834,7 +2834,7 @@ static void ddf_process_update(struct supertype *st,
break;
case DDF_VD_CONF_MAGIC:
- printf("len %d %d\n", update->len, ddf->conf_rec_len);
+// printf("len %d %d\n", update->len, ddf->conf_rec_len);
mppe = __be16_to_cpu(ddf->anchor.max_primary_element_entries);
if (update->len != ddf->conf_rec_len * 512)
@@ -2843,7 +2843,7 @@ static void ddf_process_update(struct supertype *st,
for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
if (memcmp(vcl->conf.guid, vc->guid, DDF_GUID_LEN) == 0)
break;
- printf("vcl = %p\n", vcl);
+// printf("vcl = %p\n", vcl);
if (vcl) {
/* An update, just copy the phys_refnum and lba_offset
* fields
@@ -2868,8 +2868,8 @@ static void ddf_process_update(struct supertype *st,
for (dn=0; dn < ddf->mppe ; dn++)
if (vcl->conf.phys_refnum[dn] ==
dl->disk.refnum) {
- printf("dev %d has %p at %d\n",
- dl->pdnum, vcl, vn);
+// printf("dev %d has %p at %d\n",
+// dl->pdnum, vcl, vn);
dl->vlist[vn++] = vcl;
break;
}
@@ -2954,8 +2954,8 @@ static struct mdinfo *ddf_activate_spare(struct active_array *a,
working ++;
}
- printf("ddf_activate: working=%d (%d) level=%d\n", working, a->info.array.raid_disks,
- a->info.array.level);
+// printf("ddf_activate: working=%d (%d) level=%d\n", working, a->info.array.raid_disks,
+// a->info.array.level);
if (working == a->info.array.raid_disks)
return NULL; /* array not degraded */
switch (a->info.array.level) {