NeilBrown: Remove stray debugging printfs

Martin F. Krafft madduck at alioth.debian.org
Fri Jan 29 04:04:14 UTC 2010


Module: mdadm
Branch: upstream
Commit: 080fd00521590cef01e4b6d8268fd998e15698cf
URL:    http://git.debian.org/?p=pkg-mdadm/mdadm.git;a=commit;h=080fd00521590cef01e4b6d8268fd998e15698cf

Author: NeilBrown <neilb at suse.de>
Date:   Thu Jan 28 08:55:18 2010 +1100

Remove stray debugging printfs

These were never supposed to be released, and due
to a type issue they cause compile problems on
some architectures.

Resolves-Debian-Bug: 567167
Signed-off-by: NeilBrown <neilb at suse.de>

---

 Grow.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Grow.c b/Grow.c
index d8d91cb..8d9853b 100644
--- a/Grow.c
+++ b/Grow.c
@@ -1437,21 +1437,23 @@ static void validate(int afd, int bfd, unsigned long long offset)
 
 		lseek64(bfd, offset, 0);
 		if (read(bfd, bbuf, len) != len) {
-			printf("len %llu\n", len);
+			//printf("len %llu\n", len);
 			fail("read first backup failed");
 		}
 		lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
 		if (read(afd, abuf, len) != len)
 			fail("read first from array failed");
 		if (memcmp(bbuf, abuf, len) != 0) {
+			#if 0
 			int i;
 			printf("offset=%llu len=%llu\n",
-			       __le64_to_cpu(bsb2.arraystart)*512, len);
+			       (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
 			for (i=0; i<len; i++)
 				if (bbuf[i] != abuf[i]) {
 					printf("first diff byte %d\n", i);
 					break;
 				}
+			#endif
 			fail("data1 compare failed");
 		}
 	}




More information about the pkg-mdadm-commits mailing list