aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2004-03-13 02:58:31 +0000
committerdancer <dancer>2004-03-13 02:58:31 +0000
commit7893ec7ca442dfc7cd58271e2be594e2c6c5a414 (patch)
tree6f15a9e0ebf1555cbaa4deca95d25179586fddd1
parente4cf518cbd319f9efd49d493f564aa15cef2ffab (diff)
downloadpbuilder-7893ec7ca442dfc7cd58271e2be594e2c6c5a414.tar
pbuilder-7893ec7ca442dfc7cd58271e2be594e2c6c5a414.tar.gz
update testsuite and verify that it works.
-rw-r--r--ChangeLog12
-rw-r--r--Documentation/pbuilder-doc.xml8
-rw-r--r--Makefile5
-rw-r--r--debian/changelog6
-rw-r--r--examples/E50-libc2.3.2.ds1-11-workaround9
-rw-r--r--pbuilder.89
-rw-r--r--testsuite/normal/iostat3040
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sarge.log272
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sid.log260
-rw-r--r--testsuite/normal/pbuilder-create-sarge.log495
-rw-r--r--testsuite/normal/pbuilder-create-sid.log523
-rw-r--r--testsuite/normal/pbuilder-execute-sarge.log2
-rw-r--r--testsuite/normal/pbuilder-execute-sid.log2
-rw-r--r--testsuite/normal/pdebuild-internal-sarge.log262
-rw-r--r--testsuite/normal/pdebuild-internal-sid.log247
-rw-r--r--testsuite/normal/pdebuild-normal-sarge.log289
-rw-r--r--testsuite/normal/pdebuild-normal-sid.log276
-rw-r--r--testsuite/normal/vmstat1547
-rw-r--r--testsuite/run-test.log10
-rwxr-xr-xtestsuite/run-test.sh23
20 files changed, 3876 insertions, 3421 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f3a068..7470d9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2004-03-13 Junichi Uekawa <dancer@debian.org>
+
+ * testsuite/run-test.sh: run-test changed to create log.
+ Add libc6workaround for now.
+ -- after some testing, libc6workaround is not really required. Strange.
+
+ * Makefile: install
+
+ * examples/E50-libc2.3.2.ds1-11-workaround: libc6 workaround.
+
+ * Documentation/pbuilder-doc.xml: Try to update the docs.
+
2004-02-28 Junichi Uekawa <dancer@debian.org>
* Makefile (install): install F90chrootmemo
diff --git a/Documentation/pbuilder-doc.xml b/Documentation/pbuilder-doc.xml
index f333887..6319006 100644
--- a/Documentation/pbuilder-doc.xml
+++ b/Documentation/pbuilder-doc.xml
@@ -178,20 +178,20 @@
</para>
<para>
There is a slightly different mode of operation available
- to pdebuild since version 0.97. pdebuild usually runs <command>debian/rules clean</command> outside of chroot, however, it is possible to change the behavior to run it inside chroot with <command><option>--use-pdebuild-internal</option></command>.
+ in pdebuild since version 0.97. pdebuild usually runs <command>debian/rules clean</command> outside of chroot, however, it is possible to change the behavior to run it inside chroot with <command><option>--use-pdebuild-internal</option></command>.
It will try to bind mount the working directory inside chroot,
and run <command>dpkg-buildpackage</command> inside.
It has the following characteristics, and thus cannot be made default.
</para>
<itemizedlist>
<listitem>
- <para>The working directory is modified from inside chroot</para>
+ <para>The working directory is modified from inside chroot.</para>
</listitem>
<listitem>
<para>Building with pdebuild does not guarantee that it works with pbuilder</para>
</listitem>
<listitem>
- <para>If making source package fails, the chroot session is wasted</para>
+ <para>If making source package fails, the session using the chroot is wasted (chroot creation is takes a bit of time).</para>
</listitem>
<listitem>
<para>Does not work in the same manner as it used to, such as --buildresult does not have an effect</para>
@@ -841,7 +841,7 @@ read
usual user-mode-linux overhead for system calls. It is more friendly to the hard drive.
</para>
</sect1>
- <sect1>
+ <sect1 id="chrootmemo">
<title>Creating a memo of your chroot</title>
<para>
You may want a sign that you are inside a chroot, when
diff --git a/Makefile b/Makefile
index d403888..355d0cd 100644
--- a/Makefile
+++ b/Makefile
@@ -78,6 +78,11 @@ install:
$(INSTALL_EXECUTABLE) examples/F90chrootmemo $(DESTDIR)/usr/share/doc/pbuilder/examples
$(INSTALL_EXECUTABLE) examples/execute_installtest.sh $(DESTDIR)/usr/share/doc/pbuilder/examples
$(INSTALL_EXECUTABLE) examples/execute_paramtest.sh $(DESTDIR)/usr/share/doc/pbuilder/examples
+
+ # install workaround for libc6 -- 2004-03-13
+ $(INSTALL_DIRECTORY) $(DESTDIR)/usr/share/doc/pbuilder/examples/libc6workaround
+ $(INSTALL_EXECUTABLE) examples/E50-libc2.3.2.ds1-11-workaround $(DESTDIR)/usr/share/doc/pbuilder/examples/libc6workaround
+
cd pbuildd; make install DESTDIR=$(DESTDIR)
cd Documentation; make install DESTDIR=$(DESTDIR)
diff --git a/debian/changelog b/debian/changelog
index 38370a8..7701c3c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pbuilder (0.101) UNRELEASED; urgency=low
+
+ * Update documentation, minor fix in documentation.
+
+ -- Junichi Uekawa <dancer@debian.org> Sat, 13 Mar 2004 01:38:31 +0900
+
pbuilder (0.100) unstable; urgency=low
* Bug fix: "manual page typos", thanks to Matt Kraai (Closes: #233179).
diff --git a/examples/E50-libc2.3.2.ds1-11-workaround b/examples/E50-libc2.3.2.ds1-11-workaround
new file mode 100644
index 0000000..350e79a
--- /dev/null
+++ b/examples/E50-libc2.3.2.ds1-11-workaround
@@ -0,0 +1,9 @@
+#!/bin/sh
+# work around libc6 postinst which mounts /sys etc.
+set +e
+umount /sys
+umount /proc/bus/usb
+umount /dev/shm
+
+exit 0
+
diff --git a/pbuilder.8 b/pbuilder.8
index 0ca95cb..0ba43d4 100644
--- a/pbuilder.8
+++ b/pbuilder.8
@@ -279,8 +279,13 @@ Also useful for calling
.B "apt-get update"
.B "E<digit><digit><whatever-else-you-want>"
-is executed after pbuilder update and pbuilder create
-terminates, before creating the tarball.
+is executed after
+.B "pbuilder update"
+ and
+.B "pbuilder create"
+finishes apt-get work with the chroot,
+before umounting kernel file systems (/proc) and
+creating the tarball from the chroot.
.B "F<digit><digit><whatever-else-you-want>"
is executed just before user logs in, or
diff --git a/testsuite/normal/iostat b/testsuite/normal/iostat
index 285c95f..856c6b6 100644
--- a/testsuite/normal/iostat
+++ b/testsuite/normal/iostat
@@ -1,2942 +1,3274 @@
-Linux 2.6.1 (atoron) 01/19/04
+Linux 2.6.3 (atoron) 03/13/04
-Time: 08:33:38
+Time: 11:40:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.17 13.58 6.92 3.29 172.88 135.28 86.44 67.64 30.17 0.69 67.54 4.60 4.70
+hda 0.25 49.06 6.64 6.79 169.12 447.30 84.56 223.65 45.91 1.03 76.87 2.81 3.77
-Time: 08:33:39
+Time: 11:40:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.99 31.68 2.97 491.09 31.68 245.54 15.84 15.09 0.24 7.03 5.77 20.00
+hda 2.00 0.00 48.00 2.00 1272.00 8.00 636.00 4.00 25.60 0.60 13.04 6.36 31.80
-Time: 08:33:40
+Time: 11:40:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8.08 0.00 5.05 0.00 105.05 0.00 52.53 20.80 0.00 0.20 0.20 0.10
+hda 0.00 0.00 1.98 0.00 55.45 0.00 27.72 0.00 28.00 0.03 13.50 7.50 1.49
-Time: 08:33:41
-Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.95 0.00 39.60 0.00 19.80 0.00 8.00 0.06 12.80 6.20 3.07
-
-Time: 08:33:42
+Time: 11:40:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:43
+Time: 11:40:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 32.69 0.00 769.23 0.00 384.62 0.00 23.53 0.21 6.32 2.94 9.62
+hda 0.99 0.00 14.85 0.00 277.23 0.00 138.61 0.00 18.67 0.19 12.87 4.60 6.83
-Time: 08:33:44
+Time: 11:40:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2531.37 64.71 91.18 2094.12 20980.39 1047.06 10490.20 148.03 17.60 112.91 3.94 61.37
+hda 0.00 12.00 8.00 5.00 64.00 136.00 32.00 68.00 15.38 0.07 5.23 5.23 6.80
-Time: 08:33:45
+Time: 11:40:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 35.35 0.00 126.26 0.00 1357.58 0.00 678.79 10.75 1.26 9.94 0.20 2.53
-
-Time: 08:33:46
-Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1914.15 2.83 93.40 30.19 16060.38 15.09 8030.19 167.22 12.07 125.43 3.53 33.96
-Time: 08:33:47
+Time: 11:40:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:48
+Time: 11:40:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.00 0.00 88.00 0.00 44.00 0.00 22.00 0.03 8.50 4.25 1.70
+hda 0.00 0.00 1.00 0.00 16.00 0.00 8.00 0.00 16.00 0.01 11.00 11.00 1.10
-Time: 08:33:49
+Time: 11:40:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:50
+Time: 11:40:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.96 2.94 6.86 39.22 70.59 19.61 35.29 11.20 0.08 7.90 2.70 2.65
+hda 1.00 1.00 7.00 5.00 160.00 48.00 80.00 24.00 17.33 0.05 4.33 4.33 5.20
-Time: 08:33:51
+Time: 11:40:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 6.00 0.00 64.00 0.00 32.00 0.00 10.67 0.03 4.17 3.17 1.90
+hda 0.00 1203.96 0.00 41.58 0.00 9964.36 0.00 4982.18 239.62 1.64 39.45 2.29 9.50
-Time: 08:33:52
+Time: 11:40:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 10.00 0.00 280.00 0.00 140.00 0.00 28.00 0.07 7.50 5.50 5.50
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:53
+Time: 11:40:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:54
+Time: 11:40:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.02 8.00 8.00 1.60
-Time: 08:33:55
+Time: 11:40:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 74.75 0.00 17.17 0.00 735.35 0.00 367.68 42.82 0.04 2.06 0.29 0.51
+hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.00 0.00 0.00
-Time: 08:33:56
+Time: 11:40:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.98 0.00 23.76 0.00 11.88 0.00 12.00 0.04 19.00 9.50 1.88
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:57
+Time: 11:40:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 9.18 0.00 81.63 0.00 40.82 0.00 8.89 0.05 5.11 4.89 4.49
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:58
+Time: 11:40:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:33:59
+Time: 11:40:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 7.07 0.00 80.81 0.00 40.40 0.00 11.43 0.07 9.57 9.00 6.36
+hda 0.00 10.68 0.00 3.88 0.00 116.50 0.00 58.25 30.00 0.00 0.25 0.25 0.10
-Time: 08:34:00
+Time: 11:40:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 48.04 0.00 22.55 0.00 564.71 0.00 282.35 25.04 0.05 2.26 0.26 0.59
+hda 0.00 3.77 0.00 4.72 0.00 67.92 0.00 33.96 14.40 0.00 0.60 0.40 0.19
-Time: 08:34:01
+Time: 11:41:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 540.00 2.00 24.00 24.00 4512.00 12.00 2256.00 174.46 0.32 12.27 1.96 5.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:02
+Time: 11:41:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 15.00 0.00 120.00 0.00 60.00 0.00 8.00 0.06 3.67 2.73 4.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:03
+Time: 11:41:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 29.00 0.00 328.00 0.00 164.00 0.00 11.31 0.13 4.62 2.62 7.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:04
+Time: 11:41:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.02 0.00 16.33 0.00 8.16 0.00 16.00 0.01 5.00 5.00 0.51
+hda 0.00 0.00 5.00 0.00 40.00 0.00 20.00 0.00 8.00 0.04 7.40 7.40 3.70
-Time: 08:34:05
+Time: 11:41:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 16.83 0.00 6.93 0.00 190.10 0.00 95.05 27.43 0.00 0.14 0.14 0.10
+hda 0.00 726.47 0.00 37.25 0.00 6109.80 0.00 3054.90 164.00 1.00 26.87 2.63 9.80
-Time: 08:34:06
+Time: 11:41:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 533.66 0.00 29.70 0.00 4506.93 0.00 2253.47 151.73 0.55 18.37 1.23 3.66
+hda 9.18 1.02 29.59 5.10 946.94 48.98 473.47 24.49 28.71 0.31 8.56 5.12 17.76
-Time: 08:34:07
+Time: 11:41:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 12.12 0.00 4.04 10.10 121.21 80.81 60.61 40.40 14.29 0.02 2.07 1.00 1.41
-Time: 08:34:08
+Time: 11:41:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:09
+Time: 11:41:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:10
+Time: 11:41:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8.00 1.00 43.00 8.00 416.00 4.00 208.00 9.64 0.14 3.11 0.48 2.10
+hda 0.00 629.70 0.00 30.69 0.00 5283.17 0.00 2641.58 172.13 0.49 16.03 2.10 6.44
-Time: 08:34:11
+Time: 11:41:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 7.07 0.00 6.06 0.00 105.05 0.00 52.53 17.33 0.00 0.17 0.17 0.10
-Time: 08:34:12
+Time: 11:41:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1002.97 0.00 42.57 0.00 8364.36 0.00 4182.18 196.47 1.78 41.88 2.49 10.59
+hda 0.00 1.00 0.00 44.00 0.00 360.00 0.00 180.00 8.18 0.18 4.00 0.18 0.80
-Time: 08:34:13
+Time: 11:41:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:14
+Time: 11:41:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:15
+Time: 11:41:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3.96 0.00 4.95 0.00 71.29 0.00 35.64 14.40 0.00 0.20 0.20 0.10
+hda 0.00 633.33 0.00 30.30 0.00 5309.09 0.00 2654.55 175.20 0.45 14.80 1.17 3.54
-Time: 08:34:16
+Time: 11:41:15
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 3.92 0.00 4.90 0.00 70.59 0.00 35.29 14.40 0.00 0.20 0.20 0.10
+
+Time: 11:41:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:17
+Time: 11:41:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 515.15 0.00 28.28 0.00 4347.47 0.00 2173.74 153.71 0.33 11.71 1.21 3.43
+hda 0.00 0.00 4.00 0.00 32.00 0.00 16.00 0.00 8.00 0.03 7.50 7.50 3.00
-Time: 08:34:18
+Time: 11:41:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 9.00 9.00 0.89
+hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 11.00 11.00 1.09
-Time: 08:34:19
+Time: 11:41:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 2.02 0.00 16.16 0.00 8.08 0.00 8.00 0.01 4.00 4.00 0.81
-Time: 08:34:20
+Time: 11:41:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.00 0.00 0.00
+hda 0.00 716.83 4.95 39.60 55.45 6051.49 27.72 3025.74 137.07 0.76 16.96 2.16 9.60
-Time: 08:34:21
+Time: 11:41:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:22
+Time: 11:41:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 382.00 0.00 21.00 0.00 3224.00 0.00 1612.00 153.52 0.11 5.43 0.76 1.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:23
+Time: 11:41:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 12.00 12.00 1.19
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:24
+Time: 11:41:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.01 0.00 8.08 0.00 4.04 0.00 8.00 0.00 1.00 1.00 0.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:25
+Time: 11:41:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 1.00 5.00 8.00 48.00 4.00 24.00 9.33 0.00 0.00 0.00 0.00
+hda 0.00 469.00 0.00 31.00 0.00 4000.00 0.00 2000.00 129.03 0.26 8.45 0.90 2.80
-Time: 08:34:26
+Time: 11:41:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:27
+Time: 11:41:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 397.03 0.00 21.78 0.00 3350.50 0.00 1675.25 153.82 0.15 6.73 0.77 1.68
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:28
+Time: 11:41:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:29
+Time: 11:41:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:30
+Time: 11:41:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4.95 0.00 3.96 0.00 71.29 0.00 35.64 18.00 0.00 0.25 0.25 0.10
+hda 0.00 231.00 0.00 16.00 0.00 1976.00 0.00 988.00 123.50 0.04 2.62 0.56 0.90
-Time: 08:34:31
+Time: 11:41:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:32
+Time: 11:41:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:33
+Time: 11:41:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 873.74 0.00 34.34 0.00 7264.65 0.00 3632.32 211.53 0.88 25.62 1.74 5.96
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:34
+Time: 11:41:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:35
+Time: 11:41:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.99 0.00 4.95 0.00 47.52 0.00 23.76 9.60 0.00 0.00 0.00 0.00
+hda 0.00 735.00 0.00 16.00 0.00 6104.00 0.00 3052.00 381.50 0.40 6.12 1.62 2.60
-Time: 08:34:36
+Time: 11:41:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 4.00 0.00 14.00 0.00 48.00 0.00 24.00 3.43 0.19 34.93 2.07 2.90
-Time: 08:34:37
+Time: 11:41:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:38
+Time: 11:41:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 486.87 0.00 28.28 0.00 4121.21 0.00 2060.61 145.71 0.28 9.96 1.82 5.15
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:39
+Time: 11:41:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:40
+Time: 11:41:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2.00 0.00 55.00 0.00 464.00 0.00 232.00 8.44 0.20 3.69 0.16 0.90
+hda 0.00 2.02 0.00 4.04 0.00 48.48 0.00 24.24 12.00 0.00 0.00 0.00 0.00
-Time: 08:34:41
+Time: 11:41:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 660.00 0.00 36.00 0.00 5568.00 0.00 2784.00 154.67 0.56 15.64 1.86 6.70
-Time: 08:34:42
+Time: 11:41:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:43
+Time: 11:41:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 247.52 0.99 19.80 7.92 2138.61 3.96 1069.31 103.24 0.10 4.90 0.95 1.98
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:44
+Time: 11:41:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:45
+Time: 11:41:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.01 0.00 11.11 0.00 96.97 0.00 48.48 8.73 0.01 0.64 0.18 0.20
+hda 0.00 2.02 0.00 4.04 0.00 48.48 0.00 24.24 12.00 0.00 0.00 0.00 0.00
-Time: 08:34:46
+Time: 11:41:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 270.59 0.00 64.71 0.00 2682.35 0.00 1341.18 41.45 0.30 4.56 0.32 2.06
-Time: 08:34:47
+Time: 11:41:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:48
+Time: 11:41:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 553.47 0.00 22.77 0.00 4609.90 0.00 2304.95 202.43 0.36 15.87 1.70 3.86
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:49
+Time: 11:41:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:50
+Time: 11:41:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4.04 0.00 5.05 0.00 72.73 0.00 36.36 14.40 0.00 0.20 0.20 0.10
+hda 0.00 4.00 0.00 4.00 0.00 64.00 0.00 32.00 16.00 0.00 0.25 0.25 0.10
-Time: 08:34:51
+Time: 11:41:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 574.00 0.00 24.00 0.00 4784.00 0.00 2392.00 199.33 0.33 13.79 1.71 4.10
-Time: 08:34:52
+Time: 11:41:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:53
+Time: 11:41:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 366.00 0.00 22.00 0.00 3104.00 0.00 1552.00 141.09 0.13 5.91 0.64 1.40
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:54
+Time: 11:41:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:55
+Time: 11:41:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3.92 0.00 4.90 0.00 70.59 0.00 35.29 14.40 0.00 0.20 0.20 0.10
+hda 0.00 1.01 0.00 5.05 0.00 48.48 0.00 24.24 9.60 0.00 0.00 0.00 0.00
-Time: 08:34:56
+Time: 11:41:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 137.62 0.00 8.91 0.00 1172.28 0.00 586.14 131.56 0.02 2.56 0.67 0.59
-Time: 08:34:57
+Time: 11:41:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:58
+Time: 11:41:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:34:59
+Time: 11:41:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 492.93 0.00 27.27 0.00 4161.62 0.00 2080.81 152.59 0.24 8.81 1.00 2.73
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:00
+Time: 11:42:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.99 0.00 4.95 0.00 47.52 0.00 23.76 9.60 0.00 0.00 0.00 0.00
-Time: 08:35:01
+Time: 11:42:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 569.00 0.00 27.00 0.00 4768.00 0.00 2384.00 176.59 0.39 14.30 1.48 4.00
-Time: 08:35:02
+Time: 11:42:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.96 383.33 24.51 41.18 423.53 3396.08 211.76 1698.04 58.15 1.27 19.27 4.36 28.63
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:03
+Time: 11:42:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:04
+Time: 11:42:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:05
+Time: 11:42:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 72.00 0.00 15.00 0.00 704.00 0.00 352.00 46.93 0.03 2.07 0.33 0.50
+hda 0.00 7.00 0.00 5.00 0.00 96.00 0.00 48.00 19.20 0.00 0.20 0.20 0.10
-Time: 08:35:06
+Time: 11:42:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 1.98 0.00 7.92 0.00 3.96 4.00 0.00 0.50 0.00 0.00
+hda 0.00 507.48 0.00 24.30 0.00 4254.21 0.00 2127.10 175.08 0.41 16.69 1.92 4.67
-Time: 08:35:07
+Time: 11:42:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:08
+Time: 11:42:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 406.00 0.00 22.00 0.00 3424.00 0.00 1712.00 155.64 0.20 9.14 0.95 2.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:09
+Time: 11:42:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:10
+Time: 11:42:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.98 0.00 4.90 0.00 47.06 0.00 23.53 9.60 0.00 0.00 0.00 0.00
+hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.00 0.00 0.00
-Time: 08:35:11
+Time: 11:42:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:12
+Time: 11:42:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 236.36 0.00 14.14 0.00 2004.04 0.00 1002.02 141.71 0.06 4.07 0.71 1.01
-Time: 08:35:13
+Time: 11:42:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 396.00 0.00 26.00 0.00 3376.00 0.00 1688.00 129.85 0.20 7.50 1.00 2.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:14
+Time: 11:42:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:15
+Time: 11:42:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2.00 0.00 60.00 0.00 496.00 0.00 248.00 8.27 0.27 4.45 0.18 1.10
+hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.00 0.00 0.00
-Time: 08:35:16
+Time: 11:42:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.98 0.99 15.84 7.92 7.92 3.96 8.00 0.02 6.00 6.00 1.78
+hda 0.99 0.00 8.91 3.96 546.53 31.68 273.27 15.84 44.92 0.10 7.77 5.62 7.23
-Time: 08:35:17
+Time: 11:42:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 854.55 0.00 633.33 0.00 12953.54 0.00 6476.77 20.45 85.19 96.82 0.98 61.82
+hda 0.00 4382.00 0.00 304.00 0.00 37632.00 0.00 18816.00 123.79 96.66 290.29 2.92 88.90
-Time: 08:35:18
+Time: 11:42:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 733.33 0.00 692.93 0.00 11482.83 0.00 5741.41 16.57 145.54 186.85 1.46 101.11
+hda 0.00 5685.00 4.00 212.00 56.00 48216.00 28.00 24108.00 223.48 68.96 170.72 2.89 62.40
-Time: 08:35:19
+Time: 11:42:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 614.71 0.00 570.59 0.00 9427.45 0.00 4713.73 16.52 138.81 246.81 1.72 98.14
+hda 0.00 1063.00 0.00 534.00 0.00 11776.00 0.00 5888.00 22.05 139.03 312.84 1.87 100.10
-Time: 08:35:20
+Time: 11:42:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 315.15 0.00 732.32 0.00 8509.09 0.00 4254.55 11.62 143.03 174.61 1.38 101.11
+hda 0.99 494.06 2.97 510.89 158.42 7873.27 79.21 3936.63 15.63 42.46 106.57 1.47 75.74
-Time: 08:35:21
+Time: 11:42:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1200.00 0.00 607.00 8.00 14536.00 4.00 7268.00 23.96 142.85 242.12 1.65 100.10
+hda 0.00 1607.07 2.02 181.82 56.57 14311.11 28.28 7155.56 78.15 1.17 6.35 1.99 36.67
-Time: 08:35:22
+Time: 11:42:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4249.49 2.02 561.62 24.24 38521.21 12.12 19260.61 68.39 128.85 199.86 1.79 101.11
+hda 0.00 3612.00 0.00 142.00 0.00 30048.00 0.00 15024.00 211.61 28.92 197.99 2.86 40.60
-Time: 08:35:23
+Time: 11:42:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 300.00 0.98 561.76 15.69 6125.49 7.84 3062.75 10.91 87.69 203.64 1.74 97.65
+hda 0.00 1739.00 1.00 175.00 8.00 15304.00 4.00 7652.00 87.00 0.73 8.73 1.34 23.50
-Time: 08:35:24
+Time: 11:42:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.02 0.00 274.75 0.00 3733.33 0.00 1866.67 0.00 13.59 1.67 6.36 2.51 68.89
+hda 0.00 2714.85 0.99 217.82 7.92 23461.39 3.96 11730.69 107.26 7.00 31.99 1.94 42.38
-Time: 08:35:25
+Time: 11:42:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1251.49 135.64 108.91 1639.60 11081.19 819.80 5540.59 52.02 1.36 4.54 1.83 44.65
+hda 0.00 3112.00 0.00 361.00 0.00 27776.00 0.00 13888.00 76.94 1.18 3.27 0.94 33.80
-Time: 08:35:26
+Time: 11:42:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 274.26 37.62 66.34 451.49 2526.73 225.74 1263.37 28.65 0.63 8.43 2.08 21.58
+hda 0.00 3411.00 0.00 137.00 0.00 29520.00 0.00 14760.00 215.47 4.21 2.55 1.07 14.60
-Time: 08:35:27
+Time: 11:42:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 4559.00 83.00 189.00 1840.00 38104.00 920.00 19052.00 146.85 23.20 85.12 2.26 61.60
+hda 0.00 2628.00 0.00 351.00 0.00 22696.00 0.00 11348.00 64.66 33.29 105.83 2.16 75.70
-Time: 08:35:28
+Time: 11:42:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 614.95 12.15 112.15 164.49 5704.67 82.24 2852.34 47.22 0.54 4.70 2.51 31.21
+hda 0.00 3084.00 0.00 383.00 0.00 27744.00 0.00 13872.00 72.44 1.62 4.21 1.14 43.70
-Time: 08:35:29
+Time: 11:42:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2255.45 0.00 148.51 0.00 19358.42 0.00 9679.21 130.35 5.21 21.86 1.90 28.22
+hda 1.00 2221.00 2.00 363.00 128.00 20672.00 64.00 10336.00 56.99 1.46 4.00 1.22 44.50
-Time: 08:35:30
+Time: 11:42:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1416.00 3.00 203.00 32.00 12824.00 16.00 6412.00 62.41 0.84 13.71 1.97 40.60
+hda 0.00 1116.00 0.00 443.00 0.00 12464.00 0.00 6232.00 28.14 0.69 1.57 1.34 59.50
-Time: 08:35:31
+Time: 11:42:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2545.00 0.00 304.00 0.00 22800.00 0.00 11400.00 75.00 1.36 4.47 1.66 50.50
+hda 0.00 686.87 0.00 325.25 0.00 8096.97 0.00 4048.48 24.89 0.61 1.87 0.90 29.39
-Time: 08:35:32
+Time: 11:42:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3632.00 0.00 231.00 0.00 31904.00 0.00 15952.00 138.11 22.00 24.09 0.85 19.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:33
+Time: 11:42:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1671.00 0.00 369.00 0.00 15312.00 0.00 7656.00 41.50 24.57 111.13 1.80 66.60
+hda 0.00 482.00 0.00 185.00 0.00 5368.00 0.00 2684.00 29.02 0.64 3.43 0.87 16.10
-Time: 08:35:34
+Time: 11:42:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2017.82 21.78 268.32 182.18 18289.11 91.09 9144.55 63.67 1.13 3.87 2.08 60.30
+hda 0.00 667.68 0.00 220.20 0.00 7103.03 0.00 3551.52 32.26 0.30 1.36 1.31 28.89
-Time: 08:35:35
+Time: 11:42:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 2657.00 6.00 271.00 144.00 23424.00 72.00 11712.00 85.08 0.77 2.81 1.58 43.70
+hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.20 0.20 0.10
-Time: 08:35:36
+Time: 11:42:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 928.00 30.00 400.00 240.00 10632.00 120.00 5316.00 25.28 0.84 1.95 1.58 67.80
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:37
+Time: 11:42:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 680.20 12.87 308.91 118.81 7928.71 59.41 3964.36 25.01 0.84 2.42 2.01 64.55
+hda 0.00 267.00 0.00 79.00 0.00 2768.00 0.00 1384.00 35.04 0.12 1.47 1.44 11.40
-Time: 08:35:38
+Time: 11:42:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 39.00 126.00 20.00 1064.00 448.00 532.00 224.00 10.36 1.98 14.00 5.49 80.10
+hda 0.00 2567.00 0.00 314.00 0.00 23048.00 0.00 11524.00 73.40 2.33 7.43 1.36 42.80
-Time: 08:35:39
+Time: 11:42:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 34.00 44.00 14.00 448.00 384.00 224.00 192.00 14.34 0.69 11.90 5.40 31.30
+hda 0.00 2689.00 0.00 377.00 0.00 24592.00 0.00 12296.00 65.23 3.16 8.29 0.87 32.80
-Time: 08:35:40
+Time: 11:42:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 34.00 6.00 14.00 56.00 384.00 28.00 192.00 22.00 0.13 6.50 4.25 8.50
+hda 0.00 2014.85 0.00 289.11 0.00 18368.32 0.00 9184.16 63.53 2.76 9.69 1.82 52.57
-Time: 08:35:41
+Time: 11:42:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 351.49 15.84 118.81 142.57 3770.30 71.29 1885.15 29.06 0.32 2.35 2.24 30.10
+hda 0.00 1947.47 0.00 248.48 0.00 17575.76 0.00 8787.88 70.73 3.74 15.03 1.87 46.36
-Time: 08:35:42
+Time: 11:42:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 268.32 34.65 153.47 411.88 3366.34 205.94 1683.17 20.08 0.52 2.82 1.32 24.85
+hda 0.00 1642.57 19.80 253.47 158.42 15160.40 79.21 7580.20 56.06 1.15 4.21 1.69 46.14
-Time: 08:35:43
+Time: 11:42:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 435.64 17.82 175.25 150.50 4910.89 75.25 2455.45 26.22 0.86 4.47 1.51 29.21
+hda 0.00 1682.00 15.00 308.00 120.00 15928.00 60.00 7964.00 49.68 0.89 2.76 1.94 62.80
-Time: 08:35:44
+Time: 11:42:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2773.00 3.00 285.00 24.00 24488.00 12.00 12244.00 85.11 7.93 27.52 1.54 44.30
-Time: 08:35:45
+Time: 11:42:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 695.00 0.00 300.00 0.00 7952.00 0.00 3976.00 26.51 0.37 1.24 0.83 24.80
-Time: 08:35:46
+Time: 11:42:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 236.00 16.00 86.00 128.00 2576.00 64.00 1288.00 26.51 0.22 2.18 1.96 20.00
+hda 0.00 437.00 5.00 187.00 64.00 5000.00 32.00 2500.00 26.38 0.27 1.36 0.95 18.20
-Time: 08:35:47
+Time: 11:42:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.02 2012.24 29.59 207.14 4383.67 17779.59 2191.84 8889.80 93.62 1.68 7.04 2.31 54.80
+hda 0.00 517.82 0.00 178.22 0.00 5560.40 0.00 2780.20 31.20 0.22 1.26 1.07 19.11
-Time: 08:35:48
+Time: 11:42:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 3.92 1751.96 32.35 187.25 3388.24 15490.20 1694.12 7745.10 85.96 2.08 9.50 1.93 42.45
+hda 0.00 803.03 0.00 314.14 0.00 8937.37 0.00 4468.69 28.45 0.45 1.42 1.15 36.06
-Time: 08:35:49
+Time: 11:42:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 5.00 1690.00 36.00 295.00 3712.00 15880.00 1856.00 7940.00 59.19 1.31 3.98 2.01 66.50
+hda 1.98 31.68 4.95 9.90 356.44 332.67 178.22 166.34 46.40 0.04 3.00 2.33 3.47
-Time: 08:35:50
+Time: 11:42:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 2359.00 36.00 198.00 6576.00 20624.00 3288.00 10312.00 116.24 2.73 7.10 2.55 59.60
+hda 0.00 222.77 0.00 57.43 0.00 2241.58 0.00 1120.79 39.03 0.06 1.00 0.86 4.95
-Time: 08:35:51
+Time: 11:42:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 1773.74 18.18 325.25 1761.62 16622.22 880.81 8311.11 53.53 1.60 7.73 1.76 60.51
+hda 0.00 102.02 0.00 296.97 0.00 3886.87 0.00 1943.43 13.09 29.87 40.59 0.96 28.38
-Time: 08:35:52
+Time: 11:42:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2422.77 2.97 300.99 87.13 21790.10 43.56 10895.05 71.97 1.47 4.88 1.59 48.32
+hda 0.00 51.00 0.00 91.00 0.00 584.00 0.00 292.00 6.42 3.51 232.03 1.34 12.20
-Time: 08:35:53
+Time: 11:42:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2853.00 3.00 287.00 136.00 25224.00 68.00 12612.00 87.45 3.96 9.06 1.90 55.00
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:54
+Time: 11:42:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1282.00 16.00 237.00 1064.00 12080.00 532.00 6040.00 51.95 0.93 8.93 1.77 44.80
+hda 0.00 763.37 0.00 188.12 0.00 7643.56 0.00 3821.78 40.63 0.30 1.58 1.43 26.83
-Time: 08:35:55
+Time: 11:42:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 280.00 1.00 111.00 8.00 3120.00 4.00 1560.00 27.93 0.22 1.96 1.63 18.30
+hda 0.00 385.86 0.00 94.95 0.00 3862.63 0.00 1931.31 40.68 0.16 1.67 1.33 12.63
-Time: 08:35:56
+Time: 11:42:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 755.00 0.00 288.00 0.00 8336.00 0.00 4168.00 28.94 0.54 1.89 1.52 43.90
+hda 0.00 459.60 0.00 129.29 0.00 4694.95 0.00 2347.47 36.31 0.17 1.36 1.30 16.77
-Time: 08:35:57
+Time: 11:42:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 394.00 20.00 168.00 248.00 4496.00 124.00 2248.00 25.23 0.49 2.62 2.04 38.30
+hda 0.00 502.97 0.00 84.16 0.00 4697.03 0.00 2348.51 55.81 0.14 1.71 1.11 9.31
-Time: 08:35:58
+Time: 11:42:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 346.53 0.00 518.81 0.00 6978.22 0.00 3489.11 13.45 36.01 69.35 1.10 56.83
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+
+Time: 11:42:59
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:35:59
+Time: 11:43:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 386.87 12.12 112.12 137.37 3991.92 68.69 1995.96 33.24 0.31 2.52 2.17 26.97
+hda 0.00 4.00 0.00 5.00 0.00 72.00 0.00 36.00 14.40 0.00 0.20 0.20 0.10
-Time: 08:36:00
+Time: 11:43:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 577.00 0.00 184.00 0.00 6088.00 0.00 3044.00 33.09 0.40 2.17 1.99 36.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:01
+Time: 11:43:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 206.00 4.00 52.00 96.00 2064.00 48.00 1032.00 38.57 0.15 2.75 1.84 10.30
+hda 0.00 2777.00 0.00 26.00 0.00 23056.00 0.00 11528.00 886.77 4.07 10.58 2.04 5.30
-Time: 08:36:02
+Time: 11:43:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 50.50 11.88 25.74 95.05 617.82 47.52 308.91 18.95 0.10 2.61 2.55 9.60
+hda 0.00 54.55 0.00 82.83 0.00 460.61 0.00 230.30 5.56 9.08 155.83 2.77 22.93
-Time: 08:36:03
+Time: 11:43:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 27.00 23.00 13.00 200.00 328.00 100.00 164.00 14.67 0.12 3.33 3.36 12.10
+hda 0.00 1236.63 0.99 29.70 7.92 10320.79 3.96 5160.40 336.52 1.18 8.55 2.06 6.34
-Time: 08:36:04
+Time: 11:43:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 12.00 47.00 10.00 376.00 184.00 188.00 92.00 9.82 0.24 4.26 4.07 23.20
+hda 0.00 2391.09 2.97 142.57 23.76 20079.21 11.88 10039.60 138.12 7.74 59.48 2.65 38.61
-Time: 08:36:05
+Time: 11:43:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 153.47 56.44 47.52 459.41 1623.76 229.70 811.88 20.04 0.21 2.03 1.90 19.80
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:06
+Time: 11:43:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 479.00 2.00 131.00 16.00 4880.00 8.00 2440.00 36.81 0.28 2.12 1.96 26.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:07
+Time: 11:43:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 615.84 0.00 113.86 0.00 5853.47 0.00 2926.73 51.41 0.27 2.35 1.89 21.49
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:08
+Time: 11:43:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 363.64 0.00 77.78 0.00 3523.23 0.00 1761.62 45.30 0.16 2.09 1.87 14.55
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:09
+Time: 11:43:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 307.00 62.00 96.00 1992.00 3216.00 996.00 1608.00 32.96 1.01 6.42 3.86 61.00
+hda 0.00 873.00 0.00 41.00 0.00 7312.00 0.00 3656.00 178.34 1.05 25.54 1.76 7.20
-Time: 08:36:10
+Time: 11:43:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:11
+Time: 11:43:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:12
+Time: 11:43:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5.00 0.00 5.00 0.00 80.00 0.00 40.00 16.00 0.01 1.60 0.60 0.30
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:13
+Time: 11:43:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2739.60 2.97 115.84 23.76 22843.56 11.88 11421.78 192.47 14.49 121.95 2.66 31.58
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:14
+Time: 11:43:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3588.00 2.00 232.00 16.00 30680.00 8.00 15340.00 131.18 12.36 48.09 1.99 46.60
+hda 0.00 4.00 0.00 6.00 0.00 80.00 0.00 40.00 13.33 0.00 0.00 0.00 0.00
-Time: 08:36:15
+Time: 11:43:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6.06 1.01 19.19 8.08 80.81 4.04 40.40 4.40 0.47 78.75 3.20 6.46
+hda 0.00 944.00 0.00 42.00 0.00 7888.00 0.00 3944.00 187.81 1.46 34.81 2.31 9.70
-Time: 08:36:16
+Time: 11:43:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:17
+Time: 11:43:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2.94 0.00 4.90 0.00 62.75 0.00 31.37 12.80 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:18
+Time: 11:43:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:19
+Time: 11:43:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2.02 0.00 4.04 0.00 48.48 0.00 24.24 12.00 0.00 0.00 0.00 0.00
-Time: 08:36:20
+Time: 11:43:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1297.03 0.00 45.54 0.00 10740.59 0.00 5370.30 235.83 2.01 44.07 2.22 10.10
+hda 0.00 1439.60 0.00 62.38 0.00 12015.84 0.00 6007.92 192.63 3.67 58.86 2.57 16.04
-Time: 08:36:21
+Time: 11:43:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:22
+Time: 11:43:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 13.00 4.00 7.00 32.00 160.00 16.00 80.00 17.45 0.05 4.36 4.36 4.80
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:23
+Time: 11:43:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:36:24
+Time: 11:43:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1.98 0.00 3.96 0.00 47.52 0.00 23.76 12.00 0.00 0.00 0.00 0.00
-Time: 08:36:25
+Time: 11:43:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 680.00 0.00 25.00 0.00 5640.00 0.00 2820.00 225.60 0.41 16.52 1.92 4.80
+hda 0.00 1118.18 0.00 197.98 0.00 10545.45 0.00 5272.73 53.27 16.61 83.91 0.81 16.06
-Time: 08:36:26
+Time: 11:43:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1553.00 0.00 84.00 0.00 13096.00 0.00 6548.00 155.90 4.52 53.81 2.40 20.20
-Time: 08:36:27
+Time: 11:43:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 13.27 5.10 6.12 57.14 155.10 28.57 77.55 18.91 0.04 4.00 4.00 4.49
+hda 0.00 3676.00 1.00 239.00 8.00 31320.00 4.00 15660.00 130.53 24.21 100.87 2.08 49.90
-Time: 08:36:28
+Time: 11:43:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2858.82 0.98 194.12 23.53 24423.53 11.76 12211.76 125.31 32.65 167.36 2.60 50.78
-Time: 08:36:29
+Time: 11:43:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 3461.62 2.02 223.23 16.16 29478.79 8.08 14739.39 130.94 8.93 39.65 1.78 40.10
-Time: 08:36:30
+Time: 11:43:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 661.39 0.99 24.75 7.92 5489.11 3.96 2744.55 213.54 0.36 13.92 1.92 4.95
+hda 1.00 3299.00 9.00 195.00 176.00 27952.00 88.00 13976.00 137.88 17.98 88.13 3.18 64.90
-Time: 08:36:31
+Time: 11:43:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 2.00 1573.00 17.00 275.00 344.00 14800.00 172.00 7400.00 51.86 3.67 12.55 2.48 72.40
-Time: 08:36:32
+Time: 11:43:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 13.00 0.00 8.00 0.00 168.00 0.00 84.00 21.00 0.00 0.25 0.25 0.20
+hda 2.00 293.00 79.00 90.00 864.00 3056.00 432.00 1528.00 23.20 1.08 6.02 5.01 84.70
-Time: 08:36:33
+Time: 11:43:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 29.70 9.90 185.15 87.13 1758.42 43.56 879.21 9.46 3.56 18.23 0.81 15.74
+hda 2.02 0.00 110.10 0.00 1882.83 0.00 941.41 0.00 17.10 0.82 8.06 4.81 52.93
-Time: 08:36:34
+Time: 11:43:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 19.19 0.00 193.94 0.00 96.97 0.00 10.11 0.17 9.26 7.74 14.85
+hda 0.00 521.78 143.56 0.00 1679.21 4530.69 839.60 2265.35 43.26 0.81 4.05 3.92 56.34
-Time: 08:36:35
+Time: 11:43:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 595.28 0.00 21.70 0.00 4935.85 0.00 2467.92 227.48 0.37 17.09 1.91 4.15
+hda 4.00 17.00 85.00 47.00 2000.00 152.00 1000.00 76.00 16.30 2.73 22.34 2.23 29.50
-Time: 08:36:36
+Time: 11:43:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 9.00 0.00 116.00 0.00 3056.00 0.00 1528.00 0.00 26.34 0.62 5.46 3.85 44.70
-Time: 08:36:37
+Time: 11:43:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 24.00 0.00 8.00 0.00 256.00 0.00 128.00 32.00 0.00 0.25 0.25 0.20
+hda 0.00 51.00 74.00 19.00 992.00 560.00 496.00 280.00 16.69 0.20 2.15 1.63 15.20
-Time: 08:36:38
+Time: 11:43:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 3.00 0.00 60.00 0.00 2104.00 0.00 1052.00 0.00 35.07 0.12 2.00 1.22 7.30
-Time: 08:36:39
+Time: 11:43:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2403.00 0.00 18.00 0.00 20016.00 0.00 10008.00 1112.00 0.31 1.56 0.28 0.50
-Time: 08:36:40
+Time: 11:43:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2405.94 11.88 92.08 95.05 20237.62 47.52 10118.81 195.58 5.17 23.73 2.05 21.29
+hda 4.00 12.00 43.00 83.00 792.00 112.00 396.00 56.00 7.17 12.08 98.15 3.11 39.20
-Time: 08:36:41
+Time: 11:43:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3457.58 9.09 182.83 72.73 29276.77 36.36 14638.38 152.93 17.93 58.95 2.47 47.37
+hda 0.00 1.00 14.00 1.00 168.00 16.00 84.00 8.00 12.27 0.04 2.47 2.47 3.70
-Time: 08:36:42
+Time: 11:43:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3114.85 7.92 279.21 110.89 27287.13 55.45 13643.56 95.42 30.15 84.23 2.18 62.67
+hda 1.98 0.00 50.50 0.00 950.50 0.00 475.25 0.00 18.82 0.22 4.18 3.41 17.23
-Time: 08:36:43
+Time: 11:43:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3332.00 8.00 254.00 152.00 28216.00 76.00 14108.00 108.27 8.35 88.48 2.59 67.80
+hda 11.88 0.00 179.21 0.00 10819.80 0.00 5409.90 0.00 60.38 0.51 2.88 2.06 36.83
-Time: 08:36:44
+Time: 11:43:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4770.00 28.00 257.00 984.00 40392.00 492.00 20196.00 145.18 18.52 46.07 2.33 66.30
+hda 0.00 2422.22 96.97 0.00 808.08 20024.24 404.04 10012.12 214.83 0.42 1.39 1.42 13.74
-Time: 08:36:45
+Time: 11:43:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3506.93 11.88 259.41 300.99 29908.91 150.50 14954.46 111.36 5.33 39.84 2.29 62.18
+hda 0.99 0.00 417.82 57.43 4079.21 0.00 2039.60 0.00 8.58 61.40 83.79 2.09 99.11
-Time: 08:36:46
+Time: 11:43:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 401.01 59.60 134.34 800.00 4274.75 400.00 2137.37 26.17 0.88 4.55 3.62 70.30
+hda 0.00 9.00 278.00 24.00 2360.00 88.00 1180.00 44.00 8.11 7.88 99.17 2.62 79.10
-Time: 08:36:47
+Time: 11:43:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 295.05 189.11 0.00 1916.83 2471.29 958.42 1235.64 23.20 0.72 3.40 3.08 58.32
+hda 6.00 0.00 346.00 0.00 5360.00 0.00 2680.00 0.00 15.49 0.56 1.62 1.29 44.80
-Time: 08:36:48
+Time: 11:43:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8.08 157.58 16.16 1777.78 80.81 888.89 40.40 10.70 1.09 6.72 2.92 50.71
+hda 6.00 0.00 334.00 0.00 4832.00 0.00 2416.00 0.00 14.47 0.67 1.99 1.77 59.00
-Time: 08:36:49
+Time: 11:43:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 0.00 134.00 0.00 2624.00 0.00 1312.00 0.00 19.58 0.41 3.00 2.24 30.00
+hda 3.00 2653.00 347.00 7.00 4384.00 21944.00 2192.00 10972.00 74.37 1.15 2.19 1.84 65.10
-Time: 08:36:50
+Time: 11:43:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 0.00 91.09 0.00 1219.80 0.00 609.90 0.00 13.39 0.27 3.03 2.70 24.55
+hda 1.00 10.00 91.00 85.00 1136.00 96.00 568.00 48.00 7.00 27.89 160.64 4.83 85.00
-Time: 08:36:51
+Time: 11:43:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 68.00 97.00 10.00 1296.00 624.00 648.00 312.00 17.94 0.28 2.64 2.31 24.70
+hda 0.00 0.00 240.00 0.00 2728.00 0.00 1364.00 0.00 11.37 0.70 2.89 2.90 69.60
-Time: 08:36:52
+Time: 11:43:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 2425.74 7.92 28.71 166.34 20079.21 83.17 10039.60 552.65 0.84 17.05 3.03 11.09
+hda 0.00 109.09 205.05 7.07 1810.10 929.29 905.05 464.65 12.91 0.75 3.54 3.02 64.14
-Time: 08:36:53
+Time: 11:43:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8.00 46.00 58.00 376.00 80.00 188.00 40.00 4.38 5.05 50.65 2.70 28.10
+hda 0.00 72.28 861.39 10.89 7239.60 665.35 3619.80 332.67 9.06 2.41 2.76 0.95 82.87
-Time: 08:36:54
+Time: 11:43:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 241.41 0.00 2101.01 0.00 1050.51 0.00 8.70 0.42 1.73 1.73 41.72
+hda 1.98 971.29 431.68 2.97 4293.07 8047.52 2146.53 4023.76 28.39 0.78 1.69 1.60 69.50
-Time: 08:36:55
+Time: 11:43:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 142.57 0.00 5235.64 0.00 2617.82 0.00 36.72 0.24 1.69 1.62 23.07
+hda 5.05 7.07 88.89 34.34 2294.95 72.73 1147.47 36.36 19.21 4.66 38.19 5.39 66.46
-Time: 08:36:56
+Time: 11:43:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 220.00 162.00 8.00 2512.00 1824.00 1256.00 912.00 25.51 1.01 5.93 2.93 49.80
+hda 7.92 0.00 92.08 0.00 2764.36 0.00 1382.18 0.00 30.02 0.52 5.69 5.16 47.52
-Time: 08:36:57
+Time: 11:43:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1973.00 353.00 0.00 8744.00 16336.00 4372.00 8168.00 71.05 0.96 1.63 1.61 56.70
+hda 7.00 0.00 122.00 1.00 3328.00 8.00 1664.00 4.00 27.12 0.66 5.40 4.81 59.20
-Time: 08:36:58
+Time: 11:43:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 267.68 36.36 2787.88 0.00 1393.94 0.00 9.17 55.08 72.02 3.33 101.11
+hda 2.00 0.00 137.00 0.00 2760.00 0.00 1380.00 0.00 20.15 0.72 5.28 4.76 65.20
-Time: 08:36:59
+Time: 11:44:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 11.76 228.43 34.31 2541.18 109.80 1270.59 54.90 10.09 8.85 157.69 3.26 85.69
+hda 7.92 1497.03 177.23 3.96 3089.11 12380.20 1544.55 6190.10 85.38 0.79 3.65 3.27 59.21
-Time: 08:37:00
+Time: 11:44:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 310.10 0.00 3830.30 0.00 1915.15 0.00 12.35 0.99 3.20 3.02 93.74
+hda 3.03 27.27 102.02 352.53 2537.37 3571.72 1268.69 1785.86 13.44 49.42 78.57 2.11 96.06
-Time: 08:37:01
+Time: 11:44:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 265.66 0.00 2698.99 0.00 1349.49 0.00 10.16 0.66 2.51 2.44 64.85
+hda 1.98 9.90 78.22 158.42 1528.71 499.01 764.36 249.50 8.57 36.65 212.16 3.17 75.05
-Time: 08:37:02
+Time: 11:44:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2120.79 487.13 7.92 4142.57 17536.63 2071.29 8768.32 43.79 2.70 1.71 1.56 77.03
+hda 4.04 0.00 68.69 0.00 1357.58 0.00 678.79 0.00 19.76 0.63 9.12 5.74 39.39
-Time: 08:37:03
+Time: 11:44:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 201.98 33.66 1718.81 0.00 859.41 0.00 7.29 50.23 93.76 4.21 99.11
+hda 5.94 0.00 118.81 0.00 2510.89 0.00 1255.45 0.00 21.13 0.74 6.22 5.02 59.60
-Time: 08:37:04
+Time: 11:44:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.07 184.85 32.32 1519.19 72.73 759.60 36.36 7.33 9.48 184.51 4.64 100.71
+hda 1.00 1465.00 122.00 3.00 1400.00 12168.00 700.00 6084.00 108.54 0.82 5.97 5.78 72.30
-Time: 08:37:05
+Time: 11:44:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 167.33 0.00 1639.60 0.00 819.80 0.00 9.80 0.80 4.82 4.54 76.04
+hda 1.00 12.00 108.00 87.00 1080.00 368.00 540.00 184.00 7.43 10.24 52.91 4.62 90.10
-Time: 08:37:06
+Time: 11:44:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 864.00 449.00 32.00 4176.00 7168.00 2088.00 3584.00 23.58 3.00 6.19 1.46 70.10
+hda 1.00 0.00 132.00 0.00 1568.00 0.00 784.00 0.00 11.88 0.89 6.74 6.04 79.70
-Time: 08:37:07
+Time: 11:44:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.02 2006.06 400.00 5.05 4347.47 16630.30 2173.74 8315.15 51.79 0.91 1.74 1.64 66.46
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:37:08
+Time: 11:44:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 20.00 133.00 189.00 1416.00 1160.00 708.00 580.00 8.00 72.75 226.47 2.76 89.00
+hda 0.00 0.00 9.90 0.00 79.21 0.00 39.60 0.00 8.00 0.07 6.90 6.90 6.83
-Time: 08:37:09
+Time: 11:44:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 0.00 143.56 0.00 2598.02 0.00 1299.01 0.00 18.10 0.67 4.68 4.63 66.53
+hda 0.00 1602.97 0.00 2.97 0.00 13259.41 0.00 6629.70 4464.00 0.14 2.67 1.33 0.40
-Time: 08:37:10
+Time: 11:44:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 291.00 0.00 2552.00 0.00 1276.00 0.00 8.77 0.87 2.95 2.95 85.80
+hda 3.00 7.00 72.00 55.00 856.00 80.00 428.00 40.00 7.37 4.35 35.28 5.06 64.30
-Time: 08:37:11
+Time: 11:44:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 479.00 1.00 4000.00 8.00 2000.00 4.00 8.35 0.72 1.53 1.35 64.90
+hda 0.00 0.00 249.00 0.00 1984.00 0.00 992.00 0.00 7.97 0.83 3.35 3.01 74.90
-Time: 08:37:12
+Time: 11:44:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1097.03 847.52 0.00 6930.69 9093.07 3465.35 4546.53 18.91 1.10 1.05 1.04 88.02
+hda 0.00 678.00 90.00 27.00 792.00 5640.00 396.00 2820.00 54.97 0.84 7.09 5.20 60.80
-Time: 08:37:13
+Time: 11:44:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 23.76 84.16 322.77 1306.93 3390.10 653.47 1695.05 11.54 109.69 190.74 2.44 99.11
+hda 4.00 0.00 198.00 0.00 11888.00 0.00 5944.00 0.00 60.04 1.43 7.22 4.59 90.80
-Time: 08:37:14
+Time: 11:44:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 107.14 118.37 1387.76 24.49 693.88 12.24 6.26 17.96 226.93 3.27 73.78
+hda 15.84 300.00 111.88 3.96 10233.66 2518.81 5116.83 1259.41 110.09 0.80 6.56 4.51 52.28
-Time: 08:37:15
+Time: 11:44:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 216.67 0.00 3215.69 0.00 1607.84 0.00 14.84 0.56 2.56 2.29 49.71
+hda 5.05 67.68 88.89 19.19 4016.16 606.06 2008.08 303.03 42.77 1.20 11.46 6.13 66.26
-Time: 08:37:16
+Time: 11:44:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 163.27 0.00 2146.94 0.00 1073.47 0.00 13.15 0.73 4.44 4.32 70.51
+hda 0.00 0.00 149.50 0.00 3152.48 0.00 1576.24 0.00 21.09 3.41 17.56 5.26 78.71
-Time: 08:37:17
+Time: 11:44:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1281.00 135.00 0.00 2872.00 10656.00 1436.00 5328.00 100.21 1.24 7.35 4.61 62.30
+hda 0.00 0.00 124.24 0.00 12654.55 0.00 6327.27 0.00 101.85 1.18 15.93 6.14 76.26
-Time: 08:37:18
+Time: 11:44:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 15.84 140.59 53.47 1314.85 150.50 657.43 75.25 7.55 11.99 63.10 4.40 85.45
+hda 0.00 0.00 110.78 0.00 14250.98 0.00 7125.49 0.00 128.64 0.70 6.30 5.79 64.12
-Time: 08:37:19
+Time: 11:44:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 108.00 0.00 1216.00 0.00 608.00 0.00 11.26 0.41 3.79 3.72 40.20
+hda 0.00 2500.00 60.61 92.93 9745.45 21333.33 4872.73 10666.67 202.42 22.56 36.73 5.50 84.44
-Time: 08:37:20
+Time: 11:44:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 0.00 142.00 0.00 1864.00 0.00 932.00 0.00 13.13 0.42 3.01 2.44 34.70
+hda 0.00 4281.19 24.75 106.93 1180.20 35706.93 590.10 17853.47 280.12 136.49 477.80 7.53 99.21
-Time: 08:37:21
+Time: 11:44:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 0.00 103.03 0.00 1163.64 0.00 581.82 0.00 11.29 0.46 4.40 4.10 42.22
+hda 0.00 2413.13 44.44 97.98 2351.52 20080.81 1175.76 10040.40 157.50 146.44 892.13 7.11 101.31
-Time: 08:37:22
+Time: 11:44:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1693.07 196.04 0.00 2510.89 14035.64 1255.45 7017.82 84.40 1.15 4.62 3.96 77.72
+hda 0.00 2178.22 34.65 114.85 1259.41 18186.14 629.70 9093.07 130.07 143.34 1078.51 6.63 99.11
-Time: 08:37:23
+Time: 11:44:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 137.62 59.41 1283.17 7.92 641.58 3.96 6.55 36.19 169.71 5.05 99.50
+hda 0.00 2229.00 46.00 82.00 728.00 18600.00 364.00 9300.00 151.00 147.67 763.01 7.83 100.20
-Time: 08:37:24
+Time: 11:44:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 29.00 112.00 5.00 1128.00 248.00 564.00 124.00 11.76 1.39 37.74 5.37 62.80
+hda 0.00 493.00 32.00 78.00 248.00 4096.00 124.00 2048.00 39.49 125.97 1401.75 9.13 100.40
-Time: 08:37:25
+Time: 11:44:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 2.97 0.00 23.76 0.00 11.88 0.00 8.00 0.02 7.00 7.00 2.08
+hda 0.00 4145.54 9.90 152.48 79.21 34970.30 39.60 17485.15 215.85 62.34 914.91 6.10 99.01
-Time: 08:37:26
+Time: 11:44:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.01 0.00 8.08 0.00 4.04 0.00 8.00 0.02 15.00 15.00 1.52
+hda 0.00 2627.00 8.00 172.00 64.00 22288.00 32.00 11144.00 124.18 144.51 629.11 5.58 100.50
-Time: 08:37:27
+Time: 11:44:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 1727.00 27.00 5.00 336.00 14296.00 168.00 7148.00 457.25 0.75 9.00 6.03 19.30
+hda 0.00 0.99 11.88 126.73 102.97 31.68 51.49 15.84 0.97 76.91 807.03 7.15 99.11
-Time: 08:37:28
+Time: 11:44:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 11.00 64.00 57.00 504.00 104.00 252.00 52.00 5.02 9.82 84.97 5.58 67.50
+hda 0.00 784.69 93.88 46.94 11012.24 6497.96 5506.12 3248.98 124.35 5.30 203.10 4.62 65.00
-Time: 08:37:29
+Time: 11:44:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 584.16 109.90 21.78 2138.61 4847.52 1069.31 2423.76 53.05 1.30 9.88 5.80 76.34
+hda 0.00 1014.00 30.00 101.00 7176.00 8920.00 3588.00 4460.00 122.87 16.89 128.95 6.30 82.50
-Time: 08:37:30
+Time: 11:44:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 11.00 0.00 174.00 0.00 20632.00 0.00 10316.00 0.00 118.57 6.59 37.89 3.27 56.90
+hda 0.00 4231.68 16.83 112.87 4055.45 35770.30 2027.72 17885.15 307.05 57.20 197.89 7.52 97.52
-Time: 08:37:31
+Time: 11:44:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 3884.16 0.00 190.10 0.00 32601.98 0.00 16300.99 171.50 141.38 552.84 5.22 99.21
-Time: 08:37:32
+Time: 11:44:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 64.00 0.00 8.00 0.00 576.00 0.00 288.00 72.00 0.01 1.62 0.50 0.40
+hda 0.00 3848.51 0.00 170.30 0.00 32190.10 0.00 16095.05 189.02 144.63 646.09 5.86 99.80
-Time: 08:37:33
+Time: 11:44:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 32.00 81.00 4.00 5680.00 288.00 2840.00 144.00 70.21 0.68 7.92 5.31 45.10
+hda 0.00 1160.00 1.00 174.00 8.00 9600.00 4.00 4800.00 54.90 51.89 887.64 5.24 91.70
-Time: 08:37:34
+Time: 11:44:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 104.00 0.00 25344.00 0.00 12672.00 0.00 243.69 0.35 3.43 3.25 33.80
+hda 0.00 0.00 85.00 2.00 19360.00 16.00 9680.00 8.00 222.71 0.49 5.67 5.37 46.70
-Time: 08:37:35
+Time: 11:44:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3210.00 52.00 163.00 11800.00 27200.00 5900.00 13600.00 181.40 12.78 57.20 3.27 70.30
+hda 8.00 4457.00 143.00 24.00 3864.00 36992.00 1932.00 18496.00 244.65 29.04 14.74 5.43 90.60
-Time: 08:37:36
+Time: 11:44:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6868.00 6.00 265.00 1080.00 57344.00 540.00 28672.00 215.59 26.05 74.69 3.37 91.20
+hda 1.00 3409.00 187.00 153.00 3296.00 28224.00 1648.00 14112.00 92.71 144.84 363.60 2.94 100.10
-Time: 08:37:37
+Time: 11:44:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7863.37 41.58 243.56 720.79 65623.76 360.40 32811.88 232.67 51.69 134.79 3.26 93.07
+hda 0.00 1560.00 10.00 252.00 128.00 13624.00 64.00 6812.00 52.49 32.92 308.08 3.33 87.30
-Time: 08:37:38
+Time: 11:44:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3613.86 3.96 276.24 1013.86 30946.53 506.93 15473.27 114.06 142.64 392.59 3.53 99.01
+hda 0.00 0.00 8.00 0.00 88.00 0.00 44.00 0.00 11.00 0.12 14.75 3.88 3.10
-Time: 08:37:39
+Time: 11:44:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3891.92 40.40 278.79 3143.43 33462.63 1571.72 16731.31 114.68 145.87 501.84 3.17 101.11
+hda 0.00 0.00 39.60 0.00 443.56 0.00 221.78 0.00 11.20 0.44 11.22 3.33 13.17
-Time: 08:37:40
+Time: 11:44:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2891.09 10.89 213.86 2788.12 24427.72 1394.06 12213.86 121.09 139.88 585.67 4.41 99.11
+hda 0.00 28.28 6.06 374.75 72.73 4129.29 36.36 2064.65 11.03 31.17 61.10 0.80 30.51
-Time: 08:37:41
+Time: 11:44:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1585.00 20.00 150.00 4368.00 13104.00 2184.00 6552.00 102.78 34.55 478.56 5.61 95.40
+hda 0.00 49.50 0.00 707.92 0.00 6099.01 0.00 3049.50 8.62 110.45 147.87 1.40 99.11
-Time: 08:37:42
+Time: 11:44:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4102.00 73.00 51.00 17664.00 34488.00 8832.00 17244.00 420.58 3.25 20.74 3.60 44.70
+hda 0.00 533.66 0.00 432.67 0.00 7730.69 0.00 3865.35 17.87 111.50 242.04 2.30 99.31
-Time: 08:37:43
+Time: 11:44:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6773.00 3.00 267.00 768.00 56240.00 384.00 28120.00 211.14 144.61 305.00 3.70 100.00
+hda 0.00 32.32 31.31 127.27 371.72 1276.77 185.86 638.38 10.39 118.34 450.97 6.39 101.31
-Time: 08:37:44
+Time: 11:44:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 770.00 16.00 176.00 3584.00 6384.00 1792.00 3192.00 51.92 66.08 671.95 5.09 97.70
+hda 0.00 70.30 117.82 176.24 1386.14 1996.04 693.07 998.02 11.50 112.28 427.95 3.37 99.11
-Time: 08:37:45
+Time: 11:44:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 0.00 376.00 0.00 7848.00 0.00 3924.00 0.00 20.87 2.71 7.21 2.19 82.20
+hda 0.00 61.00 21.00 503.00 240.00 3872.00 120.00 1936.00 7.85 95.57 232.10 1.91 100.10
-Time: 08:37:46
+Time: 11:44:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 2671.29 20.79 157.43 293.07 22629.70 146.53 11314.85 128.62 10.22 57.35 3.09 55.05
+hda 0.00 570.30 3.96 221.78 39.60 6162.38 19.80 3081.19 27.47 26.15 228.19 3.96 89.31
-Time: 08:37:48
+Time: 11:44:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 9.90 34.65 81.19 396.04 1615.84 198.02 807.92 17.37 3.11 7.85 0.82 9.50
+hda 0.00 1126.26 3.03 94.95 24.24 9874.75 12.12 4937.37 101.03 36.60 265.44 8.59 84.14
-Time: 08:37:49
+Time: 11:44:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 70.71 0.00 869.70 0.00 7523.23 0.00 3761.62 8.65 113.26 123.45 1.16 101.11
+hda 0.00 996.08 97.06 155.88 1176.47 9113.73 588.24 4556.86 40.68 2.58 50.84 2.86 72.45
-Time: 08:37:50
+Time: 11:44:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 117.00 96.00 452.00 1080.00 4552.00 540.00 2276.00 10.28 113.51 140.48 1.83 100.10
+hda 1.02 1552.04 348.98 169.39 4612.24 13771.43 2306.12 6885.71 35.46 4.41 8.51 1.64 84.80
-Time: 08:37:51
+Time: 11:44:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 907.00 66.00 477.00 864.00 10176.00 432.00 5088.00 20.33 65.88 203.40 1.68 91.40
+hda 0.99 278.22 13.86 51.49 459.41 2637.62 229.70 1318.81 47.39 0.37 5.27 3.09 20.20
-Time: 08:37:52
+Time: 11:44:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2063.37 23.76 242.57 269.31 18447.52 134.65 9223.76 70.28 5.10 19.15 2.11 56.14
+hda 0.00 0.00 36.89 0.00 349.51 0.00 174.76 0.00 9.47 0.62 17.55 6.21 22.91
-Time: 08:37:53
+Time: 11:44:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 163.00 433.00 64.00 6040.00 1824.00 3020.00 912.00 15.82 2.83 5.72 1.66 82.40
+hda 0.00 0.00 18.00 0.00 232.00 0.00 116.00 0.00 12.89 0.18 9.83 4.78 8.60
-Time: 08:37:54
+Time: 11:44:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1413.27 1.02 137.76 8.16 12408.16 4.08 6204.08 89.47 2.59 18.71 2.01 27.86
+hda 0.00 0.00 55.56 0.00 1519.19 0.00 759.60 0.00 27.35 0.47 8.18 2.47 13.74
-Time: 08:37:55
+Time: 11:44:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 40.59 145.54 62.38 28.71 998.02 1386.14 499.01 693.07 26.17 0.54 5.92 4.60 41.88
+hda 1.00 0.00 255.00 0.00 4928.00 0.00 2464.00 0.00 19.33 1.63 6.45 2.46 62.70
-Time: 08:37:56
+Time: 11:44:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 21.00 0.00 256.00 0.00 128.00 0.00 12.19 0.10 4.90 3.24 6.80
+hda 0.00 654.46 39.60 40.59 451.49 5576.24 225.74 2788.12 75.16 5.81 72.30 4.38 35.15
-Time: 08:37:57
+Time: 11:44:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 100.00 0.00 1227.72 0.00 613.86 0.00 12.28 0.61 5.85 1.42 14.16
+hda 0.00 0.00 10.10 3.03 113.13 8.08 56.57 4.04 9.23 0.23 18.62 6.31 8.28
-Time: 08:37:58
+Time: 11:44:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 329.00 0.00 3752.00 0.00 1876.00 0.00 11.40 2.19 6.74 1.62 53.20
+hda 0.00 0.00 369.00 0.00 4336.00 0.00 2168.00 0.00 11.75 2.72 7.30 1.31 48.20
-Time: 08:37:59
+Time: 11:44:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 37.00 0.00 440.00 0.00 220.00 0.00 11.89 0.20 5.27 4.05 15.00
+hda 0.00 0.00 16.83 0.00 110.89 0.00 55.45 0.00 6.59 0.10 7.71 2.35 3.96
-Time: 08:38:00
+Time: 11:45:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 618.00 141.00 52.00 1752.00 5360.00 876.00 2680.00 36.85 2.06 10.47 1.50 29.00
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:01
+Time: 11:45:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 234.00 0.00 2584.00 0.00 1292.00 0.00 11.04 1.38 6.06 1.05 24.50
+hda 0.00 32.00 58.00 23.00 768.00 440.00 384.00 220.00 14.91 2.49 30.58 6.58 53.30
-Time: 08:38:02
+Time: 11:45:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 44.00 2.00 360.00 32.00 180.00 16.00 8.52 0.75 13.26 8.65 39.80
+hda 3.00 0.00 87.00 0.00 2344.00 0.00 1172.00 0.00 26.94 1.21 14.02 7.31 63.60
-Time: 08:38:03
+Time: 11:45:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 87.13 132.67 92.08 1053.47 1885.15 526.73 942.57 13.07 4.55 16.91 3.53 79.41
+hda 0.00 10.00 4.00 5.00 40.00 120.00 20.00 60.00 17.78 0.05 5.44 5.33 4.80
-Time: 08:38:04
+Time: 11:45:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 98.99 21.21 800.00 0.00 400.00 0.00 6.66 0.87 14.77 6.42 77.17
+hda 0.00 0.00 16.00 0.00 176.00 0.00 88.00 0.00 11.00 0.08 5.25 5.19 8.30
-Time: 08:38:05
+Time: 11:45:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 73.00 100.00 10.00 824.00 664.00 412.00 332.00 13.53 1.65 14.97 7.06 77.70
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:06
+Time: 11:45:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.92 107.92 7.92 902.97 126.73 451.49 63.37 8.89 0.72 6.32 5.50 63.66
+hda 0.00 105.00 0.00 7.00 0.00 1032.00 0.00 516.00 147.43 0.08 1.57 0.71 0.50
-Time: 08:38:07
+Time: 11:45:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 55.56 0.00 20.20 0.00 468.69 0.00 234.34 23.20 0.05 6.25 0.40 0.81
-Time: 08:38:08
+Time: 11:45:08
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 9.90 0.00 102.97 0.00 51.49 0.00 10.40 0.09 9.30 7.60 7.52
+
+Time: 11:45:09
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 9.00 0.00 96.00 0.00 48.00 0.00 10.67 0.08 9.00 5.67 5.10
+
+Time: 11:45:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:09
+Time: 11:45:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 5.00 0.00 64.00 0.00 32.00 0.00 12.80 0.03 6.00 5.80 2.90
+hda 0.00 59.00 0.00 14.00 0.00 736.00 0.00 368.00 52.57 0.07 1.29 0.21 0.30
-Time: 08:38:10
+Time: 11:45:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 76.77 10.10 22.22 129.29 791.92 64.65 395.96 28.50 0.10 3.09 1.66 5.35
+hda 0.00 28.00 0.00 26.00 0.00 280.00 0.00 140.00 10.77 0.05 4.27 0.31 0.80
-Time: 08:38:11
+Time: 11:45:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:12
+Time: 11:45:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:13
+Time: 11:45:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:14
+Time: 11:45:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 58.82 13.73 15.69 188.24 596.08 94.12 298.04 26.67 0.22 7.40 3.90 11.47
-Time: 08:38:15
+Time: 11:45:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 55.45 0.00 19.80 0.00 601.98 0.00 300.99 30.40 0.04 2.00 0.30 0.59
+hda 0.00 80.20 0.99 250.50 7.92 3572.28 3.96 1786.14 14.24 44.44 76.17 1.65 41.58
-Time: 08:38:16
+Time: 11:45:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 235.35 9.09 267.68 80.81 4363.64 40.40 2181.82 16.06 106.48 381.42 3.65 101.11
+
+Time: 11:45:20
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 116.00 36.00 936.00 0.00 468.00 0.00 6.16 7.44 170.90 6.09 92.50
+
+Time: 11:45:21
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 144.00 0.00 1152.00 0.00 576.00 0.00 8.00 1.16 8.17 5.72 82.40
+
+Time: 11:45:22
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1545.00 126.00 49.00 1000.00 12816.00 500.00 6408.00 78.95 3.20 17.93 5.29 92.50
+
+Time: 11:45:23
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 83.00 9.00 792.00 8.00 396.00 4.00 8.70 1.16 13.42 6.87 63.20
+
+Time: 11:45:24
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 13.86 114.85 80.20 8.91 9655.45 990.10 4827.72 495.05 119.47 0.69 7.73 2.73 24.36
-Time: 08:38:17
+Time: 11:45:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 14.85 0.00 150.50 0.00 75.25 0.00 10.13 0.05 3.53 1.87 2.77
+hda 2.00 0.00 63.00 0.00 1440.00 0.00 720.00 0.00 22.86 0.69 10.63 6.78 42.70
-Time: 08:38:18
+Time: 11:45:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.01 6.06 3.03 48.48 32.32 24.24 16.16 8.89 0.04 4.11 3.44 3.13
+hda 0.00 0.00 29.00 0.00 376.00 0.00 188.00 0.00 12.97 0.24 9.17 6.55 19.00
-Time: 08:38:19
+Time: 11:45:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 173.00 0.00 1392.00 0.00 696.00 0.00 8.05 0.80 4.55 3.50 60.60
+hda 0.00 2346.00 78.00 71.00 7712.00 20576.00 3856.00 10288.00 189.85 27.85 41.66 3.68 54.90
-Time: 08:38:20
+Time: 11:45:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 5.05 1323.23 166.67 49.49 11684.85 10981.82 5842.42 5490.91 104.86 10.77 49.88 3.15 68.18
+hda 0.00 1178.22 17.82 196.04 4055.45 9774.26 2027.72 4887.13 64.67 36.21 269.19 3.93 84.06
-Time: 08:38:21
+Time: 11:45:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 8.91 0.00 108.91 0.00 9829.70 0.00 4914.85 0.00 90.25 0.51 4.70 4.30 46.83
+hda 0.00 0.00 96.00 2.00 23560.00 16.00 11780.00 8.00 240.57 0.45 4.57 4.42 43.30
-Time: 08:38:22
+Time: 11:45:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 0.00 63.64 0.00 993.94 0.00 496.97 0.00 15.62 0.46 7.27 5.75 36.57
+hda 0.00 3964.00 31.00 163.00 7936.00 33400.00 3968.00 16700.00 213.07 32.55 140.78 4.78 92.80
-Time: 08:38:23
+Time: 11:45:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 142.00 28.00 123.00 5328.00 3056.00 2664.00 1528.00 55.52 7.37 13.42 1.64 24.80
+hda 0.00 4818.81 9.90 194.06 1647.52 40554.46 823.76 20277.23 206.91 31.62 134.13 4.48 91.39
-Time: 08:38:24
+Time: 11:45:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 140.59 14.85 585.15 3295.05 6376.24 1647.52 3188.12 16.12 111.79 173.17 1.65 99.11
+hda 0.00 4300.00 6.06 153.54 444.44 36000.00 222.22 18000.00 228.35 113.31 497.08 6.34 101.11
-Time: 08:38:25
+Time: 11:45:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3368.69 3.03 245.45 775.76 29260.61 387.88 14630.30 120.88 121.45 348.79 4.07 101.11
+hda 0.00 2896.04 0.00 173.27 0.00 24443.56 0.00 12221.78 141.07 140.27 756.27 5.72 99.11
-Time: 08:38:26
+Time: 11:45:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 581.19 30.69 138.61 7358.42 4823.76 3679.21 2411.88 71.95 21.61 391.39 4.72 79.90
+hda 0.00 3053.00 8.00 142.00 2048.00 25704.00 1024.00 12852.00 185.01 144.28 808.02 6.67 100.10
-Time: 08:38:27
+Time: 11:45:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 95.00 2.00 23040.00 16.00 11520.00 8.00 237.69 0.36 3.75 3.53 34.20
+hda 0.00 1645.45 17.17 142.42 4395.96 14197.98 2197.98 7098.99 116.51 147.68 860.30 6.34 101.11
-Time: 08:38:28
+Time: 11:45:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6428.71 12.87 224.75 2843.56 53536.63 1421.78 26768.32 237.27 11.33 39.87 2.83 67.23
+hda 0.00 2506.86 26.47 112.75 6274.51 20949.02 3137.25 10474.51 195.55 142.42 872.47 7.07 98.43
-Time: 08:38:29
+Time: 11:45:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7917.17 4.04 278.79 1042.42 66165.66 521.21 33082.83 237.63 80.04 162.05 3.56 100.61
+hda 0.00 57.00 24.00 104.00 6144.00 472.00 3072.00 236.00 51.69 98.76 1152.05 7.82 100.10
-Time: 08:38:30
+Time: 11:45:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5200.00 5.05 257.58 1010.10 44032.32 505.05 22016.16 171.51 127.93 520.61 3.85 101.11
+hda 0.00 4778.22 33.66 103.96 6851.49 39992.08 3425.74 19996.04 340.37 23.86 591.14 6.59 90.69
-Time: 08:38:32
+Time: 11:45:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3125.37 18.05 229.76 3516.10 26755.12 1758.05 13377.56 122.16 145.80 534.00 4.03 99.85
+hda 0.00 2653.06 21.43 134.69 5371.43 22269.39 2685.71 11134.69 177.05 144.44 391.33 6.54 102.14
-Time: 08:38:33
+Time: 11:45:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1735.00 18.00 186.00 4352.00 14544.00 2176.00 7272.00 92.63 108.59 686.31 4.91 100.10
+hda 0.00 1637.25 23.53 87.25 5772.55 13600.00 2886.27 6800.00 174.87 141.70 750.56 8.86 98.14
-Time: 08:38:34
+Time: 11:45:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1262.38 44.55 76.24 10653.47 10439.60 5326.73 5219.80 174.62 11.71 287.35 4.96 59.90
+hda 0.96 1317.31 33.65 92.31 4115.38 10976.92 2057.69 5488.46 119.82 131.31 1336.82 7.97 100.38
-Time: 08:38:35
+Time: 11:45:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7107.92 32.67 187.13 7857.43 59405.94 3928.71 29702.97 306.02 83.11 204.23 3.12 68.61
+hda 1.98 0.00 204.95 60.40 3730.69 7.92 1865.35 3.96 14.09 65.53 452.49 3.75 99.41
-Time: 08:38:36
+Time: 11:45:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4105.05 9.09 213.13 2327.27 34068.69 1163.64 17034.34 163.78 132.57 579.81 4.55 101.11
+hda 0.00 6122.45 9.18 230.61 97.96 50800.00 48.98 25400.00 212.26 82.22 467.74 4.26 102.14
-Time: 08:38:37
+Time: 11:45:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 329.00 231.00 85.00 3952.00 2728.00 1976.00 1364.00 21.14 18.60 192.63 2.82 89.20
+hda 0.00 1479.21 8.91 184.16 95.05 13100.99 47.52 6550.50 68.35 10.92 153.46 2.98 57.62
-Time: 08:38:38
+Time: 11:45:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2583.00 32.00 160.00 248.00 21944.00 124.00 10972.00 115.58 13.00 67.74 2.80 53.80
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:39
+Time: 11:45:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 27.72 0.00 388.12 0.00 194.06 0.00 14.00 0.19 6.54 2.04 5.64
+hda 0.00 0.00 40.59 0.00 459.41 0.00 229.70 0.00 11.32 0.51 12.61 2.83 11.49
-Time: 08:38:40
+Time: 11:45:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 7.00 0.00 8.00 0.00 4.00 0.00 1.14 0.08 12.57 4.86 3.40
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:41
+Time: 11:45:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:42
+Time: 11:45:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 960.40 160.40 71.29 1924.75 8253.47 962.38 4126.73 43.93 1.44 6.23 1.78 41.29
+hda 0.00 591.92 11.11 28.28 266.67 4961.62 133.33 2480.81 132.72 0.98 23.69 2.82 11.11
-Time: 08:38:43
+Time: 11:45:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2006.00 146.00 217.00 1752.00 17784.00 876.00 8892.00 53.82 3.17 8.72 1.62 58.90
+hda 0.00 699.00 163.00 105.00 1776.00 6432.00 888.00 3216.00 30.63 1.43 5.47 1.58 42.40
-Time: 08:38:44
+Time: 11:45:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1432.00 307.00 152.00 4528.00 12840.00 2264.00 6420.00 37.84 3.71 6.20 1.81 83.20
+hda 0.00 1330.00 1.00 295.00 8.00 13616.00 4.00 6808.00 46.03 87.81 294.79 3.14 92.80
-Time: 08:38:45
+Time: 11:45:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 261.00 20.00 76.00 208.00 2528.00 104.00 1264.00 28.50 0.84 17.80 2.59 24.90
+hda 0.00 767.33 86.14 156.44 1005.94 7358.42 502.97 3679.21 34.48 2.71 11.41 2.93 71.09
-Time: 08:38:46
+Time: 11:45:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 22.00 0.00 232.00 0.00 116.00 0.00 10.55 0.16 7.45 6.00 13.20
+hda 1.00 113.00 348.00 49.00 4496.00 1296.00 2248.00 648.00 14.59 3.44 8.65 2.20 87.20
-Time: 08:38:47
+Time: 11:45:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 16.83 0.00 221.78 0.00 110.89 0.00 13.18 0.11 6.76 3.18 5.35
+hda 0.00 1406.00 12.00 121.00 184.00 12216.00 92.00 6108.00 93.23 2.40 18.06 1.82 24.20
-Time: 08:38:48
+Time: 11:45:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 388.00 0.00 4504.00 0.00 2252.00 0.00 11.61 2.31 5.95 1.16 45.10
+hda 0.00 273.27 38.61 51.49 372.28 2598.02 186.14 1299.01 32.97 0.65 7.18 2.78 25.05
-Time: 08:38:49
+Time: 11:45:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 68.00 0.00 896.00 0.00 448.00 0.00 13.18 0.48 6.74 3.96 26.90
+hda 0.00 0.00 20.79 0.00 269.31 0.00 134.65 0.00 12.95 0.16 7.48 3.29 6.83
-Time: 08:38:50
+Time: 11:45:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 629.29 19.19 50.51 137.37 5438.38 68.69 2719.19 80.00 2.37 34.35 3.57 24.85
+hda 0.00 61.39 18.81 305.94 237.62 3968.32 118.81 1984.16 12.95 59.07 79.52 1.97 63.96
-Time: 08:38:51
+Time: 11:45:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 359.80 0.00 4188.24 0.00 2094.12 0.00 11.64 2.17 6.04 1.12 40.20
+hda 0.00 35.00 136.00 140.00 3544.00 1472.00 1772.00 736.00 18.17 114.01 332.90 3.63 100.10
-Time: 08:38:52
+Time: 11:45:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2.00 7.00 4.00 80.00 48.00 40.00 24.00 11.64 0.06 5.09 5.09 5.60
+hda 0.00 64.00 130.00 369.00 2256.00 3640.00 1128.00 1820.00 11.82 113.16 309.64 2.01 100.10
-Time: 08:38:53
+Time: 11:46:00
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 566.99 7.77 313.59 85.44 7036.89 42.72 3518.45 22.16 112.02 201.15 3.02 97.18
+
+Time: 11:46:01
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 94.95 2.02 471.72 8.08 4541.41 4.04 2270.71 9.60 114.05 252.15 2.13 101.11
+
+Time: 11:46:02
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 81.00 33.00 181.00 496.00 2080.00 248.00 1040.00 12.04 112.57 533.23 4.68 100.10
+
+Time: 11:46:03
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 24.00 40.00 251.00 392.00 2280.00 196.00 1140.00 9.18 111.92 423.93 3.44 100.10
+
+Time: 11:46:04
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 57.00 10.00 255.00 112.00 1632.00 56.00 816.00 6.58 60.23 381.25 2.60 68.90
+
+Time: 11:46:05
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 37.62 310.89 9.90 3683.17 380.20 1841.58 190.10 12.67 2.53 7.44 1.39 44.55
+
+Time: 11:46:06
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 67.68 0.00 711.11 0.00 355.56 0.00 10.51 0.47 9.04 1.79 12.12
+
+Time: 11:46:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:54
+Time: 11:46:08
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.02 11.00 11.00 2.20
+
+Time: 11:46:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.02 10.50 10.50 2.10
+hda 0.00 0.00 6.00 0.00 72.00 0.00 36.00 0.00 12.00 0.11 18.00 3.17 1.90
-Time: 08:38:55
+Time: 11:46:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 70.00 3.00 16.00 32.00 688.00 16.00 344.00 37.89 0.10 5.00 3.89 7.40
+hda 0.00 78.00 5.00 14.00 48.00 736.00 24.00 368.00 41.26 0.12 6.05 1.53 2.90
-Time: 08:38:56
+Time: 11:46:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 16.16 0.00 193.94 0.00 96.97 0.00 12.00 0.10 6.19 4.94 7.98
+hda 0.00 0.00 14.00 0.00 160.00 0.00 80.00 0.00 11.43 0.10 7.43 5.57 7.80
-Time: 08:38:57
+Time: 11:46:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:58
+Time: 11:46:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 172.00 0.00 313.00 0.00 5144.00 0.00 2572.00 16.43 16.01 29.34 0.46 14.30
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:38:59
+Time: 11:46:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.07 5.05 647.47 64.65 5252.53 32.32 2626.26 8.15 113.16 160.91 1.55 101.11
+hda 0.00 0.00 10.00 0.00 104.00 0.00 52.00 0.00 10.40 0.08 8.20 6.60 6.60
-Time: 08:39:00
+Time: 11:46:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 75.00 4.00 719.00 80.00 6368.00 40.00 3184.00 8.92 113.88 146.89 1.38 100.10
+hda 0.00 73.00 0.00 24.00 0.00 776.00 0.00 388.00 32.33 0.04 1.88 0.42 1.00
-Time: 08:39:01
+Time: 11:46:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 33.66 0.00 251.49 0.00 1386.14 0.00 693.07 5.51 25.52 189.36 1.32 33.27
+hda 0.00 0.00 5.00 0.00 64.00 0.00 32.00 0.00 12.80 0.04 7.00 4.00 2.00
-Time: 08:39:02
+Time: 11:46:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.00 0.00 32.00 0.00 16.00 0.00 8.00 0.05 12.25 12.25 4.90
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:03
+Time: 11:46:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:04
+Time: 11:46:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:05
+Time: 11:46:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.00 0.00 5.00 0.00 96.00 0.00 48.00 19.20 0.00 0.20 0.20 0.10
+hda 0.00 56.44 0.00 33.66 0.00 720.79 0.00 360.40 21.41 0.10 3.03 0.24 0.79
-Time: 08:39:06
+Time: 11:46:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:07
+Time: 11:46:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 6.93 0.00 71.29 0.00 35.64 0.00 10.29 0.04 5.29 3.71 2.57
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:08
+Time: 11:46:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 8.00 3.00 80.00 32.00 40.00 16.00 10.18 0.03 3.09 0.91 1.00
+hda 0.00 0.00 7.84 0.00 109.80 0.00 54.90 0.00 14.00 0.09 11.12 7.75 6.08
-Time: 08:39:09
+Time: 11:46:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1311.00 16.00 7.00 384.00 10864.00 192.00 5432.00 489.04 0.23 5.91 5.61 12.90
+hda 0.00 0.00 9.90 0.00 87.13 0.00 43.56 0.00 8.80 0.19 18.80 7.50 7.43
-Time: 08:39:10
+Time: 11:46:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 113.13 41.41 56.57 3208.08 1034.34 1604.04 517.17 43.30 2.73 28.84 4.87 47.68
+hda 0.00 879.00 113.00 34.00 904.00 7304.00 452.00 3652.00 55.84 3.15 21.44 4.76 70.00
-Time: 08:39:11
+Time: 11:46:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 98.00 0.00 24320.00 0.00 12160.00 0.00 248.16 0.38 3.83 3.72 36.50
+hda 0.00 116.00 33.00 11.00 2392.00 1016.00 1196.00 508.00 77.45 0.55 12.45 8.82 38.80
-Time: 08:39:12
+Time: 11:46:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1894.00 51.00 133.00 12288.00 16368.00 6144.00 8184.00 155.74 16.73 63.90 3.99 73.50
+hda 0.00 1486.14 64.36 63.37 4356.44 12396.04 2178.22 6198.02 131.16 7.09 55.48 4.96 63.37
-Time: 08:39:13
+Time: 11:46:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2907.92 14.85 146.53 3350.50 24332.67 1675.25 12166.34 171.53 19.79 147.94 5.73 92.48
+hda 0.00 0.00 103.00 0.00 25344.00 0.00 12672.00 0.00 246.06 0.41 3.93 3.82 39.30
-Time: 08:39:14
+Time: 11:46:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 9912.00 1.00 288.00 0.00 82816.00 0.00 41408.00 286.56 32.61 86.59 3.00 86.80
+hda 0.00 2950.00 37.00 123.00 9216.00 25248.00 4608.00 12624.00 215.40 44.85 97.18 5.41 86.60
-Time: 08:39:15
+Time: 11:46:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4378.79 0.00 284.85 0.00 37107.07 0.00 18553.54 130.27 144.66 354.29 3.55 101.11
+hda 0.00 1946.53 13.86 127.72 2067.33 16221.78 1033.66 8110.89 129.17 47.73 539.52 7.00 99.11
-Time: 08:39:16
+Time: 11:46:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6016.83 0.00 321.78 0.00 50859.41 0.00 25429.70 158.06 141.29 491.14 3.08 99.11
+hda 0.00 2964.00 14.00 144.00 1944.00 24576.00 972.00 12288.00 167.85 13.35 86.74 5.40 85.30
-Time: 08:39:17
+Time: 11:46:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4188.00 33.00 296.00 1376.00 35216.00 688.00 17608.00 111.22 101.13 390.10 3.04 100.10
+hda 0.00 6644.00 2.00 180.00 16.00 55808.00 8.00 27904.00 306.73 120.98 333.56 5.49 100.00
-Time: 08:39:18
+Time: 11:46:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1826.00 21.00 166.00 4608.00 15376.00 2304.00 7688.00 106.87 27.33 186.76 4.88 91.30
+hda 0.00 2623.00 4.00 135.00 40.00 22008.00 20.00 11004.00 158.62 140.30 839.20 7.21 100.20
-Time: 08:39:19
+Time: 11:46:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6158.59 33.33 177.78 8016.16 51959.60 4008.08 25979.80 284.10 12.94 58.00 3.63 76.67
+hda 0.00 2362.00 70.00 136.00 3616.00 19920.00 1808.00 9960.00 114.25 145.74 626.44 4.86 100.20
-Time: 08:39:20
+Time: 11:46:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4600.00 11.76 204.90 3011.76 38305.88 1505.88 19152.94 190.70 141.87 403.65 4.52 98.04
+hda 0.00 632.00 15.00 156.00 3584.00 5464.00 1792.00 2732.00 52.91 104.37 1016.10 5.86 100.20
-Time: 08:39:21
+Time: 11:46:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3031.00 107.00 141.00 2832.00 25088.00 1416.00 12544.00 112.58 133.39 466.75 4.04 100.10
+hda 0.00 1661.00 15.00 237.00 3840.00 16584.00 1920.00 8292.00 81.05 87.40 390.59 3.98 100.20
-Time: 08:39:22
+Time: 11:46:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2005.00 246.00 177.00 2752.00 16752.00 1376.00 8376.00 46.11 60.90 311.05 2.36 99.90
+hda 0.00 1509.90 4.95 187.13 1267.33 13996.04 633.66 6998.02 79.46 129.72 278.67 5.16 99.21
-Time: 08:39:23
+Time: 11:46:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 1314.14 52.53 116.16 1066.67 11313.13 533.33 5656.57 73.39 11.30 85.83 2.99 50.40
+hda 0.00 1878.37 26.69 103.37 6296.63 15822.47 3148.31 7911.24 170.07 144.77 1159.88 7.73 100.51
-Time: 08:39:24
+Time: 11:46:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 33.66 0.00 372.28 0.00 186.14 0.00 11.06 0.03 1.03 0.94 3.17
+hda 1.98 1718.81 35.64 99.01 4277.23 14455.45 2138.61 7227.72 139.12 140.36 692.57 7.36 99.11
-Time: 08:39:25
+Time: 11:46:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1537.25 55.88 157.84 643.14 13560.78 321.57 6780.39 66.46 3.19 14.91 2.14 45.69
+hda 0.00 0.00 193.00 73.00 2496.00 16.00 1248.00 8.00 9.44 94.46 442.94 3.76 100.10
-Time: 08:39:26
+Time: 11:46:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 1.00 5928.00 79.00 147.00 1840.00 49272.00 920.00 24636.00 226.16 53.98 539.05 4.40 99.50
-Time: 08:39:27
+Time: 11:46:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.02 16.00 16.00 1.60
+hda 0.00 4206.00 0.00 257.00 0.00 34896.00 0.00 17448.00 135.78 123.74 508.04 3.89 100.10
-Time: 08:39:28
+Time: 11:46:45
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1561.39 0.00 190.10 0.00 13695.05 0.00 6847.52 72.04 14.05 181.29 3.43 65.15
+
+Time: 11:46:46
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 7.07 42.42 3.03 476.77 80.81 238.38 40.40 12.27 0.48 10.51 2.64 12.02
+
+Time: 11:46:47
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.00 507.00 90.00 103.00 1080.00 4880.00 540.00 2440.00 30.88 0.90 4.51 2.32 44.70
+
+Time: 11:46:48
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.00 1206.00 29.00 63.00 336.00 10152.00 168.00 5076.00 114.00 4.02 44.01 3.55 32.70
+
+Time: 11:46:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:29
+Time: 11:46:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:30
+Time: 11:46:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 473.74 0.00 23.23 0.00 3975.76 0.00 1987.88 171.13 0.27 11.52 2.57 5.96
+hda 0.00 935.64 2.97 51.49 23.76 7904.95 11.88 3952.48 145.60 1.07 19.20 2.45 13.37
-Time: 08:39:31
+Time: 11:46:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1887.00 0.00 206.00 0.00 16744.00 0.00 8372.00 81.28 5.18 25.14 1.67 34.50
+hda 0.00 1315.00 0.00 147.00 0.00 11736.00 0.00 5868.00 79.84 7.79 39.88 3.39 49.90
-Time: 08:39:32
+Time: 11:46:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 610.89 365.35 100.99 5227.72 5695.05 2613.86 2847.52 23.42 2.80 5.96 1.76 81.88
+hda 0.00 998.02 266.34 149.50 3421.78 9132.67 1710.89 4566.34 30.19 2.60 10.85 1.91 79.31
-Time: 08:39:33
+Time: 11:46:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 375.00 59.00 336.00 632.00 6864.00 316.00 3432.00 18.98 20.55 21.32 1.28 50.60
+hda 2.02 306.06 168.69 121.21 2230.30 3418.18 1115.15 1709.09 19.48 1.42 4.98 1.72 50.00
-Time: 08:39:34
+Time: 11:46:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 176.00 0.00 626.00 8.00 7232.00 4.00 3616.00 11.57 112.11 159.85 1.60 100.10
+hda 0.00 0.00 15.00 0.00 192.00 0.00 96.00 0.00 12.80 0.11 7.13 4.13 6.20
-Time: 08:39:35
+Time: 11:46:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 12.00 660.00 144.00 5272.00 72.00 2636.00 8.06 111.92 187.26 1.49 100.10
+hda 0.00 0.00 11.71 0.00 216.22 0.00 108.11 0.00 18.46 0.14 11.69 7.85 9.19
-Time: 08:39:36
+Time: 11:46:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 147.00 464.00 1760.00 3720.00 880.00 1860.00 8.97 112.63 138.45 1.64 100.10
+hda 1.00 2.00 255.00 12.00 5800.00 120.00 2900.00 60.00 22.17 4.89 18.27 1.80 48.10
-Time: 08:39:37
+Time: 11:46:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 30.69 251.49 335.64 2875.25 2043.56 1437.62 1021.78 8.38 101.31 235.43 1.68 98.61
+hda 1.00 0.00 62.00 0.00 696.00 0.00 348.00 0.00 11.23 0.65 10.74 4.37 27.10
-Time: 08:39:38
+Time: 11:46:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 69.00 10.00 16.00 104.00 680.00 52.00 340.00 30.15 0.22 8.54 2.19 5.70
+hda 0.00 80.20 34.65 13.86 403.96 752.48 201.98 376.24 23.84 0.28 5.82 4.08 19.80
-Time: 08:39:39
+Time: 11:47:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 176.77 0.00 2036.36 0.00 1018.18 0.00 11.52 1.30 7.34 1.21 21.31
+hda 0.00 0.00 16.00 0.00 200.00 0.00 100.00 0.00 12.50 0.20 12.69 3.56 5.70
-Time: 08:39:40
+Time: 11:47:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 182.35 0.00 2117.65 0.00 1058.82 0.00 11.61 0.83 4.57 0.84 15.39
+hda 0.00 0.00 354.72 0.00 4173.58 0.00 2086.79 0.00 11.77 2.88 8.11 1.42 50.47
-Time: 08:39:41
+Time: 11:47:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 1.01 0.00 40.40 1.01 549.49 8.08 274.75 4.04 13.46 0.38 9.17 7.90 32.73
-Time: 08:39:42
+Time: 11:47:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.11 55.50 55.50 11.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:43
+Time: 11:47:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 66.00 0.00 34.00 0.00 808.00 0.00 404.00 23.76 0.06 1.68 0.29 1.00
+hda 0.00 32.67 1.98 9.90 15.84 340.59 7.92 170.30 30.00 0.03 2.75 2.17 2.57
-Time: 08:39:44
+Time: 11:47:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:45
+Time: 11:47:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 5.94 0.00 71.29 0.00 35.64 0.00 12.00 0.10 17.00 3.17 1.88
-Time: 08:39:46
+Time: 11:47:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 13.00 4.00 757.00 48.00 7064.00 24.00 3532.00 9.35 68.33 75.52 0.84 63.70
-Time: 08:39:47
+Time: 11:47:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.00 0.00 48.00 0.00 24.00 0.00 16.00 0.00 0.33 0.33 0.10
+hda 0.00 7.00 15.00 305.00 160.00 2504.00 80.00 1252.00 8.32 112.15 312.62 3.13 100.10
-Time: 08:39:48
+Time: 11:47:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 134.00 4.00 36.00 80.00 1360.00 40.00 680.00 36.00 0.17 4.15 0.78 3.10
+hda 0.00 52.00 0.00 202.00 0.00 2040.00 0.00 1020.00 10.10 112.33 484.47 4.96 100.10
-Time: 08:39:49
+Time: 11:47:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 41.58 0.00 540.59 0.00 4681.19 0.00 2340.59 8.66 110.98 211.81 1.83 99.11
-Time: 08:39:50
+Time: 11:47:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 59.60 3.03 273.74 32.32 2666.67 16.16 1333.33 9.75 113.38 414.01 3.65 101.11
+
+Time: 11:47:13
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 9.62 6.73 203.85 69.23 861.54 34.62 430.77 4.42 79.02 523.68 4.08 85.96
+
+Time: 11:47:14
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 3.00 5.00 3.00 64.00 48.00 32.00 24.00 14.00 0.09 10.75 4.62 3.70
+
+Time: 11:47:15
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 108.00 0.00 44.00 0.00 1216.00 0.00 608.00 27.64 0.14 3.09 0.30 1.30
-Time: 08:39:51
+Time: 11:47:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:52
+Time: 11:47:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:53
+Time: 11:47:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 40.40 0.00 14.14 0.00 436.36 0.00 218.18 30.86 0.02 1.29 0.29 0.40
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:54
+Time: 11:47:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:39:55
+Time: 11:47:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 17.00 0.00 168.00 0.00 84.00 0.00 9.88 0.11 6.53 2.94 5.00
+hda 0.00 2.02 0.00 5.05 0.00 56.57 0.00 28.28 11.20 0.00 0.00 0.00 0.00
-Time: 08:39:56
+Time: 11:47:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.98 0.00 7.84 0.00 3.92 0.00 8.00 0.00 3.00 3.00 0.29
+hda 0.00 0.00 8.91 0.00 118.81 0.00 59.41 0.00 13.33 0.11 12.00 6.56 5.84
-Time: 08:39:57
+Time: 11:47:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1414.29 26.53 67.35 212.24 11853.06 106.12 5926.53 128.52 5.71 60.87 3.98 37.35
+hda 0.00 0.00 87.00 0.00 704.00 0.00 352.00 0.00 8.09 0.20 2.36 1.64 14.30
-Time: 08:39:58
+Time: 11:47:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 11.00 90.00 4.00 11832.00 120.00 5916.00 60.00 127.15 0.52 5.53 4.53 42.60
+hda 0.98 1556.86 14.71 76.47 258.82 13066.67 129.41 6533.33 146.15 8.18 89.68 3.94 35.88
-Time: 08:39:59
+Time: 11:47:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 741.58 97.03 28.71 23825.74 6510.89 11912.87 3255.45 241.26 3.91 8.61 3.18 40.00
+hda 0.00 0.00 88.89 0.00 7135.35 0.00 3567.68 0.00 80.27 3.56 40.01 5.95 52.93
-Time: 08:40:00
+Time: 11:47:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4899.00 20.00 214.00 4608.00 40960.00 2304.00 20480.00 194.74 21.94 97.38 3.84 89.90
+hda 0.00 0.00 118.81 0.00 25702.97 0.00 12851.49 0.00 216.33 0.54 4.53 4.35 51.68
-Time: 08:40:01
+Time: 11:47:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8633.00 0.00 359.00 0.00 72128.00 0.00 36064.00 200.91 60.51 143.88 2.79 100.10
+hda 0.00 2688.00 40.00 169.00 7512.00 22944.00 3756.00 11472.00 145.72 18.78 87.27 4.22 88.30
-Time: 08:40:02
+Time: 11:47:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 9696.97 1.01 353.54 8.08 81058.59 4.04 40529.29 228.65 120.89 273.12 2.85 101.11
+hda 0.00 4961.62 21.21 154.55 4767.68 41373.74 2383.84 20686.87 262.53 47.03 245.20 5.75 101.01
-Time: 08:40:03
+Time: 11:47:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3571.57 28.43 228.43 376.47 30227.45 188.24 15113.73 119.15 139.93 505.69 3.82 98.14
+hda 0.00 8247.00 5.00 336.00 40.00 69040.00 20.00 34520.00 202.58 72.09 179.35 2.94 100.10
-Time: 08:40:04
+Time: 11:47:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4186.87 25.25 192.93 864.65 35240.40 432.32 17620.20 165.48 145.40 430.50 4.63 101.11
+hda 0.00 4830.69 65.35 283.17 2241.58 41029.70 1120.79 20514.85 124.16 133.44 314.33 2.84 99.11
-Time: 08:40:05
+Time: 11:47:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 860.00 152.00 70.00 3344.00 7392.00 1672.00 3696.00 48.36 142.68 392.36 4.51 100.10
+hda 0.00 3157.00 17.00 272.00 4352.00 27560.00 2176.00 13780.00 110.42 144.30 504.65 3.46 100.10
-Time: 08:40:06
+Time: 11:47:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 1930.69 65.35 91.09 1362.38 16205.94 681.19 8102.97 112.30 143.68 1056.81 6.34 99.11
+hda 0.00 3054.00 19.00 232.00 4864.00 26120.00 2432.00 13060.00 123.44 140.87 513.25 3.99 100.10
-Time: 08:40:07
+Time: 11:47:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 4987.88 10.10 258.59 266.67 41971.72 133.33 20985.86 157.20 145.03 920.70 3.76 101.11
+hda 0.00 1578.00 26.00 150.00 5904.00 13056.00 2952.00 6528.00 107.73 58.01 565.34 5.69 100.10
-Time: 08:40:08
+Time: 11:47:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3862.38 1.98 294.06 15.84 32285.15 7.92 16142.57 109.11 101.77 428.35 3.35 99.11
+hda 0.00 716.83 51.49 74.26 10320.79 6122.77 5160.40 3061.39 130.77 6.41 117.91 4.85 60.99
-Time: 08:40:09
+Time: 11:47:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1711.00 54.00 106.00 1136.00 14256.00 568.00 7128.00 96.20 7.16 63.46 5.23 83.70
+hda 7.07 5937.37 26.26 162.63 6278.79 49963.64 3139.39 24981.82 297.75 123.70 277.04 5.35 101.11
-Time: 08:40:10
+Time: 11:47:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.00 0.00 64.00 0.00 32.00 0.00 21.33 0.03 10.33 10.33 3.10
+hda 0.99 2816.83 37.62 117.82 4079.21 23548.51 2039.60 11774.26 177.73 143.87 748.40 6.38 99.11
-Time: 08:40:11
+Time: 11:47:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 2.97 0.00 63.37 0.00 31.68 0.00 21.33 0.01 5.00 5.00 1.49
+hda 0.00 1761.62 204.04 151.52 2189.90 14593.94 1094.95 7296.97 47.20 141.72 611.77 2.84 101.11
-Time: 08:40:12
+Time: 11:47:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 66.00 8.00 248.00 64.00 3640.00 32.00 1820.00 14.47 24.59 42.02 1.01 25.90
+hda 0.00 1036.63 12.87 102.97 205.94 8594.06 102.97 4297.03 75.97 6.90 259.11 3.64 42.18
-Time: 08:40:13
+Time: 11:47:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 206.00 0.00 644.00 0.00 6768.00 0.00 3384.00 10.51 102.13 175.43 1.55 100.10
+hda 3.00 53.00 70.00 7.00 1488.00 512.00 744.00 256.00 25.97 1.25 16.78 8.56 65.90
-Time: 08:40:14
+Time: 11:47:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2435.00 0.00 91.00 0.00 20144.00 0.00 10072.00 221.36 7.72 102.46 2.41 21.90
+hda 0.00 96.00 33.00 9.00 592.00 808.00 296.00 404.00 33.33 0.53 13.60 4.69 19.70
-Time: 08:40:15
+Time: 11:47:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:16
+Time: 11:47:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:17
+Time: 11:47:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.40 0.40 0.20
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:18
+Time: 11:47:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 531.00 0.00 29.00 0.00 4480.00 0.00 2240.00 154.48 0.38 12.93 1.31 3.80
+
+Time: 11:47:44
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 153.00 0.00 475.00 0.00 6312.00 0.00 3156.00 13.29 69.01 100.17 1.30 61.60
-Time: 08:40:19
+Time: 11:47:45
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 27.00 17.00 178.00 192.00 1696.00 96.00 848.00 9.68 112.65 390.09 5.13 100.10
+
+Time: 11:47:46
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 182.00 3.00 348.00 24.00 4968.00 12.00 2484.00 14.22 112.13 391.61 2.85 100.10
+
+Time: 11:47:47
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 6.06 0.00 150.51 0.00 355.56 0.00 177.78 2.36 48.18 502.75 4.78 71.92
+
+Time: 11:47:48
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 6.00 0.00 5.00 0.00 88.00 0.00 44.00 17.60 0.00 0.80 0.40 0.20
+
+Time: 11:47:49
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 2497.03 0.00 111.88 0.00 20871.29 0.00 10435.64 186.55 17.65 157.73 3.40 38.02
+
+Time: 11:47:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:20
+Time: 11:47:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:21
+Time: 11:47:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:22
+Time: 11:47:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3.03 0.00 122.22 0.00 1010.10 0.00 505.05 8.26 1.38 11.31 0.23 2.83
+hda 0.00 2.00 0.00 5.00 0.00 56.00 0.00 28.00 11.20 0.00 0.00 0.00 0.00
-Time: 08:40:23
+Time: 11:47:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 115.00 0.00 920.00 0.00 460.00 8.00 0.97 8.45 0.14 1.60
-Time: 08:40:24
+Time: 11:47:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:25
+Time: 11:47:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:26
+Time: 11:47:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:27
+Time: 11:47:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 734.31 0.00 42.16 0.00 6211.76 0.00 3105.88 147.35 0.85 20.19 1.49 6.27
+hda 0.00 1.98 0.00 4.95 0.00 55.45 0.00 27.72 11.20 0.00 0.00 0.00 0.00
-Time: 08:40:28
+Time: 11:47:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:29
+Time: 11:48:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:30
+Time: 11:48:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 811.88 0.99 42.57 7.92 6835.64 3.96 3417.82 157.09 1.36 31.14 2.75 11.98
-Time: 08:40:31
+Time: 11:48:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:32
+Time: 11:48:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 935.35 0.00 42.42 0.00 7822.22 0.00 3911.11 184.38 1.11 26.05 1.90 8.08
+hda 0.00 2.02 0.00 5.05 0.00 56.57 0.00 28.28 11.20 0.00 0.00 0.00 0.00
-Time: 08:40:33
+Time: 11:48:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:34
+Time: 11:48:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:35
+Time: 11:48:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 454.55 0.00 20.20 0.00 3797.98 0.00 1898.99 188.00 0.20 10.00 1.55 3.13
-Time: 08:40:36
+Time: 11:48:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:37
+Time: 11:48:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 715.00 0.00 50.00 0.00 6120.00 0.00 3060.00 122.40 1.48 29.66 1.74 8.70
+hda 0.00 6.12 0.00 5.10 0.00 89.80 0.00 44.90 17.60 0.00 0.20 0.20 0.10
-Time: 08:40:38
+Time: 11:48:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 1.96 0.00 15.69 0.00 7.84 8.00 0.01 3.00 1.50 0.29
-Time: 08:40:39
+Time: 11:48:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:40
+Time: 11:48:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 9.80 0.00 78.43 0.00 39.22 0.00 8.00 0.11 10.80 9.00 8.82
+hda 0.00 626.26 0.00 1.01 0.00 5236.36 0.00 2618.18 5184.00 0.03 1.00 1.00 0.10
-Time: 08:40:41
+Time: 11:48:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 20.79 0.00 205.94 0.00 102.97 0.00 9.90 0.17 8.33 7.90 16.44
+hda 0.00 14.85 0.00 28.71 0.00 134.65 0.00 67.33 4.69 0.56 20.45 1.41 4.06
-Time: 08:40:42
+Time: 11:48:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 440.82 0.00 35.71 0.00 3812.24 0.00 1906.12 106.74 0.34 9.66 0.86 3.06
+hda 0.00 5.10 0.00 5.10 0.00 81.63 0.00 40.82 16.00 0.00 0.20 0.20 0.10
-Time: 08:40:43
+Time: 11:48:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:44
+Time: 11:48:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:45
+Time: 11:48:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 24.49 0.00 244.90 0.00 122.45 0.00 10.00 0.23 9.33 8.12 19.90
+hda 0.00 679.80 0.00 1.01 0.00 5688.89 0.00 2844.44 5632.00 0.03 1.00 1.00 0.10
-Time: 08:40:46
+Time: 11:48:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 14.00 0.00 32.00 0.00 128.00 0.00 64.00 4.00 0.72 23.50 1.78 5.70
-Time: 08:40:47
+Time: 11:48:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 766.00 0.00 272.00 0.00 9216.00 0.00 4608.00 33.88 30.27 53.75 1.00 27.10
+hda 0.00 1.85 0.00 4.63 0.00 51.85 0.00 25.93 11.20 0.00 0.00 0.00 0.00
-Time: 08:40:48
+Time: 11:48:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 293.07 0.00 497.03 0.00 6320.79 0.00 3160.40 12.72 111.07 219.93 1.99 99.11
+hda 0.00 150.00 0.00 481.00 0.00 5048.00 0.00 2524.00 10.49 18.92 39.34 0.42 20.40
-Time: 08:40:49
+Time: 11:48:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 47.47 0.00 276.77 0.00 1713.13 0.00 856.57 6.19 39.01 204.40 1.86 51.41
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:50
+Time: 11:48:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 482.65 0.00 25.51 0.00 4065.31 0.00 2032.65 159.36 0.24 9.36 1.36 3.47
-Time: 08:40:51
+Time: 11:48:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:52
+Time: 11:48:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 703.92 0.00 35.29 0.00 5913.73 0.00 2956.86 167.56 0.60 17.08 1.58 5.59
+hda 0.00 5.94 0.00 4.95 0.00 87.13 0.00 43.56 17.60 0.00 0.20 0.20 0.10
-Time: 08:40:53
+Time: 11:48:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:54
+Time: 11:48:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:55
+Time: 11:48:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 513.13 0.00 28.28 0.00 4331.31 0.00 2165.66 153.14 0.38 13.39 2.25 6.36
-Time: 08:40:56
+Time: 11:48:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:57
+Time: 11:48:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 376.00 0.00 26.00 0.00 3216.00 0.00 1608.00 123.69 0.16 6.00 0.62 1.60
+hda 0.00 2.00 0.00 5.00 0.00 56.00 0.00 28.00 11.20 0.00 0.00 0.00 0.00
-Time: 08:40:58
+Time: 11:48:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:40:59
+Time: 11:48:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:00
+Time: 11:48:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1049.00 0.00 41.00 0.00 8720.00 0.00 4360.00 212.68 1.22 29.85 1.80 7.40
-Time: 08:41:01
+Time: 11:48:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:02
+Time: 11:48:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 305.00 0.00 32.00 0.00 2696.00 0.00 1348.00 84.25 0.15 4.69 0.38 1.20
+hda 0.00 5.00 0.00 5.00 0.00 80.00 0.00 40.00 16.00 0.00 0.20 0.20 0.10
-Time: 08:41:03
+Time: 11:48:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:04
+Time: 11:48:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:05
+Time: 11:48:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 511.00 0.00 34.00 0.00 4360.00 0.00 2180.00 128.24 0.54 15.85 1.76 6.00
-Time: 08:41:06
+Time: 11:48:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:07
+Time: 11:48:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5.05 0.00 5.05 0.00 80.81 0.00 40.40 16.00 0.00 0.20 0.20 0.10
+hda 0.00 1.98 0.00 4.95 0.00 55.45 0.00 27.72 11.20 0.00 0.00 0.00 0.00
-Time: 08:41:08
+Time: 11:48:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 376.00 0.00 19.00 0.00 3160.00 0.00 1580.00 166.32 0.10 5.26 0.79 1.50
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:09
+Time: 11:48:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:10
+Time: 11:48:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 326.73 0.00 21.78 0.00 2788.12 0.00 1394.06 128.00 0.14 6.23 0.59 1.29
-Time: 08:41:11
+Time: 11:48:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:12
+Time: 11:48:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 0.00 6.00 0.00 56.00 0.00 28.00 9.33 0.01 1.00 0.50 0.30
+hda 0.00 6.00 0.00 5.00 0.00 88.00 0.00 44.00 17.60 0.00 0.20 0.20 0.10
-Time: 08:41:13
+Time: 11:48:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 568.69 0.00 35.35 0.00 4832.32 0.00 2416.16 136.69 0.48 13.46 1.26 4.44
+hda 0.00 0.00 0.00 2.00 0.00 16.00 0.00 8.00 8.00 0.01 3.00 1.50 0.30
-Time: 08:41:14
+Time: 11:48:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:15
+Time: 11:48:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 245.00 0.00 13.00 0.00 2064.00 0.00 1032.00 158.77 0.05 4.15 0.77 1.00
-Time: 08:41:16
+Time: 11:48:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:17
+Time: 11:48:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3.96 0.00 5.94 0.00 79.21 0.00 39.60 13.33 0.00 0.67 0.67 0.40
+hda 0.00 2.02 0.00 5.05 0.00 56.57 0.00 28.28 11.20 0.00 0.20 0.20 0.10
-Time: 08:41:18
+Time: 11:48:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:19
+Time: 11:48:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 718.63 0.00 38.24 0.00 6054.90 0.00 3027.45 158.36 1.26 32.95 2.21 8.43
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:20
+Time: 11:48:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 385.15 0.00 22.77 0.00 3263.37 0.00 1631.68 143.30 0.17 7.35 0.65 1.49
-Time: 08:41:21
+Time: 11:48:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:22
+Time: 11:48:53
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 4.00 0.00 6.00 0.00 80.00 0.00 40.00 13.33 0.00 0.00 0.00 0.00
+
+Time: 11:48:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4.90 0.00 75.49 0.00 643.14 0.00 321.57 8.52 0.48 6.35 0.18 1.37
+hda 0.00 2.02 0.00 69.70 0.00 573.74 0.00 286.87 8.23 0.50 7.17 0.22 1.52
-Time: 08:41:23
+Time: 11:48:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:24
+Time: 11:48:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 587.76 0.00 31.63 0.00 4955.10 0.00 2477.55 156.65 0.52 16.29 1.32 4.18
+hda 0.00 543.56 0.00 22.77 0.00 4538.61 0.00 2269.31 199.30 0.36 15.26 2.22 5.05
-Time: 08:41:25
+Time: 11:48:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 2.02 0.00 8.08 0.00 4.04 4.00 0.00 4.50 0.00 0.00
-Time: 08:41:26
+Time: 11:48:58
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 6.00 0.00 5.00 0.00 88.00 0.00 44.00 17.60 0.00 0.20 0.20 0.10
+
+Time: 11:48:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:27
+Time: 11:49:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4.04 0.00 5.05 0.00 72.73 0.00 36.36 14.40 0.00 0.20 0.20 0.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:28
+Time: 11:49:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:29
+Time: 11:49:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 531.00 0.00 31.00 0.00 4496.00 0.00 2248.00 145.03 0.44 14.23 2.00 6.20
+hda 0.00 470.71 0.00 27.27 0.00 3983.84 0.00 1991.92 146.07 0.23 8.56 1.33 3.64
-Time: 08:41:30
+Time: 11:49:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 10.89 0.00 538.61 0.00 269.31 0.00 49.45 0.05 4.91 4.27 4.65
+hda 0.00 1.98 0.00 4.95 0.00 55.45 0.00 27.72 11.20 0.00 0.00 0.00 0.00
-Time: 08:41:31
+Time: 11:49:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:32
+Time: 11:49:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6409.09 2.02 264.65 32.32 54464.65 16.16 27232.32 204.36 77.04 179.27 2.68 71.52
+hda 1.00 0.00 13.00 0.00 592.00 0.00 296.00 0.00 45.54 0.20 15.62 7.54 9.80
-Time: 08:41:33
+Time: 11:49:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3920.00 0.00 357.00 0.00 33576.00 0.00 16788.00 94.05 129.73 383.43 2.80 100.10
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:34
+Time: 11:49:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 770.00 4.00 861.00 64.00 12624.00 32.00 6312.00 14.67 82.58 120.66 1.12 97.30
+hda 0.00 7123.00 2.00 324.00 40.00 60632.00 20.00 30316.00 186.11 136.22 265.84 2.94 95.80
-Time: 08:41:35
+Time: 11:49:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1324.51 4.90 144.12 156.86 11749.02 78.43 5874.51 79.89 0.99 6.63 1.96 29.22
+hda 0.00 3383.00 0.00 298.00 0.00 29040.00 0.00 14520.00 97.45 118.38 409.59 3.36 100.10
-Time: 08:41:36
+Time: 11:49:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3755.00 0.00 91.00 0.00 31504.00 0.00 15752.00 346.20 15.20 32.76 2.07 18.80
+hda 0.00 924.00 1.00 653.00 8.00 13216.00 4.00 6608.00 20.22 73.22 181.06 1.52 99.40
-Time: 08:41:37
+Time: 11:49:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1279.80 0.00 211.11 0.00 11183.84 0.00 5591.92 52.98 14.58 127.51 2.48 52.42
+hda 1.00 536.00 4.00 323.00 208.00 5632.00 104.00 2816.00 17.86 26.02 81.63 1.25 40.90
-Time: 08:41:38
+Time: 11:49:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1027.00 1.00 140.00 8.00 9336.00 4.00 4668.00 66.27 0.43 3.03 1.93 27.20
+hda 0.00 1038.00 1.00 93.00 8.00 9048.00 4.00 4524.00 96.34 0.69 7.39 1.41 13.30
-Time: 08:41:39
+Time: 11:49:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2965.00 0.00 279.00 0.00 25952.00 0.00 12976.00 93.02 8.05 28.84 1.97 55.10
+hda 0.00 4794.00 0.00 238.00 0.00 40256.00 0.00 20128.00 169.14 27.34 114.85 2.06 49.00
-Time: 08:41:40
+Time: 11:49:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2309.90 0.00 269.31 0.00 20633.66 0.00 10316.83 76.62 1.34 4.99 1.64 44.06
+hda 0.00 1251.00 1.00 182.00 8.00 11464.00 4.00 5732.00 62.69 0.27 1.49 0.78 14.20
-Time: 08:41:41
+Time: 11:49:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3680.81 0.00 120.20 0.00 30650.51 0.00 15325.25 254.99 21.38 108.32 2.53 30.40
+hda 0.00 3065.00 1.00 268.00 8.00 26664.00 4.00 13332.00 99.15 7.43 27.64 1.45 38.90
-Time: 08:41:42
+Time: 11:49:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2543.00 0.00 305.00 0.00 22544.00 0.00 11272.00 73.91 2.23 34.46 1.76 53.60
+hda 7.00 2465.00 1.00 319.00 64.00 22272.00 32.00 11136.00 69.80 3.27 10.23 1.53 49.00
-Time: 08:41:43
+Time: 11:49:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2951.00 0.00 322.00 0.00 26184.00 0.00 13092.00 81.32 1.04 3.25 1.48 47.50
+hda 0.00 3536.63 0.00 114.85 0.00 29607.92 0.00 14803.96 257.79 27.41 112.44 2.56 29.41
-Time: 08:41:44
+Time: 11:49:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1891.00 3.00 437.00 128.00 18632.00 64.00 9316.00 42.64 1.06 2.41 1.37 60.40
+hda 0.00 2536.36 0.00 355.56 0.00 22731.31 0.00 11365.66 63.93 8.06 64.25 1.50 53.23
-Time: 08:41:45
+Time: 11:49:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 824.00 0.00 379.00 0.00 9616.00 0.00 4808.00 25.37 0.68 1.81 1.59 60.20
+hda 0.00 2842.57 0.00 295.05 0.00 25100.99 0.00 12550.50 85.07 1.75 5.94 1.58 46.63
-Time: 08:41:46
+Time: 11:49:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 310.00 0.00 133.00 0.00 3544.00 0.00 1772.00 26.65 0.24 1.78 1.71 22.80
+hda 1.01 2002.02 2.02 398.99 129.29 19216.16 64.65 9608.08 48.24 1.16 2.88 1.33 53.23
-Time: 08:41:47
+Time: 11:49:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 323.76 0.00 156.44 0.00 3849.50 0.00 1924.75 24.61 0.42 2.68 1.29 20.20
+hda 0.00 1048.51 0.00 449.50 0.00 11976.24 0.00 5988.12 26.64 0.51 1.14 0.97 43.66
-Time: 08:41:48
+Time: 11:49:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 658.00 1.00 277.00 8.00 7480.00 4.00 3740.00 26.94 0.97 3.50 1.41 39.30
+hda 0.00 333.00 0.00 127.00 0.00 3680.00 0.00 1840.00 28.98 0.16 1.23 1.20 15.30
-Time: 08:41:49
+Time: 11:49:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 203.00 0.00 77.00 0.00 2232.00 0.00 1116.00 28.99 0.12 1.55 1.51 11.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:50
+Time: 11:49:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 798.00 1.00 355.00 8.00 9256.00 4.00 4628.00 26.02 1.17 3.28 0.82 29.20
+
+Time: 11:49:24
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 475.25 0.00 154.46 0.00 5037.62 0.00 2518.81 32.62 0.18 1.19 1.12 17.33
-Time: 08:41:51
+Time: 11:49:25
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 5.05 0.00 5.05 0.00 80.81 0.00 40.40 16.00 0.00 0.20 0.20 0.10
+
+Time: 11:49:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:41:52
+Time: 11:49:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 467.68 0.00 126.26 0.00 4751.52 0.00 2375.76 37.63 0.32 2.52 1.42 17.88
+hda 0.00 267.00 0.00 78.00 0.00 2760.00 0.00 1380.00 35.38 0.10 1.31 1.27 9.90
-Time: 08:41:53
+Time: 11:49:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2023.76 0.00 233.66 0.00 18059.41 0.00 9029.70 77.29 1.59 6.81 1.44 33.56
+hda 0.00 2525.74 0.00 330.69 0.00 22851.49 0.00 11425.74 69.10 2.29 6.91 1.07 35.54
-Time: 08:41:54
+Time: 11:49:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2415.00 0.00 356.00 0.00 22176.00 0.00 11088.00 62.29 2.59 7.26 1.22 43.50
+hda 0.00 2700.00 0.00 370.00 0.00 24560.00 0.00 12280.00 66.38 3.07 8.29 0.89 33.10
-Time: 08:41:55
+Time: 11:49:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2952.48 0.00 263.37 0.00 25893.07 0.00 12946.53 98.32 2.76 6.02 1.73 45.45
+hda 0.00 3114.00 0.00 357.00 0.00 27776.00 0.00 13888.00 77.80 3.92 10.96 1.15 41.00
-Time: 08:41:56
+Time: 11:49:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1720.41 0.00 307.14 0.00 16040.82 0.00 8020.41 52.23 1.45 8.67 1.56 47.96
+hda 0.00 2287.00 0.00 333.00 0.00 20952.00 0.00 10476.00 62.92 0.92 2.76 1.08 35.80
-Time: 08:41:57
+Time: 11:49:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1623.76 0.00 170.30 0.00 14352.48 0.00 7176.24 84.28 1.20 7.03 1.60 27.33
+hda 0.00 3370.00 0.00 380.00 0.00 30008.00 0.00 15004.00 78.97 3.30 8.69 1.14 43.50
-Time: 08:41:58
+Time: 11:49:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2107.00 0.00 314.00 0.00 19368.00 0.00 9684.00 61.68 0.77 2.44 1.45 45.50
+hda 0.00 1017.00 0.00 220.00 0.00 9912.00 0.00 4956.00 45.05 0.38 1.71 0.93 20.40
-Time: 08:41:59
+Time: 11:49:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2303.96 0.00 190.10 0.00 19952.48 0.00 9976.24 104.96 3.20 16.81 1.56 29.70
+hda 0.00 466.34 0.00 185.15 0.00 5211.88 0.00 2605.94 28.15 0.23 1.22 0.89 16.44
-Time: 08:42:00
+Time: 11:49:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 419.80 0.00 177.23 0.00 4792.08 0.00 2396.04 27.04 0.36 2.01 1.61 28.51
+hda 0.00 509.00 3.00 200.00 48.00 5672.00 24.00 2836.00 28.18 0.29 1.43 0.99 20.10
-Time: 08:42:01
+Time: 11:49:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 682.00 0.00 262.00 0.00 7552.00 0.00 3776.00 28.82 0.47 1.81 1.48 38.90
+hda 0.00 453.54 0.00 176.77 0.00 5042.42 0.00 2521.21 28.53 0.21 1.19 0.85 14.95
-Time: 08:42:02
+Time: 11:49:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 409.00 2.00 167.00 48.00 4608.00 24.00 2304.00 27.55 0.38 2.24 1.41 23.80
+hda 0.00 619.00 0.00 249.00 0.00 6944.00 0.00 3472.00 27.89 0.36 1.45 1.21 30.20
-Time: 08:42:03
+Time: 11:49:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 465.35 0.00 188.12 0.00 5227.72 0.00 2613.86 27.79 0.35 1.87 1.58 29.80
+hda 0.00 201.98 0.00 55.45 0.00 2059.41 0.00 1029.70 37.14 0.06 1.02 0.80 4.46
-Time: 08:42:04
+Time: 11:49:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 432.00 0.00 162.00 0.00 4752.00 0.00 2376.00 29.33 0.31 1.90 1.46 23.60
+hda 0.00 27.72 0.00 14.85 0.00 348.51 0.00 174.26 23.47 0.01 0.47 0.47 0.69
-Time: 08:42:05
+Time: 11:49:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 610.89 0.00 244.55 0.00 6843.56 0.00 3421.78 27.98 0.43 1.76 1.57 38.42
+hda 0.00 54.00 0.00 22.00 0.00 640.00 0.00 320.00 29.09 0.03 1.23 0.95 2.10
-Time: 08:42:06
+Time: 11:49:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 176.77 0.00 48.48 0.00 1802.02 0.00 901.01 37.17 0.11 2.17 1.46 7.07
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:07
+Time: 11:49:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 49.00 0.00 29.00 0.00 640.00 0.00 320.00 22.07 0.05 1.72 1.38 4.00
+hda 0.00 499.00 0.00 155.00 0.00 5264.00 0.00 2632.00 33.96 0.22 1.40 1.19 18.40
-Time: 08:42:08
+Time: 11:49:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 25.00 0.00 14.00 0.00 320.00 0.00 160.00 22.86 0.02 1.21 0.93 1.30
+hda 0.00 575.76 0.00 145.45 0.00 5769.70 0.00 2884.85 39.67 0.29 2.01 1.15 16.77
-Time: 08:42:09
+Time: 11:49:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 11.00 0.00 11.00 0.00 176.00 0.00 88.00 16.00 0.01 0.91 0.64 0.70
+hda 0.00 438.61 0.00 229.70 0.00 5370.30 0.00 2685.15 23.38 1.50 6.50 0.57 13.07
-Time: 08:42:10
+Time: 11:49:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 319.00 0.00 125.00 0.00 3560.00 0.00 1780.00 28.48 0.23 1.87 1.00 12.50
+hda 0.00 408.08 0.00 147.47 0.00 4444.44 0.00 2222.22 30.14 0.17 1.14 1.09 16.06
-Time: 08:42:11
+Time: 11:49:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 419.80 0.00 150.50 0.00 4562.38 0.00 2281.19 30.32 0.32 2.11 1.26 18.91
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:12
+Time: 11:49:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 528.00 0.00 404.00 0.00 7504.00 0.00 3752.00 18.57 12.33 30.50 1.06 42.70
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:13
+Time: 11:49:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 443.43 0.00 101.01 0.00 4355.56 0.00 2177.78 43.12 0.21 2.10 1.94 19.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:14
+Time: 11:49:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 151.49 0.00 39.60 0.00 1528.71 0.00 764.36 38.60 0.08 1.93 1.90 7.52
+hda 0.00 38.38 0.00 134.34 0.00 1406.06 0.00 703.03 10.47 1.79 13.32 0.21 2.83
-Time: 08:42:15
+Time: 11:49:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6.00 0.00 5.00 0.00 88.00 0.00 44.00 17.60 0.00 0.20 0.20 0.10
+hda 0.00 2700.99 0.99 117.82 7.92 22550.50 3.96 11275.25 189.87 16.05 135.08 2.98 35.35
+
+Time: 11:49:51
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 3276.00 3.00 143.00 24.00 27352.00 12.00 13676.00 187.51 8.05 55.11 3.06 44.70
-Time: 08:42:16
+Time: 11:49:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:17
+Time: 11:49:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:18
+Time: 11:49:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2528.00 1.00 82.00 8.00 21080.00 4.00 10540.00 254.07 11.65 74.99 2.83 23.50
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:19
+Time: 11:49:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1999.01 4.95 103.96 39.60 17053.47 19.80 8526.73 156.95 8.22 85.68 2.90 31.58
+hda 0.00 5.05 0.00 5.05 0.00 80.81 0.00 40.40 16.00 0.00 0.20 0.20 0.10
-Time: 08:42:20
+Time: 11:49:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1372.28 0.00 168.32 0.00 11897.03 0.00 5948.51 70.68 2.94 42.79 1.41 23.76
+hda 0.00 381.00 0.00 18.00 0.00 3192.00 0.00 1596.00 177.33 0.12 6.44 0.78 1.40
-Time: 08:42:21
+Time: 11:49:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:22
+Time: 11:49:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 2.00 0.00 16.00 0.00 8.00 8.00 0.01 3.00 1.50 0.30
-Time: 08:42:23
+Time: 11:49:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:24
+Time: 11:50:00
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1.98 0.00 4.95 0.00 55.45 0.00 27.72 11.20 0.00 0.00 0.00 0.00
+
+Time: 11:50:01
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.01 669.70 14.14 28.28 242.42 5591.92 121.21 2795.96 137.52 2.69 61.12 5.60 23.74
+
+Time: 11:50:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 2.97 0.00 23.76 0.00 11.88 8.00 0.01 3.00 1.00 0.30
+hda 3.00 0.00 85.00 2.00 2376.00 8.00 1188.00 4.00 27.40 0.66 8.62 6.80 59.20
-Time: 08:42:25
+Time: 11:50:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1044.44 0.00 52.53 0.00 8775.76 0.00 4387.88 167.08 2.11 40.25 2.15 11.31
+hda 0.00 566.34 3.96 29.70 126.73 4768.32 63.37 2384.16 145.41 0.48 14.32 1.68 5.64
-Time: 08:42:26
+Time: 11:50:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:27
+Time: 11:50:05
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 60.00 0.00 44.00 0.00 832.00 0.00 416.00 18.91 0.17 3.93 0.23 1.00
+
+Time: 11:50:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:28
+Time: 11:50:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:29
+Time: 11:50:08
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1049.49 0.00 47.47 0.00 8775.76 0.00 4387.88 184.85 1.91 40.26 2.53 12.02
+
+Time: 11:50:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:30
+Time: 11:50:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1346.46 0.00 79.80 0.00 11410.10 0.00 5705.05 142.99 3.84 48.15 1.84 14.65
+hda 0.00 1.96 0.00 4.90 0.00 54.90 0.00 27.45 11.20 0.00 0.00 0.00 0.00
-Time: 08:42:31
+Time: 11:50:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:32
+Time: 11:50:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:33
+Time: 11:50:13
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1184.85 0.00 53.54 0.00 9907.07 0.00 4953.54 185.06 2.71 50.60 2.53 13.54
+
+Time: 11:50:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:34
+Time: 11:50:15
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 4.95 0.00 4.95 0.00 79.21 0.00 39.60 16.00 0.00 0.20 0.20 0.10
+
+Time: 11:50:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:42:35
+Time: 11:50:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 0.00 5.00 0.00 48.00 0.00 24.00 9.60 0.00 0.00 0.00 0.00
+hda 0.00 2944.55 0.00 170.30 0.00 24926.73 0.00 12463.37 146.37 6.79 39.87 1.92 32.77
-Time: 08:42:36
+Time: 11:50:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1177.78 0.00 44.44 0.00 9777.78 0.00 4888.89 220.00 1.53 34.48 2.16 9.60
+hda 0.00 2744.00 0.00 243.00 0.00 23896.00 0.00 11948.00 98.34 28.32 116.56 1.83 44.40
-Time: 08:42:37
+Time: 11:50:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 4281.00 1.00 306.00 8.00 36728.00 4.00 18364.00 119.66 37.76 121.98 2.11 64.70
-Time: 08:42:38
+Time: 11:50:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.99 0.00 7.92 0.00 3.96 8.00 0.00 3.00 3.00 0.30
+hda 0.00 4049.00 4.00 185.00 48.00 34136.00 24.00 17068.00 180.87 13.82 50.93 2.26 42.80
-Time: 08:42:39
+Time: 11:50:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 746.00 0.00 30.00 0.00 6208.00 0.00 3104.00 206.93 0.74 24.67 2.03 6.10
+hda 0.00 2614.00 2.00 280.00 16.00 22864.00 8.00 11432.00 81.13 6.16 37.84 1.97 55.50
-Time: 08:42:40
+Time: 11:50:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4845.45 0.00 168.69 0.00 41050.51 0.00 20525.25 243.35 9.95 44.70 2.16 36.46
+hda 0.00 318.00 88.00 111.00 1152.00 3424.00 576.00 1712.00 22.99 1.17 5.87 3.79 75.50
-Time: 08:42:41
+Time: 11:50:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2962.38 0.00 219.80 0.00 25172.28 0.00 12586.14 114.52 35.40 107.95 2.48 54.55
+hda 4.00 0.00 102.00 0.00 1688.00 0.00 844.00 0.00 16.55 0.40 3.93 3.13 31.90
-Time: 08:42:42
+Time: 11:50:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1700.00 0.00 231.00 0.00 14808.00 0.00 7404.00 64.10 8.51 98.18 2.10 48.40
+hda 2.02 20.20 62.63 552.53 1478.79 5446.46 739.39 2723.23 11.26 98.82 139.23 1.47 90.30
-Time: 08:42:43
+Time: 11:50:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3875.25 5.94 212.87 47.52 32704.95 23.76 16352.48 149.68 20.49 93.64 2.32 50.69
+hda 2.97 828.71 35.64 124.75 1132.67 7200.00 566.34 3600.00 51.95 50.37 181.74 5.81 93.17
-Time: 08:42:44
+Time: 11:50:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2603.00 10.00 286.00 80.00 23120.00 40.00 11560.00 78.38 5.06 17.09 2.08 61.60
+hda 7.00 22.00 102.00 51.00 2792.00 192.00 1396.00 96.00 19.50 7.89 276.69 4.12 63.00
-Time: 08:42:45
+Time: 11:50:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 351.00 121.00 78.00 1680.00 3432.00 840.00 1716.00 25.69 0.84 4.12 3.56 70.90
+hda 3.96 57.43 74.26 10.89 1940.59 546.53 970.30 273.27 29.21 0.34 4.08 3.01 25.64
-Time: 08:42:46
+Time: 11:50:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 81.82 1.01 735.35 0.00 367.68 0.00 8.88 0.28 3.61 3.05 25.25
+hda 1.98 947.52 103.96 33.66 2376.24 7849.50 1188.12 3924.75 74.30 1.23 8.93 1.63 22.38
-Time: 08:42:47
+Time: 11:50:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 25.74 61.39 332.67 1140.59 3817.82 570.30 1908.91 12.58 49.75 57.11 1.26 49.50
+hda 1.01 0.00 7.07 0.00 218.18 0.00 109.09 0.00 30.86 0.04 5.57 2.57 1.82
-Time: 08:42:48
+Time: 11:50:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 3.03 6.06 145.45 288.89 2602.02 1462.63 1301.01 731.31 9.36 50.18 178.73 1.73 75.05
+hda 2.00 1067.00 13.00 40.00 328.00 8856.00 164.00 4428.00 173.28 1.31 24.74 2.53 13.40
-Time: 08:42:49
+Time: 11:50:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 43.00 0.00 368.00 0.00 184.00 0.00 8.56 0.06 1.49 1.49 6.40
+hda 1.00 0.00 27.00 0.00 664.00 0.00 332.00 0.00 24.59 0.16 5.85 2.56 6.90
-Time: 08:42:50
+Time: 11:50:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2282.18 4.95 80.20 39.60 19168.32 19.80 9584.16 225.58 3.66 28.19 2.05 17.43
+hda 1.00 918.00 17.00 32.00 416.00 7600.00 208.00 3800.00 163.59 1.12 22.90 2.86 14.00
-Time: 08:42:51
+Time: 11:50:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.92 0.00 35.64 0.00 79.21 0.00 39.60 2.22 1.89 88.39 3.11 11.09
+hda 8.00 0.00 172.00 1.00 5712.00 8.00 2856.00 4.00 33.06 0.44 2.55 2.03 35.10
-Time: 08:42:52
+Time: 11:50:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 11.11 0.00 185.86 0.00 92.93 0.00 16.73 0.04 3.55 3.55 3.94
+hda 0.00 978.22 1.98 34.65 15.84 8102.97 7.92 4051.49 221.62 1.25 34.16 2.84 10.40
-Time: 08:42:53
+Time: 11:50:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 562.00 0.00 21.00 0.00 4664.00 0.00 2332.00 222.10 0.36 17.19 2.33 4.90
+hda 0.00 505.10 498.98 21.43 4302.04 4212.24 2151.02 2106.12 16.36 4.73 9.09 1.64 85.51
-Time: 08:42:54
+Time: 11:50:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 131.00 0.00 1128.00 0.00 564.00 0.00 8.61 0.30 2.31 2.31 30.30
+hda 0.00 495.05 302.97 18.81 2653.47 4110.89 1326.73 2055.45 21.02 0.82 2.57 1.93 61.98
-Time: 08:42:55
+Time: 11:50:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2191.00 14.00 51.00 120.00 18136.00 60.00 9068.00 280.86 4.51 55.08 4.08 26.50
+hda 9.00 0.00 372.00 0.00 6312.00 0.00 3156.00 0.00 16.97 0.64 1.72 1.28 47.50
-Time: 08:42:56
+Time: 11:50:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 9.00 196.00 27.00 1600.00 88.00 800.00 44.00 7.57 1.55 11.10 2.27 50.60
+hda 3.96 979.21 280.20 34.65 3683.17 8110.89 1841.58 4055.45 37.46 3.46 10.98 2.03 63.86
-Time: 08:42:57
+Time: 11:50:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 0.00 145.00 0.00 1728.00 0.00 864.00 0.00 11.92 0.27 1.89 1.80 26.10
+hda 5.00 989.00 284.00 36.00 3608.00 8200.00 1804.00 4100.00 36.90 2.72 8.43 2.17 69.40
-Time: 08:42:58
+Time: 11:50:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 773.27 207.92 25.74 2209.90 6392.08 1104.95 3196.04 36.81 1.77 7.55 1.96 45.74
+hda 0.00 410.10 26.26 16.16 307.07 3410.10 153.54 1705.05 87.62 0.24 6.14 2.07 8.79
-Time: 08:42:59
+Time: 11:50:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 990.00 128.00 34.00 1560.00 8192.00 780.00 4096.00 60.20 4.12 25.46 2.96 47.90
+hda 2.00 0.00 636.00 1.00 5456.00 8.00 2728.00 4.00 8.58 0.72 1.13 1.12 71.50
-Time: 08:43:00
+Time: 11:50:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1861.00 99.00 0.00 800.00 15416.00 400.00 7708.00 163.80 1.91 1.21 1.32 13.10
+hda 0.00 0.00 621.78 0.00 5275.25 0.00 2637.62 0.00 8.48 0.81 1.29 1.29 80.00
-Time: 08:43:01
+Time: 11:50:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 788.89 55.56 6311.11 0.00 3155.56 0.00 7.47 38.87 34.64 1.20 101.11
+hda 6.93 584.16 116.83 21.78 3350.50 4847.52 1675.25 2423.76 59.14 1.56 11.25 4.89 67.72
-Time: 08:43:02
+Time: 11:50:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 8.91 464.36 12.87 4396.04 87.13 2198.02 43.56 9.39 1.37 26.31 1.54 73.37
+hda 4.08 0.00 97.96 0.00 2718.37 0.00 1359.18 0.00 27.75 0.57 5.91 5.25 51.43
-Time: 08:43:03
+Time: 11:50:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 0.00 113.00 0.00 2112.00 0.00 1056.00 0.00 18.69 0.35 3.05 2.90 32.80
+hda 7.84 665.69 81.37 25.49 2760.78 5529.41 1380.39 2764.71 77.58 1.73 16.10 5.87 62.75
-Time: 08:43:04
+Time: 11:50:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 117.82 115.84 3.96 1908.91 974.26 954.46 487.13 24.07 0.57 4.74 4.50 53.86
+hda 3.00 313.00 110.00 13.00 2864.00 2608.00 1432.00 1304.00 44.49 0.85 6.93 5.55 68.30
-Time: 08:43:05
+Time: 11:50:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 3.03 1359.60 152.53 0.00 2690.91 11248.48 1345.45 5624.24 91.39 1.73 4.37 4.05 61.72
+hda 5.00 0.00 117.00 0.00 2904.00 0.00 1452.00 0.00 24.82 0.66 5.56 5.23 61.20
-Time: 08:43:06
+Time: 11:50:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 2.00 9.00 138.00 48.00 1784.00 88.00 892.00 44.00 10.06 5.88 37.30 4.07 75.70
+hda 0.00 0.00 160.61 1.01 3022.22 8.08 1511.11 4.04 18.75 0.71 4.41 3.95 63.84
-Time: 08:43:07
+Time: 11:50:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 3.00 0.00 129.00 0.00 2496.00 0.00 1248.00 0.00 19.35 0.57 4.43 3.71 47.90
+hda 3.96 0.00 118.81 0.00 3049.50 0.00 1524.75 0.00 25.67 0.55 4.65 3.95 46.93
-Time: 08:43:08
+Time: 11:50:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 151.00 0.00 2160.00 0.00 1080.00 0.00 14.30 0.37 2.42 2.15 32.50
+hda 4.04 1235.35 64.65 45.45 1656.57 10246.46 828.28 5123.23 108.11 4.91 44.52 3.84 42.32
-Time: 08:43:09
+Time: 11:50:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 629.70 119.80 0.00 2019.80 5219.80 1009.90 2609.90 60.43 5.24 5.15 5.20 62.28
+hda 9.00 0.00 110.00 0.00 2536.00 0.00 1268.00 0.00 23.05 0.59 5.46 4.75 52.30
-Time: 08:43:10
+Time: 11:50:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1004.00 137.00 23.00 1144.00 8312.00 572.00 4156.00 59.10 2.87 41.40 5.87 93.90
+hda 0.00 0.00 120.79 0.00 1219.80 0.00 609.90 0.00 10.10 0.71 5.91 5.79 69.90
-Time: 08:43:11
+Time: 11:50:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.00 125.00 37.00 1072.00 72.00 536.00 36.00 7.06 12.97 85.69 6.17 100.00
+hda 0.00 0.00 163.00 0.00 1520.00 0.00 760.00 0.00 9.33 0.94 5.76 5.39 87.80
-Time: 08:43:12
+Time: 11:50:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 0.00 28.00 0.00 632.00 0.00 316.00 0.00 22.57 0.17 6.21 5.61 15.70
+hda 2.00 0.00 47.00 1.00 728.00 8.00 364.00 4.00 15.33 0.28 5.96 4.65 22.30
-Time: 08:43:13
+Time: 11:50:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 7.00 0.00 56.00 0.00 28.00 0.00 8.00 0.05 6.71 6.71 4.70
+hda 0.00 1519.80 6.93 56.44 55.45 12609.90 27.72 6304.95 199.88 3.62 57.14 3.16 20.00
-Time: 08:43:14
+Time: 11:50:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.00 0.00 24.00 0.00 12.00 0.00 8.00 0.01 3.33 3.33 1.00
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:43:15
+Time: 11:50:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1609.00 141.00 0.00 1144.00 13320.00 572.00 6660.00 102.58 1.50 5.32 5.28 74.50
+hda 2.02 0.00 60.61 0.00 670.71 0.00 335.35 0.00 11.07 0.49 7.95 6.15 37.27
-Time: 08:43:16
+Time: 11:50:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 10.89 83.17 57.43 665.35 102.97 332.67 51.49 5.46 14.63 109.36 6.38 89.70
+hda 0.00 0.00 244.55 0.00 1956.44 0.00 978.22 0.00 8.00 0.80 3.32 3.06 74.95
-Time: 08:43:17
+Time: 11:50:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1346.00 113.00 70.00 896.00 11328.00 448.00 5664.00 66.80 6.47 35.37 4.51 82.60
+hda 0.00 693.00 75.00 58.00 600.00 6024.00 300.00 3012.00 49.80 4.99 37.43 5.62 74.80
-Time: 08:43:18
+Time: 11:51:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 3.00 0.00 174.00 0.00 13280.00 0.00 6640.00 0.00 76.32 7.01 40.28 4.34 75.60
+hda 3.00 1064.00 124.00 40.00 2272.00 8832.00 1136.00 4416.00 67.71 9.25 56.26 5.24 86.00
-Time: 08:43:19
+Time: 11:51:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 8.00 0.00 75.00 0.00 9144.00 0.00 4572.00 0.00 121.92 0.34 4.52 3.93 29.50
+hda 1.00 0.00 157.00 0.00 10336.00 0.00 5168.00 0.00 65.83 1.05 6.95 4.27 67.00
-Time: 08:43:20
+Time: 11:51:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 378.00 20.00 11.00 496.00 3176.00 248.00 1588.00 118.45 0.95 25.42 6.74 20.90
+hda 15.00 0.00 109.00 0.00 10280.00 0.00 5140.00 0.00 94.31 0.73 6.66 4.66 50.80
-Time: 08:43:21
+Time: 11:51:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 10.89 107.92 9.90 13124.75 102.97 6562.38 51.49 112.27 1.31 12.51 3.45 40.69
+hda 4.95 375.25 50.50 14.85 1417.82 3120.79 708.91 1560.40 69.45 1.12 16.86 5.76 37.62
-Time: 08:43:22
+Time: 11:51:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 678.57 9.18 383.67 2302.04 9559.18 1151.02 4779.59 30.19 54.49 97.23 1.32 51.94
+hda 0.00 0.00 104.00 0.00 3800.00 0.00 1900.00 0.00 36.54 0.63 6.12 5.65 58.80
-Time: 08:43:23
+Time: 11:51:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4520.79 2.97 221.78 15.84 37956.44 7.92 18978.22 168.95 110.91 464.10 4.41 99.11
+hda 2.00 1673.00 80.00 98.00 5488.00 14544.00 2744.00 7272.00 112.54 51.03 117.50 5.58 99.40
-Time: 08:43:24
+Time: 11:51:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5521.00 7.00 243.00 56.00 46104.00 28.00 23052.00 184.64 111.58 447.56 4.00 100.10
+hda 0.00 489.00 43.00 65.00 5056.00 4056.00 2528.00 2028.00 84.37 17.59 441.90 8.94 96.50
-Time: 08:43:25
+Time: 11:51:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6808.82 0.00 297.06 0.00 57207.84 0.00 28603.92 192.58 109.39 363.67 3.32 98.63
+hda 0.00 0.00 108.91 0.00 15588.12 0.00 7794.06 0.00 143.13 0.75 6.92 6.31 68.71
-Time: 08:43:26
+Time: 11:51:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3609.18 15.31 291.84 1208.16 30971.43 604.08 15485.71 104.77 147.01 366.59 3.33 102.14
+hda 0.00 1383.84 92.93 25.25 11006.06 11563.64 5503.03 5781.82 190.97 2.27 7.06 5.91 69.90
-Time: 08:43:27
+Time: 11:51:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4059.80 13.73 239.22 3513.73 34494.12 1756.86 17247.06 150.26 138.54 594.92 3.88 98.14
+hda 0.00 965.35 61.39 75.25 2938.61 8110.89 1469.31 4055.45 80.87 19.92 135.98 6.78 92.57
-Time: 08:43:28
+Time: 11:51:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4246.46 14.14 212.12 3361.62 35781.82 1680.81 17890.91 173.00 140.27 633.71 4.47 101.11
+hda 0.00 4652.53 30.30 76.77 1486.87 38965.66 743.43 19482.83 377.81 98.38 160.28 9.30 99.60
-Time: 08:43:29
+Time: 11:51:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4312.87 14.85 196.04 3556.44 36007.92 1778.22 18003.96 187.61 142.64 640.50 4.70 99.11
+hda 0.00 1284.16 56.44 81.19 1394.06 10780.20 697.03 5390.10 88.46 138.48 673.85 7.20 99.11
-Time: 08:43:30
+Time: 11:51:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1855.56 25.25 150.51 2311.11 15329.29 1155.56 7664.65 100.37 67.01 641.72 5.70 100.20
+hda 0.00 2758.59 23.23 116.16 177.78 23103.03 88.89 11551.52 167.01 146.14 1177.52 7.25 101.11
-Time: 08:43:31
+Time: 11:51:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 4485.15 143.56 95.05 3184.16 37211.88 1592.08 18605.94 169.29 53.32 140.14 4.10 97.72
+hda 0.00 3086.14 5.94 149.50 55.45 25956.44 27.72 12978.22 167.34 143.57 1084.15 6.38 99.11
-Time: 08:43:32
+Time: 11:51:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2049.00 104.00 226.00 1576.00 17352.00 788.00 8676.00 57.36 81.88 319.70 2.99 98.80
+hda 0.00 1734.00 7.00 159.00 56.00 14800.00 28.00 7400.00 89.49 118.28 887.36 6.03 100.10
-Time: 08:43:33
+Time: 11:51:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 1071.00 20.00 488.00 280.00 13536.00 140.00 6768.00 27.20 55.28 86.75 1.61 81.70
+hda 0.00 2876.77 54.55 149.49 3103.03 24533.33 1551.52 12266.67 135.45 122.63 544.24 4.96 101.11
-Time: 08:43:34
+Time: 11:51:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 36.36 54.55 428.28 0.00 214.14 0.00 4.71 3.05 143.09 2.03 18.48
+hda 0.00 1902.97 18.81 125.74 4071.29 16245.54 2035.64 8122.77 140.55 142.22 767.90 6.86 99.11
-Time: 08:43:35
+Time: 11:51:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6.80 0.00 2.91 0.00 77.67 0.00 38.83 26.67 0.00 0.33 0.33 0.10
+hda 0.00 2109.90 14.85 121.78 3556.44 17893.07 1778.22 8946.53 156.99 144.30 964.85 7.25 99.11
-Time: 08:43:36
+Time: 11:51:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1816.00 18.00 106.00 4352.00 15296.00 2176.00 7648.00 158.45 141.98 1134.28 8.07 100.10
-Time: 08:43:37
+Time: 11:51:19
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 2724.24 26.26 139.39 5688.89 22820.20 2844.44 11410.10 172.10 144.46 815.45 6.10 101.11
+
+Time: 11:51:20
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 19.80 119.80 4815.84 0.00 2407.92 0.00 34.50 73.39 1274.98 7.10 99.11
+
+Time: 11:51:21
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 6055.56 17.17 141.41 4137.37 50674.75 2068.69 25337.37 345.63 104.92 321.45 6.36 100.81
+
+Time: 11:51:22
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.00 2376.00 25.00 96.00 4024.00 19776.00 2012.00 9888.00 196.69 141.83 712.40 8.27 100.10
+
+Time: 11:51:23
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.96 968.63 114.71 46.08 1741.18 8000.00 870.59 4000.00 60.59 140.01 575.96 6.10 98.14
+
+Time: 11:51:24
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1394.00 160.00 174.00 2152.00 11568.00 1076.00 5784.00 41.08 107.73 823.89 3.00 100.10
+
+Time: 11:51:25
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 3161.00 1.00 208.00 32.00 26840.00 16.00 13420.00 128.57 21.69 141.33 4.00 83.70
+
+Time: 11:51:26
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 8.00 0.00 88.00 0.00 44.00 0.00 11.00 0.10 12.12 2.88 2.30
+
+Time: 11:51:27
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 33.33 0.00 404.04 0.00 202.02 0.00 12.12 0.63 18.85 3.94 13.13
+
+Time: 11:51:28
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 7.00 0.00 3.00 0.00 80.00 0.00 40.00 26.67 0.00 0.33 0.33 0.10
+
+Time: 11:51:29
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:43:38
+Time: 11:51:30
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 482.00 0.00 24.00 0.00 4048.00 0.00 2024.00 168.67 0.34 14.38 2.67 6.40
+
+Time: 11:51:31
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 293.07 23.76 691.09 285.15 9829.70 142.57 4914.85 14.15 103.41 91.79 1.29 92.48
+
+Time: 11:51:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 407.14 11.22 21.43 195.92 3428.57 97.96 1714.29 111.00 0.30 8.56 2.41 7.86
+hda 0.00 4.04 111.11 344.44 1397.98 2787.88 698.99 1393.94 9.19 116.01 243.39 2.22 101.11
-Time: 08:43:39
+Time: 11:51:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 726.73 126.73 98.02 1370.30 6598.02 685.15 3299.01 35.45 1.02 4.67 1.44 32.48
+hda 0.00 175.25 18.81 300.99 300.99 3809.90 150.50 1904.95 12.85 110.78 416.43 3.10 99.11
-Time: 08:43:40
+Time: 11:51:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 1640.40 174.75 169.70 2707.07 14480.81 1353.54 7240.40 49.90 2.91 8.41 1.86 64.04
+hda 0.00 327.00 0.00 259.00 0.00 4704.00 0.00 2352.00 18.16 113.07 251.29 3.86 100.10
-Time: 08:43:41
+Time: 11:51:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 1332.67 223.76 181.19 3041.58 12110.89 1520.79 6055.45 37.42 5.30 13.10 2.00 81.09
+hda 0.00 28.00 0.00 513.00 0.00 4336.00 0.00 2168.00 8.45 108.74 281.18 1.95 100.10
-Time: 08:43:42
+Time: 11:51:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 251.49 38.61 49.50 530.69 2407.92 265.35 1203.96 33.35 0.37 4.21 3.07 27.03
+hda 0.00 102.00 0.00 411.00 0.00 4216.00 0.00 2108.00 10.26 112.10 271.31 2.44 100.10
-Time: 08:43:43
+Time: 11:51:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 15.00 0.00 136.00 0.00 68.00 0.00 9.07 0.04 2.73 2.53 3.80
+hda 0.00 284.85 3.03 262.63 32.32 3474.75 16.16 1737.37 13.20 55.16 321.32 3.60 95.56
-Time: 08:43:44
+Time: 11:51:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 18.00 0.00 232.00 0.00 116.00 0.00 12.89 0.10 5.28 2.67 4.80
+hda 0.00 1247.00 0.00 90.00 0.00 10744.00 0.00 5372.00 119.38 24.48 271.89 9.39 84.50
-Time: 08:43:45
+Time: 11:51:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 404.95 0.00 4704.95 0.00 2352.48 0.00 11.62 2.47 6.10 1.08 43.66
+hda 0.00 774.26 178.22 146.53 2249.50 7310.89 1124.75 3655.45 29.44 2.54 7.89 2.21 71.78
-Time: 08:43:46
+Time: 11:51:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 10.00 0.00 120.00 0.00 60.00 0.00 12.00 0.09 9.00 2.40 2.40
+hda 1.98 1404.95 223.76 160.40 3207.92 12522.77 1603.96 6261.39 40.95 4.25 11.09 1.87 71.78
-Time: 08:43:47
+Time: 11:51:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 624.00 2.00 45.00 16.00 5352.00 8.00 2676.00 114.21 1.70 36.13 2.51 11.80
+hda 0.00 282.83 5.05 53.54 80.81 2690.91 40.40 1345.45 47.31 0.17 2.79 1.62 9.49
-Time: 08:43:48
+Time: 11:51:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 171.70 0.00 4633.96 0.00 2316.98 0.00 26.99 0.94 5.48 1.64 28.11
+hda 0.00 0.00 45.00 0.00 640.00 0.00 320.00 0.00 14.22 0.69 15.51 7.18 32.30
-Time: 08:43:49
+Time: 11:51:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 28.00 0.00 728.00 0.00 364.00 0.00 26.00 0.16 5.64 1.71 4.80
+hda 0.00 0.00 18.00 0.00 232.00 0.00 116.00 0.00 12.89 0.15 8.50 3.44 6.20
-Time: 08:43:50
+Time: 11:51:44
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 13.86 0.00 253.47 0.00 126.73 0.00 18.29 0.12 8.21 3.29 4.55
+
+Time: 11:51:45
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.98 0.00 277.23 0.00 5908.91 0.00 2954.46 0.00 21.31 2.03 7.35 2.13 59.01
+
+Time: 11:51:46
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 586.73 47.96 26.53 555.10 5061.22 277.55 2530.61 75.40 1.25 10.70 3.58 26.63
+
+Time: 11:51:47
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 79.00 4.00 23.00 72.00 664.00 36.00 332.00 27.26 0.75 44.04 5.30 14.30
+
+Time: 11:51:48
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.99 0.00 367.33 0.00 4261.39 0.00 2130.69 0.00 11.60 2.59 7.08 1.11 40.59
+
+Time: 11:51:49
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 8.00 0.00 88.00 0.00 44.00 0.00 11.00 0.01 1.75 1.38 1.10
+
+Time: 11:51:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:43:51
+Time: 11:51:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.03 0.00 24.24 0.00 12.12 0.00 8.00 0.02 6.00 6.00 1.82
+hda 0.00 48.48 3.03 11.11 32.32 476.77 16.16 238.38 36.00 0.05 3.21 2.43 3.43
-Time: 08:43:52
+Time: 11:51:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 69.31 0.00 15.84 0.00 681.19 0.00 340.59 43.00 0.02 1.12 0.31 0.50
+hda 0.00 28.00 4.00 3.00 32.00 248.00 16.00 124.00 40.00 0.05 7.86 7.71 5.40
-Time: 08:43:53
+Time: 11:51:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.03 118.18 24.24 945.45 12.12 472.73 8.00 1.45 11.95 0.38 4.65
+hda 0.00 0.00 5.00 2.00 80.00 16.00 40.00 8.00 13.71 0.02 2.43 2.29 1.60
-Time: 08:43:54
+Time: 11:51:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 8.65 0.00 84.62 0.00 42.31 0.00 9.78 0.02 2.78 2.78 2.40
+hda 0.00 0.00 13.86 0.00 110.89 0.00 55.45 0.00 8.00 0.12 8.50 7.57 10.50
-Time: 08:43:55
+Time: 11:51:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:43:56
+Time: 11:51:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.02 17.00 17.00 1.70
+hda 0.00 92.00 0.00 28.00 0.00 976.00 0.00 488.00 34.86 0.06 2.25 0.29 0.80
-Time: 08:43:57
+Time: 11:51:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 103.00 3.00 17.00 48.00 960.00 24.00 480.00 50.40 0.10 5.10 1.75 3.50
+hda 0.00 0.00 9.09 2.02 88.89 8.08 44.44 4.04 8.73 0.11 10.18 7.00 7.78
-Time: 08:43:58
+Time: 11:51:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.96 1.92 7.69 15.38 3.85 7.69 8.00 0.02 6.33 5.33 1.54
+hda 0.00 0.99 5.94 2.97 71.29 31.68 35.64 15.84 11.56 0.04 5.00 3.67 3.27
-Time: 08:43:59
+Time: 11:51:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.00 0.00 88.00 0.00 44.00 0.00 22.00 0.02 5.25 3.00 1.20
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:00
+Time: 11:52:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:01
+Time: 11:52:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.02 17.00 17.00 1.68
+hda 0.00 86.00 1.00 30.00 8.00 944.00 4.00 472.00 30.71 0.12 4.00 0.71 2.20
-Time: 08:44:02
+Time: 11:52:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 70.00 0.00 27.00 0.00 776.00 0.00 388.00 28.74 0.07 2.56 0.26 0.70
+hda 0.00 0.00 0.00 3.00 0.00 8.00 0.00 4.00 2.67 0.00 1.33 0.67 0.20
-Time: 08:44:03
+Time: 11:52:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:04
+Time: 11:52:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:05
+Time: 11:52:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:06
+Time: 11:52:06
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 13.00 10.00 16.00 128.00 248.00 64.00 124.00 14.46 0.14 4.85 2.77 7.20
+
+Time: 11:52:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 22.00 0.00 256.00 0.00 128.00 0.00 11.64 0.12 5.50 2.50 5.50
+hda 0.00 71.72 23.23 6.06 193.94 606.06 96.97 303.03 27.31 0.27 9.48 5.45 15.96
-Time: 08:44:07
+Time: 11:52:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 621.00 2.00 8.00 24.00 5176.00 12.00 2588.00 520.00 0.08 2.90 2.80 2.80
+hda 0.00 1561.00 69.00 121.00 560.00 13456.00 280.00 6728.00 73.77 13.65 71.82 3.45 65.60
-Time: 08:44:08
+Time: 11:52:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 302.97 0.99 706.93 0.00 8839.60 0.00 4419.80 12.49 71.79 95.92 0.98 69.50
+hda 9.90 0.00 98.02 0.00 4879.21 0.00 2439.60 0.00 49.78 1.12 11.42 5.01 49.11
-Time: 08:44:09
+Time: 11:52:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 5.00 1.00 98.00 145.00 11040.00 264.00 5520.00 132.00 46.52 48.69 215.88 3.14 76.20
+hda 1.01 0.00 44.44 0.00 5454.55 0.00 2727.27 0.00 122.73 0.21 4.73 3.48 15.45
-Time: 08:44:10
+Time: 11:52:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 7.07 0.00 60.61 0.00 8896.97 0.00 4448.48 0.00 146.80 0.17 2.87 2.70 16.36
+hda 0.00 0.00 24.00 0.00 208.00 0.00 104.00 0.00 8.67 0.26 10.79 9.21 22.10
-Time: 08:44:11
+Time: 11:52:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 0.00 37.62 0.00 942.57 0.00 471.29 0.00 25.05 0.24 6.50 5.89 22.18
+hda 0.00 112.87 17.82 12.87 2835.64 1005.94 1417.82 502.97 125.16 0.38 12.26 5.97 18.32
-Time: 08:44:12
+Time: 11:52:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 560.61 68.69 6.06 921.21 4686.87 460.61 2343.43 75.03 0.83 7.62 5.73 42.83
+hda 2.00 2264.00 65.00 137.00 5144.00 19472.00 2572.00 9736.00 121.86 49.78 136.18 4.76 96.10
-Time: 08:44:13
+Time: 11:52:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 373.00 25.00 36.00 904.00 3120.00 452.00 1560.00 65.97 1.82 34.02 5.16 31.50
+hda 0.00 887.00 49.00 64.00 11776.00 7344.00 5888.00 3672.00 169.20 15.75 336.44 7.71 87.10
-Time: 08:44:14
+Time: 11:52:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 90.10 0.00 14392.08 0.00 7196.04 0.00 159.74 0.28 3.07 2.41 21.68
+hda 0.00 1580.00 80.00 46.00 19968.00 13280.00 9984.00 6640.00 263.87 2.55 8.60 3.58 45.10
-Time: 08:44:15
+Time: 11:52:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4300.00 0.00 151.00 0.00 36336.00 0.00 18168.00 240.64 10.95 44.11 2.15 32.40
+hda 0.00 1903.96 11.88 129.70 2297.03 16221.78 1148.51 8110.89 130.80 44.86 280.83 6.80 96.34
-Time: 08:44:16
+Time: 11:52:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6019.00 0.00 233.00 0.00 50192.00 0.00 25096.00 215.42 98.80 335.57 4.29 100.00
+hda 0.00 4969.70 10.10 167.68 2286.87 41373.74 1143.43 20686.87 245.59 20.27 131.90 4.78 85.05
-Time: 08:44:17
+Time: 11:52:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7096.00 0.00 305.00 0.00 59576.00 0.00 29788.00 195.33 112.42 371.35 3.29 100.40
+hda 0.00 5412.87 0.99 165.35 0.00 45346.53 0.00 22673.27 272.62 116.46 341.00 5.96 99.11
-Time: 08:44:18
+Time: 11:52:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3898.00 5.00 305.00 1112.00 33496.00 556.00 16748.00 111.64 144.44 364.41 3.23 100.10
+hda 0.00 3176.77 0.00 198.99 0.00 26965.66 0.00 13482.83 135.51 144.61 798.24 5.08 101.11
-Time: 08:44:19
+Time: 11:52:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3066.34 20.79 193.07 4562.38 26051.49 2281.19 13025.74 143.15 141.59 683.46 4.63 99.11
+hda 0.00 2816.83 0.99 159.41 7.92 23809.90 3.96 11904.95 148.49 143.81 838.49 6.18 99.11
-Time: 08:44:20
+Time: 11:52:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3455.56 17.17 192.93 4395.96 29195.96 2197.98 14597.98 159.88 146.12 681.22 4.81 101.11
+hda 0.00 804.00 8.00 119.00 1448.00 6888.00 724.00 3444.00 65.64 127.28 799.88 7.88 100.10
-Time: 08:44:21
+Time: 11:52:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3968.32 18.81 178.22 3627.72 33267.33 1813.86 16633.66 187.26 143.42 686.21 5.03 99.11
+hda 0.00 1399.00 20.00 92.00 4112.00 11560.00 2056.00 5780.00 139.93 46.55 1103.05 8.94 100.10
-Time: 08:44:22
+Time: 11:52:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 1403.03 228.28 192.93 3086.87 11725.25 1543.43 5862.63 35.17 119.87 407.75 2.40 101.11
+hda 0.00 5347.00 10.00 160.00 2816.00 44848.00 1408.00 22424.00 280.38 101.90 192.39 5.64 95.80
-Time: 08:44:23
+Time: 11:52:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7554.46 1.98 273.27 15.84 62732.67 7.92 31366.34 227.97 86.97 295.99 3.59 98.81
+hda 0.00 2604.00 35.00 119.00 8704.00 21856.00 4352.00 10928.00 198.44 143.82 814.90 6.50 100.10
-Time: 08:44:24
+Time: 11:52:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1280.00 8.00 137.00 88.00 11032.00 44.00 5516.00 76.69 13.57 206.50 3.70 53.60
+hda 0.00 181.00 30.00 91.00 6400.00 1520.00 3200.00 760.00 65.45 104.44 961.29 8.27 100.10
-Time: 08:44:25
+Time: 11:52:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 36.63 0.00 427.72 0.00 213.86 0.00 11.68 0.30 8.32 2.43 8.91
+hda 0.00 777.00 29.00 90.00 7168.00 6440.00 3584.00 3220.00 114.35 23.50 897.08 8.23 97.90
-Time: 08:44:26
+Time: 11:52:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7.00 0.00 3.00 0.00 80.00 0.00 40.00 26.67 0.00 0.00 0.00 0.00
+hda 3.00 1036.00 142.00 41.00 4832.00 8616.00 2416.00 4308.00 73.49 9.49 51.92 4.82 88.20
-Time: 08:44:27
+Time: 11:52:28
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 7471.29 146.53 174.26 1988.12 62019.80 994.06 31009.90 199.53 102.14 186.68 3.01 96.44
+
+Time: 11:52:29
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1481.82 1.01 269.70 8.08 13139.39 4.04 6569.70 48.57 31.44 275.42 3.27 88.48
+
+Time: 11:52:30
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 8.00 0.00 88.00 0.00 44.00 0.00 11.00 0.10 12.00 3.25 2.60
+
+Time: 11:52:31
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 34.00 0.00 408.00 0.00 204.00 0.00 12.00 0.44 12.88 3.41 11.60
+
+Time: 11:52:32
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 7.00 0.00 3.00 0.00 80.00 0.00 40.00 26.67 0.00 0.33 0.33 0.10
+
+Time: 11:52:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:28
+Time: 11:52:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 112.12 0.00 1292.93 0.00 646.46 0.00 11.53 0.60 5.32 1.27 14.24
+hda 0.00 555.45 77.23 4.95 974.26 4649.50 487.13 2324.75 68.43 4.26 13.04 1.81 14.85
-Time: 08:44:29
+Time: 11:52:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2594.00 27.00 244.00 288.00 22704.00 144.00 11352.00 84.84 2.42 8.91 1.77 48.10
+hda 0.00 721.21 78.79 127.27 1034.34 6618.18 517.17 3309.09 37.14 4.69 38.53 2.69 55.35
-Time: 08:44:30
+Time: 11:52:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.98 274.26 394.06 82.18 5687.13 2883.17 2843.56 1441.58 18.00 2.87 5.99 1.81 86.34
+hda 0.00 1498.02 0.99 227.72 7.92 14312.87 3.96 7156.44 62.61 15.75 68.85 3.61 82.67
-Time: 08:44:31
+Time: 11:52:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1491.00 0.00 173.00 0.00 13288.00 0.00 6644.00 76.81 1.96 11.44 1.73 29.90
+hda 1.00 580.00 247.00 94.00 3216.00 5376.00 1608.00 2688.00 25.20 2.69 7.88 2.24 76.50
-Time: 08:44:32
+Time: 11:52:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 45.00 2.00 512.00 8.00 256.00 4.00 11.06 0.16 3.51 2.72 12.80
+hda 0.00 1428.28 161.62 175.76 2335.35 12832.32 1167.68 6416.16 44.96 4.01 11.88 2.10 70.91
-Time: 08:44:33
+Time: 11:52:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 18.00 0.00 232.00 0.00 116.00 0.00 12.89 0.11 5.94 2.89 5.20
+hda 0.00 0.00 2.97 0.00 31.68 0.00 15.84 0.00 10.67 0.02 8.00 2.67 0.79
-Time: 08:44:34
+Time: 11:52:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 385.15 0.00 4570.30 0.00 2285.15 0.00 11.87 2.33 5.91 0.99 38.22
+hda 0.00 275.76 41.41 54.55 436.36 2642.42 218.18 1321.21 32.08 0.68 7.09 3.29 31.62
-Time: 08:44:35
+Time: 11:52:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 30.30 0.00 258.59 0.00 129.29 0.00 8.53 0.16 6.90 1.43 4.34
+hda 0.00 0.00 17.82 0.00 229.70 0.00 114.85 0.00 12.89 0.12 6.89 2.94 5.25
-Time: 08:44:36
+Time: 11:52:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 562.38 1.98 8.91 15.84 4879.21 7.92 2439.60 449.45 0.19 2.00 1.18 1.29
+hda 0.00 0.00 9.09 0.00 113.13 0.00 56.57 0.00 12.44 0.09 9.56 2.11 1.92
-Time: 08:44:37
+Time: 11:52:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 51.00 210.00 42.00 5640.00 432.00 2820.00 216.00 24.10 2.11 9.07 1.69 42.60
+hda 1.98 61.39 265.35 259.41 5845.54 3548.51 2922.77 1774.26 17.90 78.84 67.74 1.82 95.35
-Time: 08:44:38
+Time: 11:52:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 36.00 36.00 238.00 472.00 2288.00 236.00 1144.00 10.07 112.72 300.82 3.65 100.10
-Time: 08:44:39
+Time: 11:52:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.03 0.00 24.24 0.00 12.12 0.00 8.00 0.02 7.33 7.33 2.22
+hda 0.00 633.00 8.00 413.00 120.00 8512.00 60.00 4256.00 20.50 115.13 351.98 2.38 100.10
-Time: 08:44:40
+Time: 11:52:46
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 0.00 215.84 0.00 1734.65 0.00 867.33 8.04 111.02 306.32 4.59 99.11
-Time: 08:44:41
+Time: 11:52:47
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 69.31 11.88 13.86 110.89 665.35 55.45 332.67 30.15 0.06 2.50 1.65 4.26
+hda 0.00 102.02 19.19 766.67 169.70 6949.49 84.85 3474.75 9.06 110.62 221.17 1.29 101.11
-Time: 08:44:42
+Time: 11:52:48
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 92.08 8.91 310.89 118.81 3247.52 59.41 1623.76 10.53 111.03 319.00 3.10 99.11
-Time: 08:44:43
+Time: 11:52:49
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 149.50 0.00 586.14 0.00 7374.26 0.00 3687.13 12.58 75.67 113.70 1.15 67.62
+hda 1.00 4.00 337.00 89.00 4016.00 392.00 2008.00 196.00 10.35 101.36 137.75 2.35 100.10
-Time: 08:44:44
+Time: 11:52:50
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.01 0.00 642.42 0.00 5155.56 0.00 2577.78 8.03 113.21 162.87 1.57 101.11
+hda 0.00 23.23 35.35 79.80 323.23 266.67 161.62 133.33 5.12 12.88 763.94 2.73 31.41
-Time: 08:44:45
+Time: 11:52:51
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 49.50 2.97 596.04 47.52 4300.99 23.76 2150.50 7.26 85.00 170.65 1.41 84.65
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:46
+Time: 11:52:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 103.96 3.96 31.68 87.13 1085.15 43.56 542.57 32.89 0.13 3.69 1.28 4.55
+hda 0.00 0.00 7.00 0.00 64.00 0.00 32.00 0.00 9.14 0.12 17.71 10.86 7.60
-Time: 08:44:47
+Time: 11:52:53
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:48
+Time: 11:52:54
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 1.01 0.00 8.08 0.00 4.04 8.00 0.00 3.00 3.00 0.30
+hda 0.00 0.00 5.00 0.00 48.00 0.00 24.00 0.00 9.60 0.04 7.40 7.40 3.70
-Time: 08:44:49
+Time: 11:52:55
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 96.00 17.00 14.00 176.00 880.00 88.00 440.00 34.06 0.15 4.90 3.68 11.40
+
+Time: 11:52:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:50
+Time: 11:52:57
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:44:51
+Time: 11:52:58
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5.00 0.00 5.00 0.00 80.00 0.00 40.00 16.00 0.00 0.80 0.40 0.20
+hda 0.00 0.00 7.00 0.00 80.00 0.00 40.00 0.00 11.43 0.09 11.29 9.14 6.40
-Time: 08:44:52
+Time: 11:52:59
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 3.00 0.00 5.00 0.00 64.00 0.00 32.00 12.80 0.00 0.00 0.00 0.00
+hda 0.00 0.00 2.00 0.00 8.00 0.00 4.00 0.00 4.00 0.00 6.50 0.50 0.10
-Time: 08:44:53
+Time: 11:53:00
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 22.00 2.00 256.00 24.00 128.00 12.00 11.67 0.12 5.00 2.33 5.60
+hda 0.00 101.98 4.95 40.59 63.37 1140.59 31.68 570.30 26.43 0.31 6.76 1.22 5.54
-Time: 08:44:54
+Time: 11:53:01
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 15.00 15.00 1.49
+hda 0.00 0.00 4.00 0.00 48.00 0.00 24.00 0.00 12.00 0.11 13.25 14.75 5.90
-Time: 08:44:55
+Time: 11:53:02
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1328.28 4.04 48.48 161.62 11119.19 80.81 5559.60 214.77 2.11 30.00 3.60 18.89
+hda 0.99 4.95 154.46 2.97 1750.50 63.37 875.25 31.68 11.52 1.69 11.08 5.69 89.60
-Time: 08:44:56
+Time: 11:53:03
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 20.00 97.00 15.00 14848.00 176.00 7424.00 88.00 134.14 1.18 15.25 3.27 36.60
+hda 0.00 0.00 132.00 0.00 1056.00 0.00 528.00 0.00 8.00 0.81 6.20 6.17 81.40
-Time: 08:44:57
+Time: 11:53:04
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2838.61 1.98 121.78 198.02 24308.91 99.01 12154.46 198.02 13.23 50.89 1.79 22.18
+hda 0.00 0.00 140.00 0.00 1120.00 0.00 560.00 0.00 8.00 0.81 5.82 5.82 81.50
-Time: 08:44:58
+Time: 11:53:05
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6743.00 0.00 267.00 0.00 56336.00 0.00 28168.00 211.00 108.24 349.62 3.75 100.10
+hda 0.00 5.05 123.23 5.05 977.78 80.81 488.89 40.40 8.25 0.85 6.65 6.54 83.94
-Time: 08:44:59
+Time: 11:53:06
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 6800.00 0.00 296.00 0.00 57072.00 0.00 28536.00 192.81 113.47 362.93 3.38 100.10
+hda 0.00 11.00 18.00 6.00 144.00 136.00 72.00 68.00 11.67 0.10 4.33 4.33 10.40
-Time: 08:45:00
+Time: 11:53:07
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2729.29 13.13 267.68 3191.92 23935.35 1595.96 11967.68 96.60 145.34 480.73 3.60 101.11
+hda 0.00 0.00 8.08 0.00 113.13 0.00 56.57 0.00 14.00 0.08 10.00 7.25 5.86
-Time: 08:45:01
+Time: 11:53:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1542.57 20.79 206.93 4095.05 14114.85 2047.52 7057.43 79.97 145.27 530.28 4.35 99.11
+hda 0.00 0.00 7.92 0.00 71.29 0.00 35.64 0.00 9.00 0.06 8.00 3.75 2.97
-Time: 08:45:02
+Time: 11:53:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 177.00 54.00 61.00 3656.00 1680.00 1828.00 840.00 46.40 143.31 615.01 8.70 100.10
+hda 0.00 1554.00 63.00 56.00 504.00 12880.00 252.00 6440.00 112.47 4.02 33.80 3.09 36.80
-Time: 08:45:03
+Time: 11:53:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 401.96 47.06 66.67 4415.69 3725.49 2207.84 1862.75 71.59 136.28 1083.66 8.63 98.14
+hda 1.98 114.85 62.38 10.89 5132.67 1005.94 2566.34 502.97 83.78 1.90 19.11 5.88 43.07
-Time: 08:45:04
+Time: 11:53:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1560.61 217.17 95.96 2917.17 13527.27 1458.59 6763.64 52.52 154.65 637.34 3.23 101.11
+hda 0.00 0.00 117.17 0.00 22771.72 0.00 11385.86 0.00 194.34 1.65 18.45 4.22 49.39
-Time: 08:45:05
+Time: 11:53:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.00 2444.00 142.00 226.00 2168.00 21120.00 1084.00 10560.00 63.28 150.00 607.30 2.72 100.10
+hda 0.00 1900.99 46.53 105.94 11659.41 16205.94 5829.70 8102.97 182.75 17.50 71.27 5.31 80.89
-Time: 08:45:06
+Time: 11:53:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 4975.00 0.00 325.00 0.00 42384.00 0.00 21192.00 130.41 143.85 427.62 3.08 100.10
+hda 0.00 3957.58 18.18 120.20 4404.04 33098.99 2202.02 16549.49 271.01 79.50 368.56 7.31 101.11
-Time: 08:45:07
+Time: 11:53:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7433.00 0.00 290.00 0.00 61768.00 0.00 30884.00 212.99 85.62 319.59 3.44 99.90
+hda 0.00 5770.00 6.00 186.00 736.00 48112.00 368.00 24056.00 254.42 123.34 517.83 5.21 100.10
-Time: 08:45:08
+Time: 11:53:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2837.00 0.00 242.00 0.00 23752.00 0.00 11876.00 98.15 102.10 492.49 4.14 100.10
+hda 0.00 2964.36 7.92 134.65 1671.29 24728.71 835.64 12364.36 185.17 141.42 800.06 6.95 99.11
-Time: 08:45:09
+Time: 11:53:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1365.66 95.96 128.28 1098.99 11806.06 549.49 5903.03 57.55 6.30 80.24 2.20 49.39
+hda 0.00 2460.00 24.00 123.00 6144.00 20704.00 3072.00 10352.00 182.64 146.42 1032.04 6.81 100.10
-Time: 08:45:10
+Time: 11:53:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1471.29 55.45 151.49 665.35 12982.18 332.67 6491.09 65.95 2.55 12.33 2.14 44.36
+hda 0.00 2343.52 21.30 110.19 4977.78 19651.85 2488.89 9825.93 187.32 124.85 886.46 7.54 99.17
-Time: 08:45:11
+Time: 11:53:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2133.67 8.16 155.10 2089.80 18114.29 1044.90 9057.14 123.75 117.49 929.35 6.26 102.14
-Time: 08:45:12
+Time: 11:53:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.93 2253.70 20.37 119.44 2592.59 18977.78 1296.30 9488.89 154.28 111.81 712.26 7.11 99.44
-Time: 08:45:13
+Time: 11:53:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 2818.81 0.99 143.56 253.47 24039.60 126.73 12019.80 168.05 130.05 861.42 6.86 99.11
-Time: 08:45:14
+Time: 11:53:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1.00 0.00 3.00 0.00 32.00 0.00 16.00 10.67 0.00 0.00 0.00 0.00
+hda 0.00 4022.02 0.92 200.92 234.86 33820.18 117.43 16910.09 168.73 143.17 750.74 4.98 100.46
-Time: 08:45:15
+Time: 11:53:22
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1132.32 0.00 116.16 0.00 9987.88 0.00 4993.94 85.98 0.70 6.05 1.52 17.68
+hda 0.00 2057.00 20.00 124.00 4096.00 17224.00 2048.00 8612.00 148.06 143.18 785.60 6.95 100.10
-Time: 08:45:16
+Time: 11:53:23
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 1612.87 233.66 166.34 3493.07 14233.66 1746.53 7116.83 44.32 3.11 7.78 1.88 75.15
+hda 0.00 1677.00 22.00 94.00 5376.00 14024.00 2688.00 7012.00 167.24 132.13 1118.74 8.63 100.10
-Time: 08:45:17
+Time: 11:53:24
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 1.01 175.76 157.58 520.20 2173.74 6812.12 1086.87 3406.06 13.26 82.23 102.46 1.48 100.20
+hda 0.00 1398.00 23.00 140.00 5392.00 12400.00 2696.00 6200.00 109.15 112.64 1027.62 6.14 100.10
-Time: 08:45:18
+Time: 11:53:25
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 138.61 0.00 523.76 0.00 5916.83 0.00 2958.42 11.30 110.91 214.65 1.89 99.11
+hda 0.00 325.74 2.97 649.50 483.17 8514.85 241.58 4257.43 13.79 111.54 203.49 1.52 99.11
-Time: 08:45:19
+Time: 11:53:26
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 9.90 0.00 617.82 0.00 5021.78 0.00 2510.89 8.13 111.05 173.31 1.60 99.11
+hda 0.00 4102.00 0.00 137.00 0.00 34104.00 0.00 17052.00 248.93 141.69 325.82 7.31 100.10
-Time: 08:45:20
+Time: 11:53:27
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 27.27 0.00 655.56 0.00 4985.86 0.00 2492.93 7.61 109.76 171.22 1.54 101.11
+hda 0.00 2474.00 217.00 95.00 2704.00 20488.00 1352.00 10244.00 74.33 143.24 350.30 3.21 100.10
-Time: 08:45:21
+Time: 11:53:28
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 212.00 8.00 132.00 80.00 2352.00 40.00 1176.00 17.37 3.21 107.88 5.14 72.00
+hda 0.00 0.00 101.85 236.11 1459.26 1770.37 729.63 885.19 9.56 113.17 719.27 2.95 99.72
-Time: 08:45:22
+Time: 11:53:30
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 16.00 1.00 192.00 8.00 96.00 4.00 11.76 0.05 2.71 2.65 4.50
+hda 0.00 484.76 2.86 208.57 22.86 4723.81 11.43 2361.90 22.45 37.96 231.10 3.96 83.81
-Time: 08:45:23
+Time: 11:53:31
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 9.00 0.00 88.00 0.00 44.00 0.00 9.78 0.01 0.56 0.56 0.50
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:24
+Time: 11:53:32
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 401.98 0.00 4697.03 0.00 2348.51 0.00 11.68 2.64 6.57 1.08 43.47
+hda 0.00 959.41 15.84 148.51 324.75 8863.37 162.38 4431.68 55.90 8.94 54.40 2.88 47.33
-Time: 08:45:25
+Time: 11:53:33
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.08 0.00 32.65 0.00 16.33 0.00 8.00 0.01 2.50 2.50 1.02
+hda 0.00 6.67 32.38 2.86 396.19 76.19 198.10 38.10 13.41 0.42 11.78 3.00 10.57
-Time: 08:45:26
+Time: 11:53:34
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 60.40 200.00 17.82 5378.22 625.74 2689.11 312.87 27.56 4.24 19.48 1.55 33.76
+hda 0.00 369.70 78.79 67.68 1115.15 3498.99 557.58 1749.49 31.50 0.75 5.14 1.99 29.09
-Time: 08:45:27
+Time: 11:53:35
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.99 0.00 7.92 0.00 213.86 0.00 106.93 0.00 27.00 0.26 32.88 13.62 10.79
+hda 0.00 1239.60 29.70 89.11 356.44 10629.70 178.22 5314.85 92.47 2.23 18.81 2.65 31.49
-Time: 08:45:28
+Time: 11:53:36
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:29
+Time: 11:53:37
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.00 0.00 24.00 0.00 12.00 0.00 8.00 0.02 7.00 7.00 2.10
+hda 1.98 0.00 7.92 0.00 221.78 0.00 110.89 0.00 28.00 0.07 8.50 8.50 6.73
-Time: 08:45:30
+Time: 11:53:38
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.01 5.00 5.00 1.00
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:31
+Time: 11:53:39
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 72.00 11.00 14.00 96.00 688.00 48.00 344.00 31.36 0.06 2.40 1.44 3.60
+hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:32
+Time: 11:53:40
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 1.00 0.00 8.00 0.00 4.00 8.00 0.00 0.00 0.00 0.00
+hda 0.00 1001.94 3.88 112.62 38.83 8916.50 19.42 4458.25 76.87 1.12 9.57 1.50 17.48
-Time: 08:45:33
+Time: 11:53:41
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 1510.00 1.00 160.00 8.00 13368.00 4.00 6684.00 83.08 14.18 88.06 3.66 59.00
-Time: 08:45:34
+Time: 11:53:42
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 3.00 0.00 48.00 0.00 24.00 0.00 16.00 0.02 8.00 8.00 2.40
+hda 1.00 695.00 309.00 115.00 4144.00 6472.00 2072.00 3236.00 25.04 2.46 5.79 1.64 69.60
-Time: 08:45:35
+Time: 11:53:43
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 6.93 0.00 110.89 0.00 55.45 0.00 16.00 0.03 4.14 3.43 2.38
+hda 1.00 303.00 86.00 119.00 1296.00 3376.00 648.00 1688.00 22.79 0.97 4.78 1.91 39.10
-Time: 08:45:36
+Time: 11:53:44
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 105.05 0.00 36.36 0.00 1131.31 0.00 565.66 31.11 0.13 3.44 0.25 0.91
+hda 0.00 0.00 16.00 0.00 200.00 0.00 100.00 0.00 12.50 0.13 8.06 4.88 7.80
-Time: 08:45:37
+Time: 11:53:45
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+hda 0.00 0.00 8.00 1.00 96.00 8.00 48.00 4.00 11.56 0.09 9.78 2.00 1.80
-Time: 08:45:38
+Time: 11:53:46
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 1.98 0.00 286.14 0.00 6138.61 0.00 3069.31 0.00 21.45 1.85 6.46 2.03 58.22
+
+Time: 11:53:47
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 42.42 0.00 468.69 0.00 234.34 0.00 11.05 0.30 7.12 4.19 17.78
+
+Time: 11:53:48
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 79.00 13.00 18.00 160.00 776.00 80.00 388.00 30.19 0.11 3.58 2.48 7.70
+
+Time: 11:53:49
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.99 0.00 363.37 0.00 4245.54 0.00 2122.77 0.00 11.68 2.54 6.98 1.17 42.67
+
+Time: 11:53:50
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 0.00 2.00 0.00 16.00 0.00 8.00 8.00 0.00 2.00 1.00 0.20
+
+Time: 11:53:51
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 3.00 0.00 24.00 0.00 12.00 0.00 8.00 0.03 11.00 11.00 3.30
+
+Time: 11:53:52
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:39
+Time: 11:53:53
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 77.23 4.95 18.81 47.52 768.32 23.76 384.16 34.33 0.08 3.50 1.79 4.26
+
+Time: 11:53:54
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 17.00 0.00 176.00 0.00 88.00 0.00 10.35 0.12 7.12 5.71 9.70
+
+Time: 11:53:55
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:40
+Time: 11:53:56
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
hda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 08:45:41
+Time: 11:53:57
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 8.91 0.00 87.13 0.00 43.56 0.00 9.78 0.10 10.89 8.22 7.33
+
+Time: 11:53:58
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 86.87 3.03 24.24 32.32 888.89 16.16 444.44 33.78 0.11 3.93 1.52 4.14
+
+Time: 11:53:59
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 4.04 0.00 48.48 0.00 24.24 0.00 12.00 0.03 6.25 1.75 0.71
+
+Time: 11:54:00
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 58.42 0.00 141.58 0.00 2495.05 0.00 1247.52 17.62 10.76 23.03 0.68 9.60
+
+Time: 11:54:01
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 5.00 0.00 184.00 0.00 1520.00 0.00 760.00 8.26 111.53 454.28 5.44 100.10
+
+Time: 11:54:02
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 1.00 2.00 607.00 16.00 4856.00 8.00 2428.00 8.00 112.15 182.70 1.64 100.10
+
+Time: 11:54:03
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 65.00 0.00 328.00 0.00 3192.00 0.00 1596.00 9.73 112.84 302.16 3.05 100.10
+
+Time: 11:54:04
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 65.35 0.00 241.58 0.00 2257.43 0.00 1128.71 9.34 109.16 487.43 4.10 99.11
+
+Time: 11:54:05
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 3.06 81.63 24.49 0.00 12.24 0.00 0.29 13.49 641.41 3.93 33.27
+
+Time: 11:54:06
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 7.92 0.00 110.89 0.00 55.45 0.00 14.00 0.11 14.00 10.50 8.32
+
+Time: 11:54:07
+Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
+hda 0.00 0.00 53.47 0.00 435.64 0.00 217.82 0.00 8.15 0.36 6.76 4.72 25.25
+
+Time: 11:54:08
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 21.21 0.00 5.05 0.00 210.10 0.00 105.05 41.60 0.00 0.60 0.40 0.20
+hda 0.00 1607.07 57.58 84.85 2949.49 13535.35 1474.75 6767.68 115.74 9.93 69.71 4.63 65.96
-Time: 08:45:42
+Time: 11:54:09
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 23.76 0.99 277.23 7.92 138.61 3.96 11.52 0.16 6.32 2.64 6.53
+hda 1.98 0.00 105.94 0.00 15461.39 0.00 7730.69 0.00 145.94 3.21 30.29 4.57 48.42
-Time: 08:45:43
+Time: 11:54:10
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 4.00 0.00 32.00 0.00 16.00 0.00 8.00 0.02 5.50 6.00 2.40
+hda 0.00 731.31 75.76 67.68 19135.35 6618.18 9567.68 3309.09 179.55 19.39 59.09 4.61 66.16
-Time: 08:45:44
+Time: 11:54:11
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 1096.19 43.81 63.81 342.86 9280.00 171.43 4640.00 89.42 3.89 36.23 3.86 41.52
+hda 0.00 4429.70 22.77 158.42 5576.24 37243.56 2788.12 18621.78 236.33 85.80 376.02 5.47 99.11
-Time: 08:45:45
+Time: 11:54:12
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 0.00 93.00 0.00 12456.00 0.00 6228.00 0.00 133.94 0.41 4.41 2.94 27.30
+hda 0.00 7016.00 7.00 308.00 1488.00 58712.00 744.00 29356.00 191.11 88.99 327.77 3.18 100.10
-Time: 08:45:46
+Time: 11:54:13
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2707.00 11.00 97.00 2760.00 22968.00 1380.00 11484.00 238.22 4.53 23.62 1.57 17.00
+hda 0.00 5897.98 11.11 267.68 2731.31 49648.48 1365.66 24824.24 187.88 119.44 355.46 3.63 101.11
-Time: 08:45:47
+Time: 11:54:14
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 8854.55 0.00 370.71 0.00 74020.20 0.00 37010.10 199.67 70.09 174.07 2.73 101.11
+hda 0.00 4115.84 3.96 361.39 1267.33 35738.61 633.66 17869.31 101.29 143.28 367.73 2.71 99.11
-Time: 08:45:48
+Time: 11:54:15
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 7001.98 0.00 348.51 0.00 58938.61 0.00 29469.31 169.11 106.15 285.49 2.84 99.11
+hda 0.00 2815.00 27.00 159.00 6656.00 23800.00 3328.00 11900.00 163.74 144.67 614.33 5.38 100.10
-Time: 08:45:49
+Time: 11:54:16
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2889.11 11.88 211.88 2875.25 24823.76 1437.62 12411.88 123.79 111.97 391.72 4.43 99.11
+hda 0.00 2232.32 38.38 132.32 9309.09 18901.01 4654.55 9450.51 165.25 146.77 862.55 5.92 101.11
-Time: 08:45:50
+Time: 11:54:17
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 5296.97 7.07 303.03 1551.52 45002.02 775.76 22501.01 150.12 139.25 416.67 3.26 101.11
+hda 0.00 1835.00 25.00 191.00 4128.00 15392.00 2064.00 7696.00 90.37 107.03 710.85 4.63 100.10
-Time: 08:45:51
+Time: 11:54:18
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2606.00 14.00 128.00 3328.00 21872.00 1664.00 10936.00 177.46 144.09 810.94 7.05 100.10
+hda 0.00 5632.35 29.41 145.10 7035.29 46996.08 3517.65 23498.04 309.62 29.66 256.61 5.41 94.41
-Time: 08:45:52
+Time: 11:54:19
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2595.00 16.00 115.00 3584.00 21784.00 1792.00 10892.00 193.65 143.31 1025.09 7.64 100.10
+hda 0.00 6248.00 9.00 267.00 2536.00 52176.00 1268.00 26088.00 198.23 143.79 347.22 3.63 100.10
-Time: 08:45:53
+Time: 11:54:20
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2436.63 82.18 109.90 3128.71 20253.47 1564.36 10126.73 121.73 140.23 680.03 5.16 99.11
+hda 1.01 1.01 232.32 72.73 2618.18 32.32 1309.09 16.16 8.69 110.18 270.54 3.31 101.11
-Time: 08:45:54
+Time: 11:54:21
Device: rrqm/s wrqm/s r/s w/s rsec/s wsec/s rkB/s wkB/s avgrq-sz avgqu-sz await svctm %util
-hda 0.00 2121.21 133.33 189.90 1494.95 17656.57 747.47 8828.28 59.25 125.68 653.95 3.13 101.11
+hda 1.00 960.00 16.00 113.00 232.00 7992.00 116.00 3996.00 63.75 7.01 727.57 3.57 46.00
diff --git a/testsuite/normal/pbuilder-build-dsh-sarge.log b/testsuite/normal/pbuilder-build-dsh-sarge.log
index 373f349..1eb0155 100644
--- a/testsuite/normal/pbuilder-build-dsh-sarge.log
+++ b/testsuite/normal/pbuilder-build-dsh-sarge.log
@@ -2,8 +2,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Mon Jan 19 08:43:20 JST 2004
-pbuilder-time-stamp: 1074469400
+Current time: Sat Mar 13 11:51:03 JST 2004
+pbuilder-time-stamp: 1079146263
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -24,88 +24,88 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2078kB of archives.
-After unpacking 6998kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.06-2 [212kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.06-2 [25.5kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.3.22 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.12.1-8 [1280kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.1.83 [343kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.8-1 [9656B]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.8-1 [11.3kB]
-Fetched 2078kB in 4s (475kB/s)
+Need to get 2371kB of archives.
+After unpacking 7654kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.11 [30.7kB]
+Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.8 [64.8kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.4 [350kB]
+Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.10-1 [10.3kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.10-1 [12.2kB]
+Fetched 2371kB in 4s (523kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10630 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.06-2_i386.deb) ...
+(Reading database ... 10607 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.06-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.3.22_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.11_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.12.1-8_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.8_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.83_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.8-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.8-1_i386.deb) ...
-Setting up libmagic1 (4.06-2) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.06-2) ...
-Setting up debconf-utils (1.3.22) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.11) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.12.1-8) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.83) ...
-Setting up libdshconfig1 (0.20.8-1) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.8) ...
+Setting up debhelper (4.2.4) ...
+Setting up libdshconfig1 (0.20.10-1) ...
-Setting up libdshconfig1-dev (0.20.8-1) ...
+Setting up libdshconfig1-dev (0.20.10-1) ...
-> Finished parsing the build-deps
Reading Package Lists...
Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 53.1kB of archives.
-After unpacking 197kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.8.3 [53.1kB]
-Fetched 53.1kB in 0s (1111kB/s)
+Need to get 53.9kB of archives.
+After unpacking 193kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.8.5 [53.9kB]
+Fetched 53.9kB in 0s (219kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11134 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.8.3_i386.deb) ...
-Setting up fakeroot (0.8.3) ...
+(Reading database ... 11131 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_0.8.5_i386.deb) ...
+Setting up fakeroot (0.8.5) ...
Copying source file
- -> copying [testbuild/dsh_0.25.0-1.dsc]
- -> copying [testbuild/dsh_0.25.0.orig.tar.gz]
- -> copying [testbuild/dsh_0.25.0-1.diff.gz]
+ -> copying [testbuild/dsh_0.25.1-1.dsc]
+ -> copying [testbuild/dsh_0.25.1.orig.tar.gz]
+ -> copying [testbuild/dsh_0.25.1-1.diff.gz]
Extracting source
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.0
+dpkg-source: extracting dsh in dsh-0.25.1
-> Building the package
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source package is dsh
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
@@ -120,25 +120,25 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
+ dpkg-source -b dsh-0.25.1
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -151,7 +151,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -203,9 +203,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -213,8 +213,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -308,18 +311,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -341,26 +344,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -370,7 +373,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -405,11 +410,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-2: 2
1: 1
+2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:43:59 UTC 2004
+Sat Mar 13 02:51:58 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -479,18 +484,23 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:44:05 UTC 2004
+Sat Mar 13 02:52:04 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+c: c
+dsh: Process terminated (before write).
+b: b
+a: a
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -498,60 +508,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-cp /tmp/buildd/dsh-0.25.0/debian/machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.0/dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.0/debian/dsh.updatelist /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+cp /tmp/buildd/dsh-0.25.1/debian/machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /tmp/buildd/dsh-0.25.1/dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /tmp/buildd/dsh-0.25.1/debian/dsh.updatelist /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -576,7 +586,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -586,9 +596,9 @@ dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
+/usr/lib/pbuilder/pbuilder-buildpackage: line 126: 15771 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 21071 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Mon Jan 19 08:44:07 JST 2004
-pbuilder-time-stamp: 1074469447
+Current time: Sat Mar 13 11:52:07 JST 2004
+pbuilder-time-stamp: 1079146327
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/20810 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/15507 and its subdirectories
diff --git a/testsuite/normal/pbuilder-build-dsh-sid.log b/testsuite/normal/pbuilder-build-dsh-sid.log
index 7c8a62e..2043cb7 100644
--- a/testsuite/normal/pbuilder-build-dsh-sid.log
+++ b/testsuite/normal/pbuilder-build-dsh-sid.log
@@ -2,8 +2,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Mon Jan 19 08:37:33 JST 2004
-pbuilder-time-stamp: 1074469053
+Current time: Sat Mar 13 11:44:16 JST 2004
+pbuilder-time-stamp: 1079145856
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -24,57 +24,57 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2317kB of archives.
-After unpacking 7768kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-1 [206kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-1 [25.4kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.7 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.13.1-2 [1519kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.1.87 [349kB]
+Need to get 2373kB of archives.
+After unpacking 7658kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.16 [32.5kB]
+Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.9 [65.8kB]
+Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.2.4 [350kB]
Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.10-1 [10.3kB]
Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.10-1 [12.2kB]
-Fetched 2317kB in 1s (1277kB/s)
+Fetched 2373kB in 3s (616kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10682 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.07-1_i386.deb) ...
+(Reading database ... 10663 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-1_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.7_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.16_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.13.1-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.9_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.87_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
-Setting up libmagic1 (4.07-1) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.07-1) ...
-Setting up debconf-utils (1.4.7) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.16) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.13.1-2) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.87) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.9) ...
+Setting up debhelper (4.2.4) ...
Setting up libdshconfig1 (0.20.10-1) ...
Setting up libdshconfig1-dev (0.20.10-1) ...
@@ -84,28 +84,28 @@ Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 53.1kB of archives.
-After unpacking 197kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.8.3 [53.1kB]
-Fetched 53.1kB in 0s (682kB/s)
+Need to get 53.9kB of archives.
+After unpacking 193kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.8.5 [53.9kB]
+Fetched 53.9kB in 0s (1040kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11204 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.8.3_i386.deb) ...
-Setting up fakeroot (0.8.3) ...
+(Reading database ... 11188 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_0.8.5_i386.deb) ...
+Setting up fakeroot (0.8.5) ...
Copying source file
- -> copying [testbuild/dsh_0.25.0-1.dsc]
- -> copying [testbuild/dsh_0.25.0.orig.tar.gz]
- -> copying [testbuild/dsh_0.25.0-1.diff.gz]
+ -> copying [testbuild/dsh_0.25.1-1.dsc]
+ -> copying [testbuild/dsh_0.25.1.orig.tar.gz]
+ -> copying [testbuild/dsh_0.25.1-1.diff.gz]
Extracting source
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.0
+dpkg-source: extracting dsh in dsh-0.25.1
-> Building the package
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source package is dsh
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
@@ -120,25 +120,25 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
+ dpkg-source -b dsh-0.25.1
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -151,7 +151,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -203,9 +203,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -213,8 +213,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -308,18 +311,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -341,26 +344,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -370,7 +373,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -405,11 +410,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-2: 2
1: 1
+2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:38:09 UTC 2004
+Sat Mar 13 02:45:09 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -479,18 +484,23 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:38:15 UTC 2004
+Sat Mar 13 02:45:15 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+c: c
+dsh: Process terminated (before write).
+a: a
+b: b
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -498,60 +508,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-cp /tmp/buildd/dsh-0.25.0/debian/machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.0/dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.0/debian/dsh.updatelist /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+cp /tmp/buildd/dsh-0.25.1/debian/machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /tmp/buildd/dsh-0.25.1/dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /tmp/buildd/dsh-0.25.1/debian/dsh.updatelist /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -576,7 +586,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -587,8 +597,8 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 26764 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Mon Jan 19 08:38:17 JST 2004
-pbuilder-time-stamp: 1074469097
+/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 20348 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Sat Mar 13 11:45:18 JST 2004
+pbuilder-time-stamp: 1079145918
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/26503 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/20085 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sarge.log b/testsuite/normal/pbuilder-create-sarge.log
index df02393..c541c70 100644
--- a/testsuite/normal/pbuilder-create-sarge.log
+++ b/testsuite/normal/pbuilder-create-sarge.log
@@ -38,7 +38,6 @@ I: Checking exim4-config...
I: Checking exim4-daemon-light...
I: Checking fdutils...
I: Checking findutils...
-I: Checking gcc-3.2-base...
I: Checking gcc-3.3-base...
I: Checking gettext-base...
I: Checking grep...
@@ -72,7 +71,6 @@ I: Checking liblockfile1...
I: Checking liblzo1...
I: Checking libncurses5...
I: Checking libnewt0.51...
-I: Checking libopencdk8...
I: Checking libpam-modules...
I: Checking libpam-runtime...
I: Checking libpam0g...
@@ -90,7 +88,6 @@ I: Checking libtext-wrapi18n-perl...
I: Checking libtextwrap1...
I: Checking libuuid1...
I: Checking libwrap0...
-I: Checking lilo...
I: Checking login...
I: Checking logrotate...
I: Checking mailx...
@@ -98,8 +95,6 @@ I: Checking makedev...
I: Checking man-db...
I: Checking manpages...
I: Checking mawk...
-I: Checking mbr...
-I: Checking modconf...
I: Checking modutils...
I: Checking mount...
I: Checking nano...
@@ -111,7 +106,6 @@ I: Checking netkit-inetd...
I: Checking nvi...
I: Checking passwd...
I: Checking pciutils...
-I: Checking pcmcia-cs...
I: Checking perl-base...
I: Checking ppp...
I: Checking pppconfig...
@@ -201,8 +195,6 @@ I: Retrieving fdutils
I: Validating fdutils
I: Retrieving findutils
I: Validating findutils
-I: Retrieving gcc-3.2-base
-I: Validating gcc-3.2-base
I: Retrieving gcc-3.3-base
I: Validating gcc-3.3-base
I: Retrieving gettext-base
@@ -269,8 +261,6 @@ I: Retrieving libncurses5
I: Validating libncurses5
I: Retrieving libnewt0.51
I: Validating libnewt0.51
-I: Retrieving libopencdk8
-I: Validating libopencdk8
I: Retrieving libpam-modules
I: Validating libpam-modules
I: Retrieving libpam-runtime
@@ -305,8 +295,6 @@ I: Retrieving libuuid1
I: Validating libuuid1
I: Retrieving libwrap0
I: Validating libwrap0
-I: Retrieving lilo
-I: Validating lilo
I: Retrieving login
I: Validating login
I: Retrieving logrotate
@@ -321,10 +309,6 @@ I: Retrieving manpages
I: Validating manpages
I: Retrieving mawk
I: Validating mawk
-I: Retrieving mbr
-I: Validating mbr
-I: Retrieving modconf
-I: Validating modconf
I: Retrieving modutils
I: Validating modutils
I: Retrieving mount
@@ -347,8 +331,6 @@ I: Retrieving passwd
I: Validating passwd
I: Retrieving pciutils
I: Validating pciutils
-I: Retrieving pcmcia-cs
-I: Validating pcmcia-cs
I: Retrieving perl-base
I: Validating perl-base
I: Retrieving ppp
@@ -452,89 +434,84 @@ I: Extracting tar...
I: Extracting util-linux...
I: Extracting whiptail...
I: Extracting libgcc1...
-I: Extracting gcc-3.2-base...
I: Extracting gcc-3.3-base...
I: Extracting libstdc++5...
-I: Extracting mbr...
I: Installing core packages...
Selecting previously deselected package base-files.
(Reading database ... 0 files and directories currently installed.)
-Unpacking base-files (from .../base-files_3.0.12_i386.deb) ...
+Unpacking base-files (from .../base-files_3.0.13_i386.deb) ...
Selecting previously deselected package base-passwd.
-Unpacking base-passwd (from .../base-passwd_3.5.5_i386.deb) ...
+Unpacking base-passwd (from .../base-passwd_3.5.7_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you request:
base-passwd depends on libc6 (>= 2.3.2.ds1-4); however:
Package libc6 is not installed.
-Setting up base-passwd (3.5.5) ...
+Setting up base-passwd (3.5.7) ...
dpkg: base-files: dependency problems, but configuring anyway as you request:
base-files depends on awk; however:
Package awk is not installed.
-Setting up base-files (3.0.12) ...
+Setting up base-files (3.0.13) ...
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
+dpkg: regarding .../archives/dpkg_1.10.19_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
- dpkg pre-depends on libc6 (>= 2.3.2-1)
+dpkg: regarding .../archives/dpkg_1.10.19_i386.deb containing dpkg, pre-dependency problem:
+ dpkg pre-depends on libc6 (>= 2.3.2.ds1-4)
dpkg: warning - ignoring pre-dependency problem !
(Reading database ... 84 files and directories currently installed.)
-Preparing to replace dpkg 1.10.18 (using .../archives/dpkg_1.10.18_i386.deb) ...
+Preparing to replace dpkg 1.10.19 (using .../archives/dpkg_1.10.19_i386.deb) ...
Unpacking replacement dpkg ...
dpkg: dpkg: dependency problems, but configuring anyway as you request:
dpkg depends on dselect; however:
Package dselect is not installed.
- dpkg depends on libc6 (>= 2.3.2-1); however:
+ dpkg depends on libc6 (>= 2.3.2.ds1-4); however:
Package libc6 is not installed.
-Setting up dpkg (1.10.18) ...
+Setting up dpkg (1.10.19) ...
Moving /usr/info/dir to /usr/share/info/dir.
Making /usr/info a symlink to /usr/share/info.
Selecting previously deselected package libc6.
(Reading database ... 220 files and directories currently installed.)
-Unpacking libc6 (from .../libc6_2.3.2.ds1-10_i386.deb) ...
+Unpacking libc6 (from .../libc6_2.3.2.ds1-11_i386.deb) ...
dpkg: libc6: dependency problems, but configuring anyway as you request:
libc6 depends on libdb1-compat; however:
Package libdb1-compat is not installed.
-Setting up libc6 (2.3.2.ds1-10) ...
+Setting up libc6 (2.3.2.ds1-11) ...
Current default timezone: 'UTC'.
-Local time is now: Sun Jan 18 23:41:36 UTC 2004.
-Universal Time is now: Sun Jan 18 23:41:36 UTC 2004.
+Local time is now: Sat Mar 13 02:49:12 UTC 2004.
+Universal Time is now: Sat Mar 13 02:49:12 UTC 2004.
Run 'tzconfig' if you wish to change it.
-Package `sysvinit' is not installed and no info is available.
-Use dpkg --info (= dpkg-deb --info) to examine archive files,
-and dpkg --contents (= dpkg-deb --contents) to list their contents.
Selecting previously deselected package perl-base.
-(Reading database ... 2231 files and directories currently installed.)
-Unpacking perl-base (from .../perl-base_5.8.2-2_i386.deb) ...
-Setting up perl-base (5.8.2-2) ...
+(Reading database ... 2235 files and directories currently installed.)
+Unpacking perl-base (from .../perl-base_5.8.3-2_i386.deb) ...
+Setting up perl-base (5.8.3-2) ...
Selecting previously deselected package mawk.
-(Reading database ... 2349 files and directories currently installed.)
+(Reading database ... 2355 files and directories currently installed.)
Unpacking mawk (from .../mawk_1.3.3-11_i386.deb) ...
Setting up mawk (1.3.3-11) ...
Selecting previously deselected package debconf.
-(Reading database ... 2368 files and directories currently installed.)
-Unpacking debconf (from .../debconf_1.3.22_all.deb) ...
+(Reading database ... 2374 files and directories currently installed.)
+Unpacking debconf (from .../debconf_1.4.11_all.deb) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-i18n is not installed.
Package debconf-english is not installed.
-Setting up debconf (1.3.22) ...
+Setting up debconf (1.4.11) ...
I: Unpacking required packages...
-(Reading database ... 2505 files and directories currently installed.)
-Preparing to replace base-files 3.0.12 (using .../base-files_3.0.12_i386.deb) ...
+(Reading database ... 2526 files and directories currently installed.)
+Preparing to replace base-files 3.0.13 (using .../base-files_3.0.13_i386.deb) ...
Unpacking replacement base-files ...
-Preparing to replace base-passwd 3.5.5 (using .../base-passwd_3.5.5_i386.deb) ...
+Preparing to replace base-passwd 3.5.7 (using .../base-passwd_3.5.7_i386.deb) ...
Unpacking replacement base-passwd ...
Selecting previously deselected package bash.
-dpkg: regarding .../bash_2.05b-12_i386.deb containing bash, pre-dependency problem:
+dpkg: regarding .../bash_2.05b-14_i386.deb containing bash, pre-dependency problem:
bash pre-depends on libncurses5 (>= 5.3.20030510-1)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking bash (from .../bash_2.05b-12_i386.deb) ...
+Unpacking bash (from .../bash_2.05b-14_i386.deb) ...
Selecting previously deselected package bsdutils.
Unpacking bsdutils (from .../bsdutils_1%3a2.12-3_i386.deb) ...
Selecting previously deselected package coreutils.
@@ -546,13 +523,13 @@ dpkg: regarding .../coreutils_5.0.91-2_i386.deb containing coreutils, pre-depend
dpkg: warning - ignoring pre-dependency problem !
Unpacking coreutils (from .../coreutils_5.0.91-2_i386.deb) ...
Selecting previously deselected package libacl1.
-Unpacking libacl1 (from .../libacl1_2.2.21-1_i386.deb) ...
+Unpacking libacl1 (from .../libacl1_2.2.23-1_i386.deb) ...
Selecting previously deselected package libattr1.
-Unpacking libattr1 (from .../libattr1_2.4.12-1_i386.deb) ...
-Preparing to replace debconf 1.3.22 (using .../debconf_1.3.22_all.deb) ...
+Unpacking libattr1 (from .../libattr1_2.4.15-1_i386.deb) ...
+Preparing to replace debconf 1.4.11 (using .../debconf_1.4.11_all.deb) ...
Unpacking replacement debconf ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.3.22_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.11_all.deb) ...
Selecting previously deselected package liblocale-gettext-perl.
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-wrapi18n-perl.
@@ -560,49 +537,49 @@ Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb)
Selecting previously deselected package libtext-charwidth-perl.
Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.deb) ...
Selecting previously deselected package debianutils.
-dpkg: regarding .../debianutils_2.6.2_i386.deb containing debianutils, pre-dependency problem:
+dpkg: regarding .../debianutils_2.7.2_i386.deb containing debianutils, pre-dependency problem:
debianutils pre-depends on coreutils (>= 4.5.8-1)
coreutils is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking debianutils (from .../debianutils_2.6.2_i386.deb) ...
+Unpacking debianutils (from .../debianutils_2.7.2_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../archives/diff_2.8.1-6_i386.deb) ...
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
+dpkg: regarding .../archives/dpkg_1.10.19_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
-Preparing to replace dpkg 1.10.18 (using .../archives/dpkg_1.10.18_i386.deb) ...
+Preparing to replace dpkg 1.10.19 (using .../archives/dpkg_1.10.19_i386.deb) ...
Unpacking replacement dpkg ...
Selecting previously deselected package dselect.
-Unpacking dselect (from .../dselect_1.10.18_i386.deb) ...
+Unpacking dselect (from .../dselect_1.10.19_i386.deb) ...
Selecting previously deselected package libblkid1.
-Unpacking libblkid1 (from .../libblkid1_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libblkid1 (from .../libblkid1_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package e2fsprogs.
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
- e2fsprogs pre-depends on e2fslibs (= 1.34+1.35-WIP-2003.12.07-2)
+dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb containing e2fsprogs, pre-dependency problem:
+ e2fsprogs pre-depends on e2fslibs (= 1.34+1.35-WIP-2004.01.31-1)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libblkid1 (>= 1.34-1)
libblkid1 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libcomerr2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libss2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libuuid1 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking e2fsprogs (from .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking e2fsprogs (from .../e2fsprogs_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package e2fslibs.
-Unpacking e2fslibs (from .../e2fslibs_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking e2fslibs (from .../e2fslibs_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package libcomerr2.
-Unpacking libcomerr2 (from .../libcomerr2_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libcomerr2 (from .../libcomerr2_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package libss2.
-Unpacking libss2 (from .../libss2_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libss2 (from .../libss2_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package libuuid1.
-Unpacking libuuid1 (from .../libuuid1_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libuuid1 (from .../libuuid1_1.34+1.35-WIP-2004.01.31-1_i386.deb) ...
Selecting previously deselected package findutils.
Unpacking findutils (from .../findutils_4.1.20-3_i386.deb) ...
Selecting previously deselected package grep.
@@ -612,8 +589,8 @@ Unpacking gzip (from .../archives/gzip_1.3.5-7_i386.deb) ...
Selecting previously deselected package hostname.
Unpacking hostname (from .../hostname_2.13_i386.deb) ...
Selecting previously deselected package libcap1.
-Unpacking libcap1 (from .../libcap1_1%3a1.10-12_i386.deb) ...
-Preparing to replace libc6 2.3.2.ds1-10 (using .../libc6_2.3.2.ds1-10_i386.deb) ...
+Unpacking libcap1 (from .../libcap1_1%3a1.10-13_i386.deb) ...
+Preparing to replace libc6 2.3.2.ds1-11 (using .../libc6_2.3.2.ds1-11_i386.deb) ...
Unpacking replacement libc6 ...
Selecting previously deselected package libdb1-compat.
Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
@@ -622,29 +599,29 @@ Unpacking libdb2 (from .../libdb2_2%3a2.7.7.0-8.1_i386.deb) ...
Selecting previously deselected package libdb3.
Unpacking libdb3 (from .../libdb3_3.2.9-19_i386.deb) ...
Selecting previously deselected package libncurses5.
-Unpacking libncurses5 (from .../libncurses5_5.3.20030719-4_i386.deb) ...
+Unpacking libncurses5 (from .../libncurses5_5.3.20030719-5_i386.deb) ...
Selecting previously deselected package libnewt0.51.
-Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-19_i386.deb) ...
+Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-23_i386.deb) ...
Selecting previously deselected package libpam-modules.
-Unpacking libpam-modules (from .../libpam-modules_0.76-14.1_i386.deb) ...
+Unpacking libpam-modules (from .../libpam-modules_0.76-15_i386.deb) ...
Selecting previously deselected package libpam-runtime.
-Unpacking libpam-runtime (from .../libpam-runtime_0.76-14.1_all.deb) ...
+Unpacking libpam-runtime (from .../libpam-runtime_0.76-15_all.deb) ...
Selecting previously deselected package libpam0g.
-Unpacking libpam0g (from .../libpam0g_0.76-14.1_i386.deb) ...
+Unpacking libpam0g (from .../libpam0g_0.76-15_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.7-4_i386.deb) ...
Selecting previously deselected package login.
-dpkg: regarding .../login_1%3a4.0.3-16_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-17_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam0g (>= 0.76)
libpam0g is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../login_1%3a4.0.3-16_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-17_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam-runtime (>= 0.76-13.1)
libpam-runtime is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking login (from .../login_1%3a4.0.3-16_i386.deb) ...
+Unpacking login (from .../login_1%3a4.0.3-17_i386.deb) ...
Selecting previously deselected package makedev.
-Unpacking makedev (from .../makedev_2.3.1-64_all.deb) ...
+Unpacking makedev (from .../makedev_2.3.1-65_all.deb) ...
Preparing to replace mawk 1.3.3-11 (using .../mawk_1.3.3-11_i386.deb) ...
Unpacking replacement mawk ...
Selecting previously deselected package modutils.
@@ -652,21 +629,21 @@ Unpacking modutils (from .../modutils_2.4.26-1_i386.deb) ...
Selecting previously deselected package mount.
Unpacking mount (from .../archives/mount_2.12-3_i386.deb) ...
Selecting previously deselected package ncurses-base.
-Unpacking ncurses-base (from .../ncurses-base_5.3.20030719-4_all.deb) ...
+Unpacking ncurses-base (from .../ncurses-base_5.3.20030719-5_all.deb) ...
Selecting previously deselected package ncurses-bin.
-dpkg: regarding .../ncurses-bin_5.3.20030719-4_i386.deb containing ncurses-bin, pre-dependency problem:
+dpkg: regarding .../ncurses-bin_5.3.20030719-5_i386.deb containing ncurses-bin, pre-dependency problem:
ncurses-bin pre-depends on libncurses5 (>= 5.3.20030510-1)
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking ncurses-bin (from .../ncurses-bin_5.3.20030719-4_i386.deb) ...
+Unpacking ncurses-bin (from .../ncurses-bin_5.3.20030719-5_i386.deb) ...
Selecting previously deselected package passwd.
-Unpacking passwd (from .../passwd_1%3a4.0.3-16_i386.deb) ...
-Preparing to replace perl-base 5.8.2-2 (using .../perl-base_5.8.2-2_i386.deb) ...
+Unpacking passwd (from .../passwd_1%3a4.0.3-17_i386.deb) ...
+Preparing to replace perl-base 5.8.3-2 (using .../perl-base_5.8.3-2_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package procps.
-Unpacking procps (from .../procps_1%3a3.1.14-1_i386.deb) ...
+Unpacking procps (from .../procps_1%3a3.2.0-1_i386.deb) ...
Selecting previously deselected package sed.
-Unpacking sed (from .../archives/sed_4.0.7-3_i386.deb) ...
+Unpacking sed (from .../archives/sed_4.0.7-4_i386.deb) ...
Selecting previously deselected package slang1.
Unpacking slang1 (from .../slang1_1.4.9-2_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
@@ -685,7 +662,7 @@ Unpacking sysvinit (from .../sysvinit_2.85-9_i386.deb) ...
Selecting previously deselected package sysv-rc.
Unpacking sysv-rc (from .../sysv-rc_2.85-9_all.deb) ...
Selecting previously deselected package tar.
-Unpacking tar (from .../tar_1.13.25-6_i386.deb) ...
+Unpacking tar (from .../tar_1.13.93-2_i386.deb) ...
Selecting previously deselected package util-linux.
dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on libncurses5 (>= 5.3.20030510-1)
@@ -700,84 +677,77 @@ dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-depend
dpkg: warning - ignoring pre-dependency problem !
Unpacking util-linux (from .../util-linux_2.12-3_i386.deb) ...
Selecting previously deselected package whiptail.
-Unpacking whiptail (from .../whiptail_0.51.4-19_i386.deb) ...
+Unpacking whiptail (from .../whiptail_0.51.4-23_i386.deb) ...
Selecting previously deselected package libgcc1.
-Unpacking libgcc1 (from .../libgcc1_1%3a3.3.2-4_i386.deb) ...
-Selecting previously deselected package gcc-3.2-base.
-Unpacking gcc-3.2-base (from .../gcc-3.2-base_1%3a3.2.3-9_i386.deb) ...
+Unpacking libgcc1 (from .../libgcc1_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
-Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.2-4_i386.deb) ...
+Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package libstdc++5.
-Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.2-4_i386.deb) ...
-Selecting previously deselected package mbr.
-Unpacking mbr (from .../archives/mbr_1.1.5-1_i386.deb) ...
+Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.3-1_i386.deb) ...
I: Configuring required packages...
-Setting up ncurses-base (5.3.20030719-4) ...
+Setting up ncurses-base (5.3.20030719-5) ...
Setting up sysv-rc (2.85-9) ...
-Setting up libpam-runtime (0.76-14.1) ...
+Setting up libpam-runtime (0.76-15) ...
-Setting up gcc-3.2-base (3.2.3-9) ...
-Setting up gcc-3.3-base (3.3.2-4) ...
-Setting up libc6 (2.3.2.ds1-10) ...
+Setting up gcc-3.3-base (3.3.3-1) ...
+Setting up libc6 (2.3.2.ds1-11) ...
Current default timezone: 'UTC'.
-Local time is now: Sun Jan 18 23:41:44 UTC 2004.
-Universal Time is now: Sun Jan 18 23:41:44 UTC 2004.
+Local time is now: Sat Mar 13 02:49:19 UTC 2004.
+Universal Time is now: Sat Mar 13 02:49:19 UTC 2004.
Run 'tzconfig' if you wish to change it.
-Setting up libcap1 (1.10-12) ...
+Setting up libcap1 (1.10-13) ...
Setting up libdb1-compat (2.1.3-7) ...
Setting up slang1 (1.4.9-2) ...
-Setting up libuuid1 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libuuid1 (1.34+1.35-WIP-2004.01.31-1) ...
Setting up libpopt0 (1.7-4) ...
-Setting up libpam0g (0.76-14.1) ...
+Setting up libpam0g (0.76-15) ...
Setting up bsdutils (2.12-3) ...
-Setting up perl-base (5.8.2-2) ...
-Setting up mbr (1.1.5-1) ...
-
-Setting up tar (1.13.25-6) ...
+Setting up perl-base (5.8.3-2) ...
+Setting up tar (1.13.93-2) ...
Setting up slang1a-utf8 (1.4.9-2) ...
-Setting up libgcc1 (3.3.2-4) ...
+Setting up libgcc1 (3.3.3-1) ...
Setting up mount (2.12-3) ...
-Setting up libncurses5 (5.3.20030719-4) ...
+Setting up libncurses5 (5.3.20030719-5) ...
-Setting up libattr1 (2.4.12-1) ...
+Setting up libattr1 (2.4.15-1) ...
-Setting up sed (4.0.7-3) ...
+Setting up sed (4.0.7-4) ...
-Setting up e2fslibs (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up e2fslibs (1.34+1.35-WIP-2004.01.31-1) ...
-Setting up base-passwd (3.5.5) ...
+Setting up base-passwd (3.5.7) ...
-Setting up libcomerr2 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libcomerr2 (1.34+1.35-WIP-2004.01.31-1) ...
Setting up mawk (1.3.3-11) ...
-Setting up libnewt0.51 (0.51.4-19) ...
+Setting up libnewt0.51 (0.51.4-23) ...
Setting up grep (2.5.1.ds1-2) ...
Setting up hostname (2.13) ...
-Setting up libacl1 (2.2.21-1) ...
+Setting up libacl1 (2.2.23-1) ...
-Setting up libblkid1 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libblkid1 (1.34+1.35-WIP-2004.01.31-1) ...
-Setting up libss2 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libss2 (1.34+1.35-WIP-2004.01.31-1) ...
Setting up findutils (4.1.20-3) ...
-Setting up e2fsprogs (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up e2fsprogs (1.34+1.35-WIP-2004.01.31-1) ...
Setting up liblocale-gettext-perl (1.01-17) ...
Setting up diff (2.8.1-6) ...
@@ -785,46 +755,46 @@ Setting up libdb2 (2.7.7.0-8.1) ...
Setting up libdb3 (3.2.9-19) ...
-Setting up libstdc++5 (3.3.2-4) ...
+Setting up libstdc++5 (3.3.3-1) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
Setting up coreutils (5.0.91-2) ...
-Setting up debianutils (2.6.2) ...
+Setting up debianutils (2.7.2) ...
-Setting up makedev (2.3.1-64) ...
+Setting up makedev (2.3.1-65) ...
-Setting up procps (3.1.14-1) ...
+Setting up procps (3.2.0-1) ...
-Setting up ncurses-bin (5.3.20030719-4) ...
+Setting up ncurses-bin (5.3.20030719-5) ...
-Setting up whiptail (0.51.4-19) ...
-Setting up libpam-modules (0.76-14.1) ...
+Setting up whiptail (0.51.4-23) ...
+Setting up libpam-modules (0.76-15) ...
-Setting up base-files (3.0.12) ...
+Setting up base-files (3.0.13) ...
Setting up gzip (1.3.5-7) ...
-Setting up dselect (1.10.18) ...
-Setting up bash (2.05b-12) ...
+Setting up dselect (1.10.19) ...
+Setting up bash (2.05b-14) ...
-Setting up login (4.0.3-16) ...
+Setting up login (4.0.3-17) ...
-Setting up passwd (4.0.3-16) ...
+Setting up passwd (4.0.3-17) ...
-Setting up dpkg (1.10.18) ...
+Setting up dpkg (1.10.19) ...
dpkg: debconf-i18n: dependency problems, but configuring anyway as you request:
debconf-i18n depends on libtext-iconv-perl; however:
Package libtext-iconv-perl is not installed.
-Setting up debconf-i18n (1.3.22) ...
+Setting up debconf-i18n (1.4.11) ...
dpkg: util-linux: dependency problems, but configuring anyway as you request:
util-linux depends on zlib1g (>= 1:1.1.4); however:
Package zlib1g is not installed.
Setting up util-linux (2.12-3) ...
-Setting up debconf (1.3.22) ...
+Setting up debconf (1.4.11) ...
Setting up initscripts (2.85-9) ...
@@ -836,52 +806,52 @@ Setting up modutils (2.4.26-1) ...
I: Installing base packages...
Selecting previously deselected package adduser.
-(Reading database ... 4285 files and directories currently installed.)
+(Reading database ... 4330 files and directories currently installed.)
Unpacking adduser (from .../archives/adduser_3.51_all.deb) ...
Selecting previously deselected package apt.
-Unpacking apt (from .../archives/apt_0.5.20_i386.deb) ...
+Unpacking apt (from .../archives/apt_0.5.23_i386.deb) ...
Selecting previously deselected package apt-utils.
-Unpacking apt-utils (from .../apt-utils_0.5.20_i386.deb) ...
+Unpacking apt-utils (from .../apt-utils_0.5.23_i386.deb) ...
Selecting previously deselected package at.
Unpacking at (from .../archives/at_3.1.8-11_i386.deb) ...
Selecting previously deselected package base-config.
-Unpacking base-config (from .../base-config_2.08_all.deb) ...
+Unpacking base-config (from .../base-config_2.14_all.deb) ...
Selecting previously deselected package aptitude.
-Unpacking aptitude (from .../aptitude_0.2.13-2_i386.deb) ...
+Unpacking aptitude (from .../aptitude_0.2.14-3_i386.deb) ...
Selecting previously deselected package libsigc++-1.2-5c102.
Unpacking libsigc++-1.2-5c102 (from .../libsigc++-1.2-5c102_1.2.5-1_i386.deb) ...
Selecting previously deselected package bsdmainutils.
-Unpacking bsdmainutils (from .../bsdmainutils_6.0.7_i386.deb) ...
+Unpacking bsdmainutils (from .../bsdmainutils_6.0.11_i386.deb) ...
Selecting previously deselected package console-common.
-Unpacking console-common (from .../console-common_0.7.33_all.deb) ...
+Unpacking console-common (from .../console-common_0.7.36_all.deb) ...
Selecting previously deselected package console-tools.
-Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-45.2_i386.deb) ...
+Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-49_i386.deb) ...
Selecting previously deselected package libconsole.
-Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-45.2_i386.deb) ...
+Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-49_i386.deb) ...
Selecting previously deselected package console-data.
-Unpacking console-data (from .../console-data_2002.12.04dbs-26_all.deb) ...
+Unpacking console-data (from .../console-data_2002.12.04dbs-29_all.deb) ...
Selecting previously deselected package cpio.
Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ...
Selecting previously deselected package cron.
-Unpacking cron (from .../cron_3.0pl1-81_i386.deb) ...
+Unpacking cron (from .../cron_3.0pl1-83_i386.deb) ...
Selecting previously deselected package dhcp-client.
Unpacking dhcp-client (from .../dhcp-client_2.0pl5-16.1_i386.deb) ...
Selecting previously deselected package ed.
Unpacking ed (from .../archives/ed_0.2-20_i386.deb) ...
Selecting previously deselected package exim4.
-Unpacking exim4 (from .../archives/exim4_4.30-3_all.deb) ...
+Unpacking exim4 (from .../archives/exim4_4.30-4_all.deb) ...
Selecting previously deselected package exim4-base.
-Unpacking exim4-base (from .../exim4-base_4.30-3_i386.deb) ...
+Unpacking exim4-base (from .../exim4-base_4.30-4_i386.deb) ...
Selecting previously deselected package exim4-config.
-Unpacking exim4-config (from .../exim4-config_4.30-3_all.deb) ...
+Unpacking exim4-config (from .../exim4-config_4.30-4_all.deb) ...
Selecting previously deselected package exim4-daemon-light.
-Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.30-3_i386.deb) ...
+Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.30-4_i386.deb) ...
Selecting previously deselected package fdutils.
-Unpacking fdutils (from .../fdutils_5.4-20030718-2_i386.deb) ...
+Unpacking fdutils (from .../fdutils_5.4-20030718-3_i386.deb) ...
Selecting previously deselected package gettext-base.
-Unpacking gettext-base (from .../gettext-base_0.12.1-8_i386.deb) ...
+Unpacking gettext-base (from .../gettext-base_0.14.1-1_i386.deb) ...
Selecting previously deselected package groff-base.
-Unpacking groff-base (from .../groff-base_1.18.1-14_i386.deb) ...
+Unpacking groff-base (from .../groff-base_1.18.1-15_i386.deb) ...
Selecting previously deselected package ifupdown.
Unpacking ifupdown (from .../ifupdown_0.6.4-4.6_i386.deb) ...
Selecting previously deselected package info.
@@ -891,23 +861,21 @@ Unpacking klogd (from .../klogd_1.4.1-10_i386.deb) ...
Selecting previously deselected package libident.
Unpacking libident (from .../libident_0.22-2.2_i386.deb) ...
Selecting previously deselected package libgnutls7.
-Unpacking libgnutls7 (from .../libgnutls7_0.8.12-3.1_i386.deb) ...
+Unpacking libgnutls7 (from .../libgnutls7_0.8.12-5_i386.deb) ...
Selecting previously deselected package libssl0.9.7.
Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7c-5_i386.deb) ...
Selecting previously deselected package libgcrypt1.
Unpacking libgcrypt1 (from .../libgcrypt1_1.1.12-4_i386.deb) ...
Selecting previously deselected package liblzo1.
Unpacking liblzo1 (from .../liblzo1_1.08-1_i386.deb) ...
-Selecting previously deselected package libopencdk8.
-Unpacking libopencdk8 (from .../libopencdk8_0.5.1-1_i386.deb) ...
Selecting previously deselected package libtasn1-0.
Unpacking libtasn1-0 (from .../libtasn1-0_0.1.2-1_i386.deb) ...
Selecting previously deselected package zlib1g.
-Unpacking zlib1g (from .../zlib1g_1%3a1.2.1-3_i386.deb) ...
+Unpacking zlib1g (from .../zlib1g_1%3a1.2.1-4_i386.deb) ...
Selecting previously deselected package liblockfile1.
Unpacking liblockfile1 (from .../liblockfile1_1.05_i386.deb) ...
Selecting previously deselected package libpcre3.
-Unpacking libpcre3 (from .../libpcre3_4.3-3_i386.deb) ...
+Unpacking libpcre3 (from .../libpcre3_4.3-4_i386.deb) ...
Selecting previously deselected package libwrap0.
Unpacking libwrap0 (from .../libwrap0_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package logrotate.
@@ -915,19 +883,17 @@ Unpacking logrotate (from .../logrotate_3.6.5-2_i386.deb) ...
Selecting previously deselected package mailx.
Unpacking mailx (from .../mailx_1%3a8.1.2-0.20031014cvs-1_i386.deb) ...
Selecting previously deselected package man-db.
-Unpacking man-db (from .../man-db_2.4.2-6_i386.deb) ...
+Unpacking man-db (from .../man-db_2.4.2-9_i386.deb) ...
Selecting previously deselected package libgdbm3.
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_i386.deb) ...
Selecting previously deselected package manpages.
-Unpacking manpages (from .../manpages_1.62-1_all.deb) ...
-Selecting previously deselected package modconf.
-Unpacking modconf (from .../modconf_0.2.45_all.deb) ...
+Unpacking manpages (from .../manpages_1.66-1_all.deb) ...
Selecting previously deselected package nano.
-Unpacking nano (from .../archives/nano_1.2.2-7_i386.deb) ...
+Unpacking nano (from .../archives/nano_1.2.3-1_i386.deb) ...
Selecting previously deselected package net-tools.
-Unpacking net-tools (from .../net-tools_1.60-8_i386.deb) ...
+Unpacking net-tools (from .../net-tools_1.60-9_i386.deb) ...
Selecting previously deselected package netbase.
-Unpacking netbase (from .../archives/netbase_4.15_all.deb) ...
+Unpacking netbase (from .../archives/netbase_4.16_all.deb) ...
Selecting previously deselected package netkit-inetd.
Unpacking netkit-inetd (from .../netkit-inetd_0.10-9_i386.deb) ...
Selecting previously deselected package iputils-ping.
@@ -947,7 +913,7 @@ Unpacking libpcap0.7 (from .../libpcap0.7_0.7.2-5_i386.deb) ...
Selecting previously deselected package sysklogd.
Unpacking sysklogd (from .../sysklogd_1.4.1-10_i386.deb) ...
Selecting previously deselected package tasksel.
-Unpacking tasksel (from .../archives/tasksel_1.40_i386.deb) ...
+Unpacking tasksel (from .../archives/tasksel_1.44_i386.deb) ...
Selecting previously deselected package libtextwrap1.
Unpacking libtextwrap1 (from .../libtextwrap1_0.1-1_i386.deb) ...
Selecting previously deselected package tcpd.
@@ -957,28 +923,22 @@ Unpacking telnet (from .../telnet_0.17-22_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-2_i386.deb) ...
Selecting previously deselected package wget.
-Unpacking wget (from .../archives/wget_1.9.1-3_i386.deb) ...
-Selecting previously deselected package lilo.
-Unpacking lilo (from .../lilo_1%3a22.5.8-8_i386.deb) ...
+Unpacking wget (from .../archives/wget_1.9.1-4_i386.deb) ...
Selecting previously deselected package pciutils.
-Unpacking pciutils (from .../pciutils_1%3a2.1.11-6_i386.deb) ...
+Unpacking pciutils (from .../pciutils_1%3a2.1.11-7_i386.deb) ...
Selecting previously deselected package setserial.
Unpacking setserial (from .../setserial_2.17-33_i386.deb) ...
Selecting previously deselected package syslinux.
Unpacking syslinux (from .../syslinux_2.04-1_i386.deb) ...
Selecting previously deselected package psmisc.
Unpacking psmisc (from .../psmisc_21.4-1_i386.deb) ...
-Selecting previously deselected package pcmcia-cs.
-Unpacking pcmcia-cs (from .../pcmcia-cs_3.1.33-6_i386.deb) ...
Selecting previously deselected package ipchains.
Unpacking ipchains (from .../ipchains_1.3.10-15_i386.deb) ...
Selecting previously deselected package iptables.
-Unpacking iptables (from .../iptables_1.2.9-1_i386.deb) ...
-Setting up modconf (0.2.45) ...
-
+Unpacking iptables (from .../iptables_1.2.9-5_i386.deb) ...
Setting up telnet (0.17-22) ...
-Setting up gettext-base (0.12.1-8) ...
+Setting up gettext-base (0.14.1-1) ...
Setting up libgdbm3 (1.8.3-2) ...
Setting up libgcrypt1 (1.1.12-4) ...
@@ -991,27 +951,25 @@ Setting up libident (0.22-2.2) ...
Setting up libssl0.9.7 (0.9.7c-5) ...
-Setting up apt (0.5.20) ...
+Setting up apt (0.5.23) ...
-Setting up fdutils (5.4-20030718-2) ...
+Setting up fdutils (5.4-20030718-3) ...
Keeping old fdmount setuid root settings.
Please note that you can run
'/usr/sbin/fdutilsconfig' to change them.
-Setting up pciutils (2.1.11-6) ...
-Setting up console-data (2002.12.04dbs-26) ...
+Setting up pciutils (2.1.11-7) ...
+Setting up console-data (2002.12.04dbs-29) ...
Looking for keymap to install:
NONE
Setting up dhcp-client (2.0pl5-16.1) ...
-Setting up pcmcia-cs (3.1.33-6) ...
-
-Setting up zlib1g (1.2.1-3) ...
+Setting up zlib1g (1.2.1-4) ...
Setting up adduser (3.51) ...
-Setting up manpages (1.62-1) ...
+Setting up manpages (1.66-1) ...
Setting up ed (0.2-20) ...
Setting up libtext-iconv-perl (1.2-2) ...
@@ -1030,53 +988,46 @@ Saving state of known serial devices... /dev/ttyS0: No such device
/dev/ttyS3: No such device
backing up /var/lib/setserial/autoserial.conf done.
-Setting up wget (1.9.1-3) ...
+Setting up wget (1.9.1-4) ...
Setting up ipchains (1.3.10-15) ...
-Setting up groff-base (1.18.1-14) ...
+Setting up groff-base (1.18.1-15) ...
-Setting up net-tools (1.60-8) ...
-Setting up bsdmainutils (6.0.7) ...
+Setting up net-tools (1.60-9) ...
+Setting up bsdmainutils (6.0.11) ...
Setting up libsigc++-1.2-5c102 (1.2.5-1) ...
Setting up syslinux (2.04-1) ...
-Setting up libpcre3 (4.3-3) ...
+Setting up libpcre3 (4.3-4) ...
-Setting up aptitude (0.2.13-2) ...
+Setting up aptitude (0.2.14-3) ...
Setting up info (4.6-1) ...
-Setting up libopencdk8 (0.5.1-1) ...
-
Setting up iputils-ping (20020927-2) ...
-Setting up lilo (22.5.8-8) ...
-hostname: Unknown host
-Use of uninitialized value in sprintf at /usr/share/perl5/Debconf/Element/Noninteractive/Note.pm line 38, <GEN1> line 3.
-Can't send mail: sendmail process failed
-
-Setting up libgnutls7 (0.8.12-3.1) ...
+Setting up libgnutls7 (0.8.12-5) ...
-Setting up cron (3.0pl1-81) ...
+Setting up cron (3.0pl1-83) ...
Adding group crontab (101)...
Done.
Starting periodic command scheduler: cron
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up nano (1.2.2-7) ...
+Setting up nano (1.2.3-1) ...
Setting up netkit-inetd (0.10-9) ...
Starting internet superserver: inetd
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up libconsole (0.2.3dbs-45.2) ...
+Setting up libconsole (0.2.3dbs-49) ...
-Setting up apt-utils (0.5.20) ...
+Setting up apt-utils (0.5.23) ...
-Setting up iptables (1.2.9-1) ...
+Setting up iptables (1.2.9-5) ...
Setting up cpio (2.5-1.1) ...
@@ -1088,34 +1039,34 @@ Setting up liblockfile1 (1.05) ...
Setting up tcpd (7.6-ipv6.1-3) ...
-Setting up exim4-config (4.30-3) ...
+Setting up exim4-config (4.30-4) ...
hostname: Unknown host
Adding system-user for exim (v4)
-Setting up man-db (2.4.2-6) ...
+Setting up man-db (2.4.2-9) ...
Building database of manual pages ...
-Setting up console-common (0.7.33) ...
+Setting up console-common (0.7.36) ...
Looking for keymap to install:
NONE
Setting up ifupdown (0.6.4-4.6) ...
Setting up logrotate (3.6.5-2) ...
-Setting up console-tools (0.2.3dbs-45.2) ...
+Setting up console-tools (0.2.3dbs-49) ...
-Setting up base-config (2.08) ...
+Setting up base-config (2.14) ...
-Setting up netbase (4.15) ...
+Setting up netbase (4.16) ...
Setting up ppp (2.4.2+20031127-2) ...
Setting up pppoe (3.5-3) ...
Setting up pppoeconf (1.0) ...
-Setting up exim4-base (4.30-3) ...
+Setting up exim4-base (4.30-4) ...
-Setting up exim4-daemon-light (4.30-3) ...
+Setting up exim4-daemon-light (4.30-4) ...
Starting MTA:
Warning: Fake start-stop-daemon called, doing nothing
exim4.
@@ -1129,7 +1080,7 @@ Starting deferred execution scheduler: atd
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up exim4 (4.30-3) ...
+Setting up exim4 (4.30-4) ...
Setting up sysklogd (1.4.1-10) ...
Stopping system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
@@ -1148,9 +1099,12 @@ Warning: Fake start-stop-daemon called, doing nothing
Setting up libtextwrap1 (0.1-1) ...
-Setting up tasksel (1.40) ...
+Setting up tasksel (1.44) ...
I: Base system installed successfully.
+umount: /var/cache/pbuilder/build/4618/./dev/pts: not mounted
+umount: /var/cache/pbuilder/build/4618/./dev/shm: not mounted
+umount: /var/cache/pbuilder/build/4618/./proc/bus/usb: not mounted
-> debootstrap finished
-> copying local configuration
-> Installing apt-lines
@@ -1159,17 +1113,15 @@ Refreshing the base.tgz
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp sarge/main Packages [2679kB]
+Get:1 http://ring.asahi-net.or.jp sarge/main Packages [2780kB]
Get:2 http://ring.asahi-net.or.jp sarge/main Release [81B]
-Get:3 http://ring.asahi-net.or.jp sarge/contrib Packages [59.8kB]
+Get:3 http://ring.asahi-net.or.jp sarge/contrib Packages [60.0kB]
Get:4 http://ring.asahi-net.or.jp sarge/contrib Release [84B]
Get:5 http://ring.asahi-net.or.jp sarge/non-free Packages [62.8kB]
Get:6 http://ring.asahi-net.or.jp sarge/non-free Release [85B]
-Fetched 2802kB in 4s (616kB/s)
+Fetched 2903kB in 4s (634kB/s)
Reading Package Lists...
-(Reading database ... 7253 files and directories currently installed.)
-Removing lilo ...
-Purging configuration files for lilo ...
+dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
Building Dependency Tree...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
@@ -1180,93 +1132,94 @@ The following extra packages will be installed:
binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libdb4.0
libstdc++5-3.3-dev linux-kernel-headers make patch perl perl-modules
Suggested packages:
- gnupg manpages-dev automake flex gdb gcc-3.3-doc glibc-doc libstdc++5-3.3-doc
- libterm-readline-perl-perl
+ binutils-doc cpp-doc gnupg debian-keyring gcc-3.3-doc manpages-dev autoconf
+ automake libtool flex bison gdb gcc-doc glibc-doc libstdc++5-3.3-doc
+ stl-manual perl-doc libterm-readline-perl-perl
The following NEW packages will be installed:
binutils build-essential cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3
libc6-dev libdb4.0 libstdc++5-3.3-dev linux-kernel-headers make patch perl
perl-modules
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 17.9MB of archives.
-After unpacking 62.1MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main binutils 2.14.90.0.7-3 [2468kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main cpp-3.3 1:3.3.2-4 [1386kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main cpp 4:3.3.2-2 [26.2kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main perl-modules 5.8.2-2 [2158kB]
+Need to get 18.3MB of archives.
+After unpacking 63.2MB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main binutils 2.14.90.0.7-5 [2469kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main cpp-3.3 1:3.3.3-1 [1389kB]
+Get:3 http://ring.asahi-net.or.jp sarge/main cpp 4:3.3.3-2 [26.4kB]
+Get:4 http://ring.asahi-net.or.jp sarge/main perl-modules 5.8.3-2 [2166kB]
Get:5 http://ring.asahi-net.or.jp sarge/main libdb4.0 4.0.14-1.3 [302kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main perl 5.8.2-2 [3246kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main perl 5.8.3-2 [3273kB]
Get:7 http://ring.asahi-net.or.jp sarge/main patch 2.5.9-1 [92.3kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main make 3.80-4 [349kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main dpkg-dev 1.10.18 [115kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main gcc-3.3 1:3.3.2-4 [1327kB]
-Get:11 http://ring.asahi-net.or.jp sarge/main gcc 4:3.3.2-2 [4850B]
-Get:12 http://ring.asahi-net.or.jp sarge/main linux-kernel-headers 2.5.999-test7-bk-9 [1374kB]
-Get:13 http://ring.asahi-net.or.jp sarge/main libc6-dev 2.3.2.ds1-10 [2515kB]
-Get:14 http://ring.asahi-net.or.jp sarge/main libstdc++5-3.3-dev 1:3.3.2-4 [768kB]
-Get:15 http://ring.asahi-net.or.jp sarge/main g++-3.3 1:3.3.2-4 [1766kB]
-Get:16 http://ring.asahi-net.or.jp sarge/main g++ 4:3.3.2-2 [1394B]
+Get:8 http://ring.asahi-net.or.jp sarge/main make 3.80-6 [423kB]
+Get:9 http://ring.asahi-net.or.jp sarge/main dpkg-dev 1.10.19 [115kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main gcc-3.3 1:3.3.3-1 [1554kB]
+Get:11 http://ring.asahi-net.or.jp sarge/main gcc 4:3.3.3-2 [4834B]
+Get:12 http://ring.asahi-net.or.jp sarge/main linux-kernel-headers 2.5.999-test7-bk-15 [1377kB]
+Get:13 http://ring.asahi-net.or.jp sarge/main libc6-dev 2.3.2.ds1-11 [2530kB]
+Get:14 http://ring.asahi-net.or.jp sarge/main libstdc++5-3.3-dev 1:3.3.3-1 [771kB]
+Get:15 http://ring.asahi-net.or.jp sarge/main g++-3.3 1:3.3.3-1 [1771kB]
+Get:16 http://ring.asahi-net.or.jp sarge/main g++ 4:3.3.3-2 [1390B]
Get:17 http://ring.asahi-net.or.jp sarge/main build-essential 10 [6450B]
-Fetched 17.9MB in 18s (971kB/s)
+Fetched 18.3MB in 24s (750kB/s)
Selecting previously deselected package binutils.
-(Reading database ... 7212 files and directories currently installed.)
-Unpacking binutils (from .../binutils_2.14.90.0.7-3_i386.deb) ...
+(Reading database ... 7178 files and directories currently installed.)
+Unpacking binutils (from .../binutils_2.14.90.0.7-5_i386.deb) ...
Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.2-4_i386.deb) ...
+Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.2-2_i386.deb) ...
+Unpacking cpp (from .../cpp_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package perl-modules.
-Unpacking perl-modules (from .../perl-modules_5.8.2-2_all.deb) ...
+Unpacking perl-modules (from .../perl-modules_5.8.3-2_all.deb) ...
Selecting previously deselected package libdb4.0.
Unpacking libdb4.0 (from .../libdb4.0_4.0.14-1.3_i386.deb) ...
Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.2-2_i386.deb) ...
+Unpacking perl (from .../archives/perl_5.8.3-2_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-4_i386.deb) ...
+Unpacking make (from .../archives/make_3.80-6_i386.deb) ...
Selecting previously deselected package dpkg-dev.
-Unpacking dpkg-dev (from .../dpkg-dev_1.10.18_all.deb) ...
+Unpacking dpkg-dev (from .../dpkg-dev_1.10.19_all.deb) ...
Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.2-4_i386.deb) ...
+Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.2-2_i386.deb) ...
+Unpacking gcc (from .../gcc_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package linux-kernel-headers.
-Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-9_i386.deb) ...
+Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-15_i386.deb) ...
Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-10_i386.deb) ...
+Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-11_i386.deb) ...
Selecting previously deselected package libstdc++5-3.3-dev.
-Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.2-4_i386.deb) ...
+Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.2-4_i386.deb) ...
+Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.3-1_i386.deb) ...
Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.2-2_i386.deb) ...
+Unpacking g++ (from .../g++_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package build-essential.
Unpacking build-essential (from .../build-essential_10_i386.deb) ...
-Setting up binutils (2.14.90.0.7-3) ...
+Setting up binutils (2.14.90.0.7-5) ...
-Setting up cpp-3.3 (3.3.2-4) ...
-Setting up cpp (3.3.2-2) ...
+Setting up cpp-3.3 (3.3.3-1) ...
+Setting up cpp (3.3.3-2) ...
Setting up libdb4.0 (4.0.14-1.3) ...
Setting up patch (2.5.9-1) ...
-Setting up make (3.80-4) ...
+Setting up make (3.80-6) ...
-Setting up gcc-3.3 (3.3.2-4) ...
-Setting up gcc (3.3.2-2) ...
+Setting up gcc-3.3 (3.3.3-1) ...
+Setting up gcc (3.3.3-2) ...
-Setting up linux-kernel-headers (2.5.999-test7-bk-9) ...
-Setting up libc6-dev (2.3.2.ds1-10) ...
-Setting up perl-modules (5.8.2-2) ...
-Setting up libstdc++5-3.3-dev (3.3.2-4) ...
-Setting up perl (5.8.2-2) ...
+Setting up linux-kernel-headers (2.5.999-test7-bk-15) ...
+Setting up libc6-dev (2.3.2.ds1-11) ...
+Setting up perl-modules (5.8.3-2) ...
+Setting up libstdc++5-3.3-dev (3.3.3-1) ...
+Setting up perl (5.8.3-2) ...
-Setting up dpkg-dev (1.10.18) ...
-Setting up g++-3.3 (3.3.2-4) ...
-Setting up g++ (3.3.2-2) ...
+Setting up dpkg-dev (1.10.19) ...
+Setting up g++-3.3 (3.3.3-1) ...
+Setting up g++ (3.3.3-2) ...
Setting up build-essential (10) ...
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//10309 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//4618 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sid.log b/testsuite/normal/pbuilder-create-sid.log
index c1f374e..e0a5355 100644
--- a/testsuite/normal/pbuilder-create-sid.log
+++ b/testsuite/normal/pbuilder-create-sid.log
@@ -63,10 +63,9 @@ I: Checking libdb1-compat...
I: Checking libdb2...
I: Checking libdb3...
I: Checking libgcc1...
-I: Checking libgcrypt1...
I: Checking libgcrypt7...
I: Checking libgdbm3...
-I: Checking libgnutls7...
+I: Checking libgnutls10...
I: Checking libgpg-error0...
I: Checking libident...
I: Checking liblocale-gettext-perl...
@@ -85,14 +84,13 @@ I: Checking libsigc++-1.2-5c102...
I: Checking libss2...
I: Checking libssl0.9.7...
I: Checking libstdc++5...
-I: Checking libtasn1-0...
+I: Checking libtasn1-2...
I: Checking libtext-charwidth-perl...
I: Checking libtext-iconv-perl...
I: Checking libtext-wrapi18n-perl...
I: Checking libtextwrap1...
I: Checking libuuid1...
I: Checking libwrap0...
-I: Checking lilo...
I: Checking login...
I: Checking logrotate...
I: Checking mailx...
@@ -100,8 +98,6 @@ I: Checking makedev...
I: Checking man-db...
I: Checking manpages...
I: Checking mawk...
-I: Checking mbr...
-I: Checking modconf...
I: Checking modutils...
I: Checking mount...
I: Checking nano...
@@ -113,7 +109,6 @@ I: Checking netkit-inetd...
I: Checking nvi...
I: Checking passwd...
I: Checking pciutils...
-I: Checking pcmcia-cs...
I: Checking perl-base...
I: Checking ppp...
I: Checking pppconfig...
@@ -253,14 +248,12 @@ I: Retrieving libdb3
I: Validating libdb3
I: Retrieving libgcc1
I: Validating libgcc1
-I: Retrieving libgcrypt1
-I: Validating libgcrypt1
I: Retrieving libgcrypt7
I: Validating libgcrypt7
I: Retrieving libgdbm3
I: Validating libgdbm3
-I: Retrieving libgnutls7
-I: Validating libgnutls7
+I: Retrieving libgnutls10
+I: Validating libgnutls10
I: Retrieving libgpg-error0
I: Validating libgpg-error0
I: Retrieving libident
@@ -297,8 +290,8 @@ I: Retrieving libssl0.9.7
I: Validating libssl0.9.7
I: Retrieving libstdc++5
I: Validating libstdc++5
-I: Retrieving libtasn1-0
-I: Validating libtasn1-0
+I: Retrieving libtasn1-2
+I: Validating libtasn1-2
I: Retrieving libtext-charwidth-perl
I: Validating libtext-charwidth-perl
I: Retrieving libtext-iconv-perl
@@ -311,8 +304,6 @@ I: Retrieving libuuid1
I: Validating libuuid1
I: Retrieving libwrap0
I: Validating libwrap0
-I: Retrieving lilo
-I: Validating lilo
I: Retrieving login
I: Validating login
I: Retrieving logrotate
@@ -327,10 +318,6 @@ I: Retrieving manpages
I: Validating manpages
I: Retrieving mawk
I: Validating mawk
-I: Retrieving mbr
-I: Validating mbr
-I: Retrieving modconf
-I: Validating modconf
I: Retrieving modutils
I: Validating modutils
I: Retrieving mount
@@ -353,8 +340,6 @@ I: Retrieving passwd
I: Validating passwd
I: Retrieving pciutils
I: Validating pciutils
-I: Retrieving pcmcia-cs
-I: Validating pcmcia-cs
I: Retrieving perl-base
I: Validating perl-base
I: Retrieving ppp
@@ -460,86 +445,82 @@ I: Extracting sysv-rc...
I: Extracting tar...
I: Extracting util-linux...
I: Extracting whiptail...
-I: Extracting mbr...
I: Installing core packages...
Selecting previously deselected package base-files.
(Reading database ... 0 files and directories currently installed.)
-Unpacking base-files (from .../base-files_3.0.12_i386.deb) ...
+Unpacking base-files (from .../base-files_3.0.13_i386.deb) ...
Selecting previously deselected package base-passwd.
-Unpacking base-passwd (from .../base-passwd_3.5.5_i386.deb) ...
+Unpacking base-passwd (from .../base-passwd_3.5.7_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you request:
base-passwd depends on libc6 (>= 2.3.2.ds1-4); however:
Package libc6 is not installed.
-Setting up base-passwd (3.5.5) ...
+Setting up base-passwd (3.5.7) ...
dpkg: base-files: dependency problems, but configuring anyway as you request:
base-files depends on awk; however:
Package awk is not installed.
-Setting up base-files (3.0.12) ...
+Setting up base-files (3.0.13) ...
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
+dpkg: regarding .../archives/dpkg_1.10.20_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
- dpkg pre-depends on libc6 (>= 2.3.2-1)
+dpkg: regarding .../archives/dpkg_1.10.20_i386.deb containing dpkg, pre-dependency problem:
+ dpkg pre-depends on libc6 (>= 2.3.2.ds1-4)
dpkg: warning - ignoring pre-dependency problem !
(Reading database ... 84 files and directories currently installed.)
-Preparing to replace dpkg 1.10.18 (using .../archives/dpkg_1.10.18_i386.deb) ...
+Preparing to replace dpkg 1.10.20 (using .../archives/dpkg_1.10.20_i386.deb) ...
Unpacking replacement dpkg ...
dpkg: dpkg: dependency problems, but configuring anyway as you request:
dpkg depends on dselect; however:
Package dselect is not installed.
- dpkg depends on libc6 (>= 2.3.2-1); however:
+ dpkg depends on libc6 (>= 2.3.2.ds1-4); however:
Package libc6 is not installed.
-Setting up dpkg (1.10.18) ...
+Setting up dpkg (1.10.20) ...
Moving /usr/info/dir to /usr/share/info/dir.
Making /usr/info a symlink to /usr/share/info.
Selecting previously deselected package libc6.
-(Reading database ... 220 files and directories currently installed.)
-Unpacking libc6 (from .../libc6_2.3.2.ds1-10_i386.deb) ...
+(Reading database ... 221 files and directories currently installed.)
+Unpacking libc6 (from .../libc6_2.3.2.ds1-11_i386.deb) ...
dpkg: libc6: dependency problems, but configuring anyway as you request:
libc6 depends on libdb1-compat; however:
Package libdb1-compat is not installed.
-Setting up libc6 (2.3.2.ds1-10) ...
+Setting up libc6 (2.3.2.ds1-11) ...
Current default timezone: 'UTC'.
-Local time is now: Sun Jan 18 23:35:27 UTC 2004.
-Universal Time is now: Sun Jan 18 23:35:27 UTC 2004.
+Local time is now: Sat Mar 13 02:42:22 UTC 2004.
+Universal Time is now: Sat Mar 13 02:42:22 UTC 2004.
Run 'tzconfig' if you wish to change it.
-Package `sysvinit' is not installed and no info is available.
-Use dpkg --info (= dpkg-deb --info) to examine archive files,
-and dpkg --contents (= dpkg-deb --contents) to list their contents.
Selecting previously deselected package perl-base.
-(Reading database ... 2231 files and directories currently installed.)
-Unpacking perl-base (from .../perl-base_5.8.2-2_i386.deb) ...
-Setting up perl-base (5.8.2-2) ...
+(Reading database ... 2236 files and directories currently installed.)
+Unpacking perl-base (from .../perl-base_5.8.3-2_i386.deb) ...
+Setting up perl-base (5.8.3-2) ...
Selecting previously deselected package mawk.
-(Reading database ... 2349 files and directories currently installed.)
+(Reading database ... 2356 files and directories currently installed.)
Unpacking mawk (from .../mawk_1.3.3-11_i386.deb) ...
Setting up mawk (1.3.3-11) ...
Selecting previously deselected package debconf.
-(Reading database ... 2368 files and directories currently installed.)
-Unpacking debconf (from .../archives/debconf_1.4.7_all.deb) ...
+(Reading database ... 2375 files and directories currently installed.)
+Unpacking debconf (from .../debconf_1.4.16_all.deb) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-i18n is not installed.
Package debconf-english is not installed.
-Setting up debconf (1.4.7) ...
+Setting up debconf (1.4.16) ...
I: Unpacking required packages...
-(Reading database ... 2518 files and directories currently installed.)
-Preparing to replace base-files 3.0.12 (using .../base-files_3.0.12_i386.deb) ...
+(Reading database ... 2527 files and directories currently installed.)
+Preparing to replace base-files 3.0.13 (using .../base-files_3.0.13_i386.deb) ...
Unpacking replacement base-files ...
-Preparing to replace base-passwd 3.5.5 (using .../base-passwd_3.5.5_i386.deb) ...
+Preparing to replace base-passwd 3.5.7 (using .../base-passwd_3.5.7_i386.deb) ...
Unpacking replacement base-passwd ...
Selecting previously deselected package bash.
-dpkg: regarding .../bash_2.05b-12_i386.deb containing bash, pre-dependency problem:
+dpkg: regarding .../bash_2.05b-14_i386.deb containing bash, pre-dependency problem:
bash pre-depends on libncurses5 (>= 5.3.20030510-1)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking bash (from .../bash_2.05b-12_i386.deb) ...
+Unpacking bash (from .../bash_2.05b-14_i386.deb) ...
Selecting previously deselected package bsdutils.
Unpacking bsdutils (from .../bsdutils_1%3a2.12-6_i386.deb) ...
Selecting previously deselected package coreutils.
@@ -551,13 +532,13 @@ dpkg: regarding .../coreutils_5.0.91-2_i386.deb containing coreutils, pre-depend
dpkg: warning - ignoring pre-dependency problem !
Unpacking coreutils (from .../coreutils_5.0.91-2_i386.deb) ...
Selecting previously deselected package libacl1.
-Unpacking libacl1 (from .../libacl1_2.2.21-1_i386.deb) ...
+Unpacking libacl1 (from .../libacl1_2.2.23-1_i386.deb) ...
Selecting previously deselected package libattr1.
-Unpacking libattr1 (from .../libattr1_2.4.12-1_i386.deb) ...
-Preparing to replace debconf 1.4.7 (using .../archives/debconf_1.4.7_all.deb) ...
+Unpacking libattr1 (from .../libattr1_2.4.15-1_i386.deb) ...
+Preparing to replace debconf 1.4.16 (using .../debconf_1.4.16_all.deb) ...
Unpacking replacement debconf ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.7_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.16_all.deb) ...
Selecting previously deselected package liblocale-gettext-perl.
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-wrapi18n-perl.
@@ -565,55 +546,55 @@ Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb)
Selecting previously deselected package libtext-charwidth-perl.
Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.deb) ...
Selecting previously deselected package debianutils.
-dpkg: regarding .../debianutils_2.6.2_i386.deb containing debianutils, pre-dependency problem:
+dpkg: regarding .../debianutils_2.7.2_i386.deb containing debianutils, pre-dependency problem:
debianutils pre-depends on coreutils (>= 4.5.8-1)
coreutils is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking debianutils (from .../debianutils_2.6.2_i386.deb) ...
+Unpacking debianutils (from .../debianutils_2.7.2_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../archives/diff_2.8.1-6_i386.deb) ...
-dpkg: regarding .../archives/dpkg_1.10.18_i386.deb containing dpkg, pre-dependency problem:
+dpkg: regarding .../archives/dpkg_1.10.20_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
-Preparing to replace dpkg 1.10.18 (using .../archives/dpkg_1.10.18_i386.deb) ...
+Preparing to replace dpkg 1.10.20 (using .../archives/dpkg_1.10.20_i386.deb) ...
Unpacking replacement dpkg ...
Selecting previously deselected package dselect.
-Unpacking dselect (from .../dselect_1.10.18_i386.deb) ...
+Unpacking dselect (from .../dselect_1.10.20_i386.deb) ...
Selecting previously deselected package libblkid1.
-Unpacking libblkid1 (from .../libblkid1_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libblkid1 (from .../libblkid1_1.35-3_i386.deb) ...
Selecting previously deselected package e2fsprogs.
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
- e2fsprogs pre-depends on e2fslibs (= 1.34+1.35-WIP-2003.12.07-2)
+dpkg: regarding .../e2fsprogs_1.35-3_i386.deb containing e2fsprogs, pre-dependency problem:
+ e2fsprogs pre-depends on e2fslibs (= 1.35-3)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.35-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libblkid1 (>= 1.34-1)
libblkid1 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.35-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libcomerr2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.35-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libss2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb containing e2fsprogs, pre-dependency problem:
+dpkg: regarding .../e2fsprogs_1.35-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libuuid1 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking e2fsprogs (from .../e2fsprogs_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking e2fsprogs (from .../e2fsprogs_1.35-3_i386.deb) ...
Selecting previously deselected package e2fslibs.
-Unpacking e2fslibs (from .../e2fslibs_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking e2fslibs (from .../e2fslibs_1.35-3_i386.deb) ...
Selecting previously deselected package libcomerr2.
-Unpacking libcomerr2 (from .../libcomerr2_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libcomerr2 (from .../libcomerr2_1.35-3_i386.deb) ...
Selecting previously deselected package libss2.
-Unpacking libss2 (from .../libss2_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libss2 (from .../libss2_1.35-3_i386.deb) ...
Selecting previously deselected package libuuid1.
-Unpacking libuuid1 (from .../libuuid1_1.34+1.35-WIP-2003.12.07-2_i386.deb) ...
+Unpacking libuuid1 (from .../libuuid1_1.35-3_i386.deb) ...
Selecting previously deselected package findutils.
Unpacking findutils (from .../findutils_4.1.20-3_i386.deb) ...
Selecting previously deselected package gcc-3.2-base.
Unpacking gcc-3.2-base (from .../gcc-3.2-base_1%3a3.2.3-9_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
-Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package grep.
Unpacking grep (from .../grep_2.5.1.ds1-2_i386.deb) ...
Selecting previously deselected package gzip.
@@ -622,16 +603,16 @@ Selecting previously deselected package hostname.
Unpacking hostname (from .../hostname_2.13_i386.deb) ...
Selecting previously deselected package libcap1.
Unpacking libcap1 (from .../libcap1_1%3a1.10-13_i386.deb) ...
-Preparing to replace libc6 2.3.2.ds1-10 (using .../libc6_2.3.2.ds1-10_i386.deb) ...
+Preparing to replace libc6 2.3.2.ds1-11 (using .../libc6_2.3.2.ds1-11_i386.deb) ...
Unpacking replacement libc6 ...
Selecting previously deselected package libdb2.
Unpacking libdb2 (from .../libdb2_2%3a2.7.7.0-8.1_i386.deb) ...
Selecting previously deselected package libdb3.
Unpacking libdb3 (from .../libdb3_3.2.9-19_i386.deb) ...
Selecting previously deselected package libncurses5.
-Unpacking libncurses5 (from .../libncurses5_5.3.20030719-4_i386.deb) ...
+Unpacking libncurses5 (from .../libncurses5_5.4-2_i386.deb) ...
Selecting previously deselected package libnewt0.51.
-Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-19_i386.deb) ...
+Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-23_i386.deb) ...
Selecting previously deselected package libpam-modules.
Unpacking libpam-modules (from .../libpam-modules_0.76-15_i386.deb) ...
Selecting previously deselected package libpam-runtime.
@@ -641,21 +622,21 @@ Unpacking libpam0g (from .../libpam0g_0.76-15_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.7-4_i386.deb) ...
Selecting previously deselected package libstdc++5.
-Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package libgcc1.
-Unpacking libgcc1 (from .../libgcc1_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking libgcc1 (from .../libgcc1_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package login.
-dpkg: regarding .../login_1%3a4.0.3-17_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-21_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam0g (>= 0.76)
libpam0g is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../login_1%3a4.0.3-17_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-21_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam-runtime (>= 0.76-13.1)
libpam-runtime is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking login (from .../login_1%3a4.0.3-17_i386.deb) ...
+Unpacking login (from .../login_1%3a4.0.3-21_i386.deb) ...
Selecting previously deselected package makedev.
-Unpacking makedev (from .../makedev_2.3.1-64_all.deb) ...
+Unpacking makedev (from .../makedev_2.3.1-65_all.deb) ...
Preparing to replace mawk 1.3.3-11 (using .../mawk_1.3.3-11_i386.deb) ...
Unpacking replacement mawk ...
Selecting previously deselected package modutils.
@@ -663,21 +644,21 @@ Unpacking modutils (from .../modutils_2.4.26-1_i386.deb) ...
Selecting previously deselected package mount.
Unpacking mount (from .../archives/mount_2.12-6_i386.deb) ...
Selecting previously deselected package ncurses-base.
-Unpacking ncurses-base (from .../ncurses-base_5.3.20030719-4_all.deb) ...
+Unpacking ncurses-base (from .../ncurses-base_5.4-2_all.deb) ...
Selecting previously deselected package ncurses-bin.
-dpkg: regarding .../ncurses-bin_5.3.20030719-4_i386.deb containing ncurses-bin, pre-dependency problem:
- ncurses-bin pre-depends on libncurses5 (>= 5.3.20030510-1)
+dpkg: regarding .../ncurses-bin_5.4-2_i386.deb containing ncurses-bin, pre-dependency problem:
+ ncurses-bin pre-depends on libncurses5 (>= 5.4-1)
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking ncurses-bin (from .../ncurses-bin_5.3.20030719-4_i386.deb) ...
+Unpacking ncurses-bin (from .../ncurses-bin_5.4-2_i386.deb) ...
Selecting previously deselected package passwd.
-Unpacking passwd (from .../passwd_1%3a4.0.3-17_i386.deb) ...
-Preparing to replace perl-base 5.8.2-2 (using .../perl-base_5.8.2-2_i386.deb) ...
+Unpacking passwd (from .../passwd_1%3a4.0.3-21_i386.deb) ...
+Preparing to replace perl-base 5.8.3-2 (using .../perl-base_5.8.3-2_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package procps.
-Unpacking procps (from .../procps_1%3a3.1.15-1_i386.deb) ...
+Unpacking procps (from .../procps_1%3a3.2.0-1_i386.deb) ...
Selecting previously deselected package sed.
-Unpacking sed (from .../archives/sed_4.0.7-3_i386.deb) ...
+Unpacking sed (from .../archives/sed_4.0.7-4_i386.deb) ...
Selecting previously deselected package slang1.
Unpacking slang1 (from .../slang1_1.4.9-2_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
@@ -696,7 +677,7 @@ Unpacking sysvinit (from .../sysvinit_2.85-9_i386.deb) ...
Selecting previously deselected package sysv-rc.
Unpacking sysv-rc (from .../sysv-rc_2.85-9_all.deb) ...
Selecting previously deselected package tar.
-Unpacking tar (from .../tar_1.13.25-6_i386.deb) ...
+Unpacking tar (from .../tar_1.13.93-2_i386.deb) ...
Selecting previously deselected package util-linux.
dpkg: regarding .../util-linux_2.12-6_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on libncurses5 (>= 5.3.20030510-1)
@@ -711,32 +692,30 @@ dpkg: regarding .../util-linux_2.12-6_i386.deb containing util-linux, pre-depend
dpkg: warning - ignoring pre-dependency problem !
Unpacking util-linux (from .../util-linux_2.12-6_i386.deb) ...
Selecting previously deselected package whiptail.
-Unpacking whiptail (from .../whiptail_0.51.4-19_i386.deb) ...
-Selecting previously deselected package mbr.
-Unpacking mbr (from .../archives/mbr_1.1.5-1_i386.deb) ...
+Unpacking whiptail (from .../whiptail_0.51.4-23_i386.deb) ...
I: Configuring required packages...
-Setting up ncurses-base (5.3.20030719-4) ...
+Setting up ncurses-base (5.4-2) ...
Setting up sysv-rc (2.85-9) ...
Setting up libpam-runtime (0.76-15) ...
Setting up gcc-3.2-base (3.2.3-9) ...
-Setting up gcc-3.3-base (3.3.3-0pre2) ...
+Setting up gcc-3.3-base (3.3.3-2) ...
dpkg: libc6: dependency problems, but configuring anyway as you request:
libc6 depends on libdb1-compat; however:
Package libdb1-compat is not installed.
-Setting up libc6 (2.3.2.ds1-10) ...
+Setting up libc6 (2.3.2.ds1-11) ...
Current default timezone: 'UTC'.
-Local time is now: Sun Jan 18 23:35:36 UTC 2004.
-Universal Time is now: Sun Jan 18 23:35:36 UTC 2004.
+Local time is now: Sat Mar 13 02:42:30 UTC 2004.
+Universal Time is now: Sat Mar 13 02:42:30 UTC 2004.
Run 'tzconfig' if you wish to change it.
Setting up libcap1 (1.10-13) ...
Setting up slang1 (1.4.9-2) ...
-Setting up libuuid1 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libuuid1 (1.35-3) ...
Setting up libpopt0 (1.7-4) ...
@@ -744,44 +723,42 @@ Setting up libpam0g (0.76-15) ...
Setting up bsdutils (2.12-6) ...
-Setting up perl-base (5.8.2-2) ...
-Setting up mbr (1.1.5-1) ...
-
-Setting up tar (1.13.25-6) ...
+Setting up perl-base (5.8.3-2) ...
+Setting up tar (1.13.93-2) ...
Setting up slang1a-utf8 (1.4.9-2) ...
-Setting up libgcc1 (3.3.3-0pre2) ...
+Setting up libgcc1 (3.3.3-2) ...
Setting up mount (2.12-6) ...
-Setting up libncurses5 (5.3.20030719-4) ...
+Setting up libncurses5 (5.4-2) ...
-Setting up libattr1 (2.4.12-1) ...
+Setting up libattr1 (2.4.15-1) ...
-Setting up sed (4.0.7-3) ...
+Setting up sed (4.0.7-4) ...
-Setting up e2fslibs (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up e2fslibs (1.35-3) ...
-Setting up base-passwd (3.5.5) ...
+Setting up base-passwd (3.5.7) ...
-Setting up libcomerr2 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libcomerr2 (1.35-3) ...
Setting up mawk (1.3.3-11) ...
-Setting up libnewt0.51 (0.51.4-19) ...
+Setting up libnewt0.51 (0.51.4-23) ...
Setting up grep (2.5.1.ds1-2) ...
Setting up hostname (2.13) ...
-Setting up libacl1 (2.2.21-1) ...
+Setting up libacl1 (2.2.23-1) ...
-Setting up libblkid1 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libblkid1 (1.35-3) ...
-Setting up libss2 (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up libss2 (1.35-3) ...
Setting up findutils (4.1.20-3) ...
-Setting up e2fsprogs (1.34+1.35-WIP-2003.12.07-2) ...
+Setting up e2fsprogs (1.35-3) ...
Setting up liblocale-gettext-perl (1.01-17) ...
Setting up diff (2.8.1-6) ...
@@ -794,44 +771,44 @@ dpkg: util-linux: dependency problems, but configuring anyway as you request:
Package zlib1g is not installed.
Setting up util-linux (2.12-6) ...
-Setting up libstdc++5 (3.3.3-0pre2) ...
+Setting up libstdc++5 (3.3.3-2) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-english is not installed.
-Setting up debconf (1.4.7) ...
+Setting up debconf (1.4.16) ...
Setting up coreutils (5.0.91-2) ...
-Setting up debianutils (2.6.2) ...
+Setting up debianutils (2.7.2) ...
-Setting up makedev (2.3.1-64) ...
+Setting up makedev (2.3.1-65) ...
-Setting up procps (3.1.15-1) ...
+Setting up procps (3.2.0-1) ...
-Setting up ncurses-bin (5.3.20030719-4) ...
+Setting up ncurses-bin (5.4-2) ...
-Setting up whiptail (0.51.4-19) ...
+Setting up whiptail (0.51.4-23) ...
Setting up libpam-modules (0.76-15) ...
-Setting up base-files (3.0.12) ...
+Setting up base-files (3.0.13) ...
dpkg: debconf-i18n: dependency problems, but configuring anyway as you request:
debconf-i18n depends on libtext-iconv-perl; however:
Package libtext-iconv-perl is not installed.
-Setting up debconf-i18n (1.4.7) ...
+Setting up debconf-i18n (1.4.16) ...
Setting up gzip (1.3.5-7) ...
-Setting up dselect (1.10.18) ...
-Setting up bash (2.05b-12) ...
+Setting up dselect (1.10.20) ...
+Setting up bash (2.05b-14) ...
-Setting up login (4.0.3-17) ...
+Setting up login (4.0.3-21) ...
-Setting up passwd (4.0.3-17) ...
+Setting up passwd (4.0.3-21) ...
-Setting up dpkg (1.10.18) ...
+Setting up dpkg (1.10.20) ...
Setting up initscripts (2.85-9) ...
@@ -843,52 +820,62 @@ Setting up modutils (2.4.26-1) ...
I: Installing base packages...
Selecting previously deselected package adduser.
-(Reading database ... 4295 files and directories currently installed.)
+(Reading database ... 4334 files and directories currently installed.)
Unpacking adduser (from .../archives/adduser_3.51_all.deb) ...
Selecting previously deselected package apt.
-Unpacking apt (from .../archives/apt_0.5.21_i386.deb) ...
+Unpacking apt (from .../archives/apt_0.5.23_i386.deb) ...
Selecting previously deselected package apt-utils.
-Unpacking apt-utils (from .../apt-utils_0.5.21_i386.deb) ...
+Unpacking apt-utils (from .../apt-utils_0.5.23_i386.deb) ...
Selecting previously deselected package at.
Unpacking at (from .../archives/at_3.1.8-11_i386.deb) ...
Selecting previously deselected package base-config.
-Unpacking base-config (from .../base-config_2.08_all.deb) ...
+Unpacking base-config (from .../base-config_2.15_all.deb) ...
Selecting previously deselected package aptitude.
-Unpacking aptitude (from .../aptitude_0.2.13-2_i386.deb) ...
+Unpacking aptitude (from .../aptitude_0.2.14-3_i386.deb) ...
Selecting previously deselected package libsigc++-1.2-5c102.
Unpacking libsigc++-1.2-5c102 (from .../libsigc++-1.2-5c102_1.2.5-1_i386.deb) ...
Selecting previously deselected package bsdmainutils.
-Unpacking bsdmainutils (from .../bsdmainutils_6.0.9_i386.deb) ...
+Unpacking bsdmainutils (from .../bsdmainutils_6.0.11_i386.deb) ...
Selecting previously deselected package console-common.
-Unpacking console-common (from .../console-common_0.7.34_all.deb) ...
+Unpacking console-common (from .../console-common_0.7.37_all.deb) ...
Selecting previously deselected package console-tools.
-Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-45.2_i386.deb) ...
+Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-50_i386.deb) ...
Selecting previously deselected package libconsole.
-Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-45.2_i386.deb) ...
+Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-50_i386.deb) ...
Selecting previously deselected package console-data.
-Unpacking console-data (from .../console-data_2002.12.04dbs-27_all.deb) ...
+Unpacking console-data (from .../console-data_2002.12.04dbs-32_all.deb) ...
Selecting previously deselected package cpio.
Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ...
Selecting previously deselected package cron.
-Unpacking cron (from .../cron_3.0pl1-81_i386.deb) ...
+Unpacking cron (from .../cron_3.0pl1-83_i386.deb) ...
Selecting previously deselected package dhcp-client.
Unpacking dhcp-client (from .../dhcp-client_2.0pl5-16.1_i386.deb) ...
Selecting previously deselected package ed.
Unpacking ed (from .../archives/ed_0.2-20_i386.deb) ...
Selecting previously deselected package exim4.
-Unpacking exim4 (from .../archives/exim4_4.30-4_all.deb) ...
+Unpacking exim4 (from .../archives/exim4_4.30-7_all.deb) ...
Selecting previously deselected package exim4-base.
-Unpacking exim4-base (from .../exim4-base_4.30-4_i386.deb) ...
+Unpacking exim4-base (from .../exim4-base_4.30-7_i386.deb) ...
Selecting previously deselected package exim4-config.
-Unpacking exim4-config (from .../exim4-config_4.30-4_all.deb) ...
+Unpacking exim4-config (from .../exim4-config_4.30-7_all.deb) ...
Selecting previously deselected package exim4-daemon-light.
-Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.30-4_i386.deb) ...
+Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.30-7_i386.deb) ...
+Selecting previously deselected package libgnutls10.
+Unpacking libgnutls10 (from .../libgnutls10_1.0.4-3_i386.deb) ...
+Selecting previously deselected package libgcrypt7.
+Unpacking libgcrypt7 (from .../libgcrypt7_1.1.90-1.1_i386.deb) ...
+Selecting previously deselected package libgpg-error0.
+Unpacking libgpg-error0 (from .../libgpg-error0_0.6-1_i386.deb) ...
+Selecting previously deselected package libopencdk8.
+Unpacking libopencdk8 (from .../libopencdk8_0.5.3-1_i386.deb) ...
+Selecting previously deselected package libtasn1-2.
+Unpacking libtasn1-2 (from .../libtasn1-2_0.2.6-1_i386.deb) ...
Selecting previously deselected package fdutils.
-Unpacking fdutils (from .../fdutils_5.4-20030718-2_i386.deb) ...
+Unpacking fdutils (from .../fdutils_5.4-20030718-3_i386.deb) ...
Selecting previously deselected package gettext-base.
-Unpacking gettext-base (from .../gettext-base_0.13.1-2_i386.deb) ...
+Unpacking gettext-base (from .../gettext-base_0.14.1-1_i386.deb) ...
Selecting previously deselected package groff-base.
-Unpacking groff-base (from .../groff-base_1.18.1-14_i386.deb) ...
+Unpacking groff-base (from .../groff-base_1.18.1-15_i386.deb) ...
Selecting previously deselected package ifupdown.
Unpacking ifupdown (from .../ifupdown_0.6.4-4.6_i386.deb) ...
Selecting previously deselected package info.
@@ -899,28 +886,16 @@ Selecting previously deselected package libdb1-compat.
Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
Selecting previously deselected package libident.
Unpacking libident (from .../libident_0.22-2.2_i386.deb) ...
-Selecting previously deselected package libgnutls7.
-Unpacking libgnutls7 (from .../libgnutls7_0.8.12-3.1_i386.deb) ...
Selecting previously deselected package libssl0.9.7.
Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7c-5_i386.deb) ...
-Selecting previously deselected package libgcrypt1.
-Unpacking libgcrypt1 (from .../libgcrypt1_1.1.12-4_i386.deb) ...
Selecting previously deselected package liblzo1.
Unpacking liblzo1 (from .../liblzo1_1.08-1_i386.deb) ...
-Selecting previously deselected package libopencdk8.
-Unpacking libopencdk8 (from .../libopencdk8_0.5.3-1_i386.deb) ...
-Selecting previously deselected package libgcrypt7.
-Unpacking libgcrypt7 (from .../libgcrypt7_1.1.90-1.1_i386.deb) ...
-Selecting previously deselected package libgpg-error0.
-Unpacking libgpg-error0 (from .../libgpg-error0_0.6-0.1_i386.deb) ...
-Selecting previously deselected package libtasn1-0.
-Unpacking libtasn1-0 (from .../libtasn1-0_0.1.2-1_i386.deb) ...
Selecting previously deselected package zlib1g.
-Unpacking zlib1g (from .../zlib1g_1%3a1.2.1-3_i386.deb) ...
+Unpacking zlib1g (from .../zlib1g_1%3a1.2.1-4_i386.deb) ...
Selecting previously deselected package liblockfile1.
Unpacking liblockfile1 (from .../liblockfile1_1.05_i386.deb) ...
Selecting previously deselected package libpcre3.
-Unpacking libpcre3 (from .../libpcre3_4.3-4_i386.deb) ...
+Unpacking libpcre3 (from .../libpcre3_4.5-1_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-2_i386.deb) ...
Selecting previously deselected package libwrap0.
@@ -930,19 +905,17 @@ Unpacking logrotate (from .../logrotate_3.6.5-2_i386.deb) ...
Selecting previously deselected package mailx.
Unpacking mailx (from .../mailx_1%3a8.1.2-0.20031014cvs-1_i386.deb) ...
Selecting previously deselected package man-db.
-Unpacking man-db (from .../man-db_2.4.2-6_i386.deb) ...
+Unpacking man-db (from .../man-db_2.4.2-13_i386.deb) ...
Selecting previously deselected package libgdbm3.
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_i386.deb) ...
Selecting previously deselected package manpages.
-Unpacking manpages (from .../manpages_1.62-1_all.deb) ...
-Selecting previously deselected package modconf.
-Unpacking modconf (from .../modconf_0.2.45_all.deb) ...
+Unpacking manpages (from .../manpages_1.66-1_all.deb) ...
Selecting previously deselected package nano.
-Unpacking nano (from .../archives/nano_1.2.2-7_i386.deb) ...
+Unpacking nano (from .../archives/nano_1.2.3-1_i386.deb) ...
Selecting previously deselected package net-tools.
Unpacking net-tools (from .../net-tools_1.60-9_i386.deb) ...
Selecting previously deselected package netbase.
-Unpacking netbase (from .../archives/netbase_4.15_all.deb) ...
+Unpacking netbase (from .../archives/netbase_4.16_all.deb) ...
Selecting previously deselected package netkit-inetd.
Unpacking netkit-inetd (from .../netkit-inetd_0.10-9_i386.deb) ...
Selecting previously deselected package iputils-ping.
@@ -950,7 +923,7 @@ Unpacking iputils-ping (from .../iputils-ping_3%3a20020927-2_i386.deb) ...
Selecting previously deselected package nvi.
Unpacking nvi (from .../archives/nvi_1.79-21_i386.deb) ...
Selecting previously deselected package ppp.
-Unpacking ppp (from .../ppp_2.4.2+20031127-2_i386.deb) ...
+Unpacking ppp (from .../ppp_2.4.2+20040202-1_i386.deb) ...
Selecting previously deselected package pppconfig.
Unpacking pppconfig (from .../pppconfig_2.2.0_all.deb) ...
Selecting previously deselected package pppoe.
@@ -962,7 +935,7 @@ Unpacking libpcap0.7 (from .../libpcap0.7_0.7.2-5_i386.deb) ...
Selecting previously deselected package sysklogd.
Unpacking sysklogd (from .../sysklogd_1.4.1-13_i386.deb) ...
Selecting previously deselected package tasksel.
-Unpacking tasksel (from .../archives/tasksel_1.40_i386.deb) ...
+Unpacking tasksel (from .../archives/tasksel_1.45_i386.deb) ...
Selecting previously deselected package libtextwrap1.
Unpacking libtextwrap1 (from .../libtextwrap1_0.1-1_i386.deb) ...
Selecting previously deselected package tcpd.
@@ -970,9 +943,7 @@ Unpacking tcpd (from .../tcpd_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package telnet.
Unpacking telnet (from .../telnet_0.17-22_i386.deb) ...
Selecting previously deselected package wget.
-Unpacking wget (from .../archives/wget_1.9.1-3_i386.deb) ...
-Selecting previously deselected package lilo.
-Unpacking lilo (from .../lilo_1%3a22.5.8-8_i386.deb) ...
+Unpacking wget (from .../archives/wget_1.9.1-4_i386.deb) ...
Selecting previously deselected package pciutils.
Unpacking pciutils (from .../pciutils_1%3a2.1.11-7_i386.deb) ...
Selecting previously deselected package setserial.
@@ -981,26 +952,20 @@ Selecting previously deselected package syslinux.
Unpacking syslinux (from .../syslinux_2.04-1_i386.deb) ...
Selecting previously deselected package psmisc.
Unpacking psmisc (from .../psmisc_21.4-1_i386.deb) ...
-Selecting previously deselected package pcmcia-cs.
-Unpacking pcmcia-cs (from .../pcmcia-cs_3.2.5-2_i386.deb) ...
Selecting previously deselected package ipchains.
Unpacking ipchains (from .../ipchains_1.3.10-15_i386.deb) ...
Selecting previously deselected package iptables.
-Unpacking iptables (from .../iptables_1.2.9-3_i386.deb) ...
-Setting up modconf (0.2.45) ...
-
+Unpacking iptables (from .../iptables_1.2.9-5_i386.deb) ...
Setting up libdb1-compat (2.1.3-7) ...
Setting up telnet (0.17-22) ...
-Setting up gettext-base (0.13.1-2) ...
+Setting up gettext-base (0.14.1-1) ...
Setting up libgdbm3 (1.8.3-2) ...
-Setting up libgcrypt1 (1.1.12-4) ...
+Setting up libtasn1-2 (0.2.6-1) ...
-Setting up libtasn1-0 (0.1.2-1) ...
-
-Setting up libgpg-error0 (0.6-0.1) ...
+Setting up libgpg-error0 (0.6-1) ...
Setting up psmisc (21.4-1) ...
@@ -1008,29 +973,21 @@ Setting up libident (0.22-2.2) ...
Setting up libssl0.9.7 (0.9.7c-5) ...
-Setting up apt (0.5.21) ...
+Setting up apt (0.5.23) ...
-Setting up fdutils (5.4-20030718-2) ...
+Setting up fdutils (5.4-20030718-3) ...
Keeping old fdmount setuid root settings.
Please note that you can run
'/usr/sbin/fdutilsconfig' to change them.
Setting up pciutils (2.1.11-7) ...
-Setting up console-data (2002.12.04dbs-27) ...
-Looking for keymap to install:
-NONE
-
Setting up dhcp-client (2.0pl5-16.1) ...
-Setting up pcmcia-cs (3.2.5-2) ...
-ksyms: QM_MODULES: Function not implemented
-
-
-Setting up zlib1g (1.2.1-3) ...
+Setting up zlib1g (1.2.1-4) ...
Setting up adduser (3.51) ...
-Setting up manpages (1.62-1) ...
+Setting up manpages (1.66-1) ...
Setting up ed (0.2-20) ...
Setting up libtext-iconv-perl (1.2-2) ...
@@ -1049,46 +1006,44 @@ Saving state of known serial devices... /dev/ttyS0: No such device
/dev/ttyS3: No such device
backing up /var/lib/setserial/autoserial.conf done.
-Setting up wget (1.9.1-3) ...
+Setting up wget (1.9.1-4) ...
Setting up ipchains (1.3.10-15) ...
-Setting up groff-base (1.18.1-14) ...
+Setting up groff-base (1.18.1-15) ...
Setting up net-tools (1.60-9) ...
-Setting up bsdmainutils (6.0.9) ...
+Setting up bsdmainutils (6.0.11) ...
Setting up libsigc++-1.2-5c102 (1.2.5-1) ...
Setting up syslinux (2.04-1) ...
-Setting up libpcre3 (4.3-4) ...
+Setting up libpcre3 (4.5-1) ...
-Setting up aptitude (0.2.13-2) ...
+Setting up aptitude (0.2.14-3) ...
Setting up info (4.6-1) ...
Setting up iputils-ping (20020927-2) ...
-Setting up lilo (22.5.8-8) ...
-
-Setting up cron (3.0pl1-81) ...
+Setting up cron (3.0pl1-83) ...
Adding group crontab (101)...
Done.
Starting periodic command scheduler: cron
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up nano (1.2.2-7) ...
+Setting up nano (1.2.3-1) ...
Setting up netkit-inetd (0.10-9) ...
Starting internet superserver: inetd
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up libconsole (0.2.3dbs-45.2) ...
+Setting up libconsole (0.2.3dbs-50) ...
-Setting up apt-utils (0.5.21) ...
+Setting up apt-utils (0.5.23) ...
-Setting up iptables (1.2.9-3) ...
+Setting up iptables (1.2.9-5) ...
Setting up cpio (2.5-1.1) ...
@@ -1100,40 +1055,32 @@ Setting up liblockfile1 (1.05) ...
Setting up tcpd (7.6-ipv6.1-3) ...
-Setting up exim4-config (4.30-4) ...
+Setting up exim4-config (4.30-7) ...
hostname: Unknown host
Adding system-user for exim (v4)
-Setting up man-db (2.4.2-6) ...
+Setting up man-db (2.4.2-13) ...
Building database of manual pages ...
Setting up libgcrypt7 (1.1.90-1.1) ...
-Setting up console-common (0.7.34) ...
-Looking for keymap to install:
-NONE
-
Setting up ifupdown (0.6.4-4.6) ...
Setting up logrotate (3.6.5-2) ...
Setting up libopencdk8 (0.5.3-1) ...
-Setting up libgnutls7 (0.8.12-3.1) ...
-
-Setting up console-tools (0.2.3dbs-45.2) ...
-
-Setting up base-config (2.08) ...
+Setting up libgnutls10 (1.0.4-3) ...
-Setting up netbase (4.15) ...
+Setting up netbase (4.16) ...
-Setting up ppp (2.4.2+20031127-2) ...
+Setting up ppp (2.4.2+20040202-1) ...
Setting up pppoe (3.5-3) ...
Setting up pppoeconf (1.0) ...
-Setting up exim4-base (4.30-4) ...
+Setting up exim4-base (4.30-7) ...
-Setting up exim4-daemon-light (4.30-4) ...
+Setting up exim4-daemon-light (4.30-7) ...
Starting MTA:
Warning: Fake start-stop-daemon called, doing nothing
exim4.
@@ -1147,7 +1094,11 @@ Starting deferred execution scheduler: atd
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up exim4 (4.30-4) ...
+Setting up exim4 (4.30-7) ...
+Setting up console-data (2002.12.04dbs-32) ...
+Looking for keymap to install:
+NONE
+
Setting up sysklogd (1.4.1-13) ...
Stopping system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
@@ -1166,9 +1117,20 @@ Warning: Fake start-stop-daemon called, doing nothing
Setting up libtextwrap1 (0.1-1) ...
-Setting up tasksel (1.40) ...
+Setting up console-common (0.7.37) ...
+Looking for keymap to install:
+NONE
+
+Setting up tasksel (1.45) ...
+
+Setting up console-tools (0.2.3dbs-50) ...
+
+Setting up base-config (2.15) ...
I: Base system installed successfully.
+umount: /var/cache/pbuilder/build/8786/./dev/pts: not mounted
+umount: /var/cache/pbuilder/build/8786/./dev/shm: not mounted
+umount: /var/cache/pbuilder/build/8786/./proc/bus/usb: not mounted
-> debootstrap finished
-> copying local configuration
-> Installing apt-lines
@@ -1177,17 +1139,15 @@ Refreshing the base.tgz
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [2813kB]
+Get:1 http://ring.asahi-net.or.jp sid/main Packages [2936kB]
Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Get:3 http://ring.asahi-net.or.jp sid/contrib Packages [78.9kB]
+Get:3 http://ring.asahi-net.or.jp sid/contrib Packages [77.2kB]
Get:4 http://ring.asahi-net.or.jp sid/contrib Release [85B]
-Get:5 http://ring.asahi-net.or.jp sid/non-free Packages [68.3kB]
+Get:5 http://ring.asahi-net.or.jp sid/non-free Packages [67.9kB]
Get:6 http://ring.asahi-net.or.jp sid/non-free Release [86B]
-Fetched 2960kB in 3s (847kB/s)
+Fetched 3081kB in 6s (511kB/s)
Reading Package Lists...
-(Reading database ... 7302 files and directories currently installed.)
-Removing lilo ...
-Purging configuration files for lilo ...
+dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
Building Dependency Tree...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
@@ -1198,93 +1158,94 @@ The following extra packages will be installed:
binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libdb4.0
libstdc++5-3.3-dev linux-kernel-headers make patch perl perl-modules
Suggested packages:
- gnupg manpages-dev automake flex gdb gcc-3.3-doc glibc-doc libstdc++5-3.3-doc
- libterm-readline-perl-perl
+ binutils-doc cpp-doc gnupg debian-keyring gcc-3.3-doc manpages-dev autoconf
+ automake libtool flex bison gdb gcc-doc glibc-doc libstdc++5-3.3-doc
+ stl-manual perl-doc libterm-readline-perl-perl
The following NEW packages will be installed:
binutils build-essential cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3
libc6-dev libdb4.0 libstdc++5-3.3-dev linux-kernel-headers make patch perl
perl-modules
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 17.9MB of archives.
-After unpacking 62.1MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main binutils 2.14.90.0.7-3 [2468kB]
-Get:2 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.3-0pre2 [1389kB]
-Get:3 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.2-2 [26.2kB]
-Get:4 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.2-2 [2158kB]
+Need to get 18.3MB of archives.
+After unpacking 63.2MB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main binutils 2.14.90.0.7-5 [2469kB]
+Get:2 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.3-2 [1390kB]
+Get:3 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.3-2 [26.4kB]
+Get:4 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.3-2 [2166kB]
Get:5 http://ring.asahi-net.or.jp sid/main libdb4.0 4.0.14-1.3 [302kB]
-Get:6 http://ring.asahi-net.or.jp sid/main perl 5.8.2-2 [3246kB]
+Get:6 http://ring.asahi-net.or.jp sid/main perl 5.8.3-2 [3273kB]
Get:7 http://ring.asahi-net.or.jp sid/main patch 2.5.9-1 [92.3kB]
-Get:8 http://ring.asahi-net.or.jp sid/main make 3.80-4 [349kB]
-Get:9 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.10.18 [115kB]
-Get:10 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.3-0pre2 [1332kB]
-Get:11 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.2-2 [4850B]
-Get:12 http://ring.asahi-net.or.jp sid/main linux-kernel-headers 2.5.999-test7-bk-14 [1376kB]
-Get:13 http://ring.asahi-net.or.jp sid/main libc6-dev 2.3.2.ds1-10 [2515kB]
-Get:14 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.3-0pre2 [770kB]
-Get:15 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.3-0pre2 [1770kB]
-Get:16 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.2-2 [1394B]
+Get:8 http://ring.asahi-net.or.jp sid/main make 3.80-6 [423kB]
+Get:9 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.10.20 [122kB]
+Get:10 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.3-2 [1554kB]
+Get:11 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.3-2 [4834B]
+Get:12 http://ring.asahi-net.or.jp sid/main linux-kernel-headers 2.5.999-test7-bk-15 [1377kB]
+Get:13 http://ring.asahi-net.or.jp sid/main libc6-dev 2.3.2.ds1-11 [2530kB]
+Get:14 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.3-2 [771kB]
+Get:15 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.3-2 [1774kB]
+Get:16 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.3-2 [1390B]
Get:17 http://ring.asahi-net.or.jp sid/main build-essential 10 [6450B]
-Fetched 17.9MB in 24s (727kB/s)
+Fetched 18.3MB in 21s (870kB/s)
Selecting previously deselected package binutils.
-(Reading database ... 7261 files and directories currently installed.)
-Unpacking binutils (from .../binutils_2.14.90.0.7-3_i386.deb) ...
+(Reading database ... 7233 files and directories currently installed.)
+Unpacking binutils (from .../binutils_2.14.90.0.7-5_i386.deb) ...
Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.2-2_i386.deb) ...
+Unpacking cpp (from .../cpp_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package perl-modules.
-Unpacking perl-modules (from .../perl-modules_5.8.2-2_all.deb) ...
+Unpacking perl-modules (from .../perl-modules_5.8.3-2_all.deb) ...
Selecting previously deselected package libdb4.0.
Unpacking libdb4.0 (from .../libdb4.0_4.0.14-1.3_i386.deb) ...
Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.2-2_i386.deb) ...
+Unpacking perl (from .../archives/perl_5.8.3-2_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-4_i386.deb) ...
+Unpacking make (from .../archives/make_3.80-6_i386.deb) ...
Selecting previously deselected package dpkg-dev.
-Unpacking dpkg-dev (from .../dpkg-dev_1.10.18_all.deb) ...
+Unpacking dpkg-dev (from .../dpkg-dev_1.10.20_all.deb) ...
Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.2-2_i386.deb) ...
+Unpacking gcc (from .../gcc_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package linux-kernel-headers.
-Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-14_i386.deb) ...
+Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-15_i386.deb) ...
Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-10_i386.deb) ...
+Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-11_i386.deb) ...
Selecting previously deselected package libstdc++5-3.3-dev.
-Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.3-0pre2_i386.deb) ...
+Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.2-2_i386.deb) ...
+Unpacking g++ (from .../g++_4%3a3.3.3-2_i386.deb) ...
Selecting previously deselected package build-essential.
Unpacking build-essential (from .../build-essential_10_i386.deb) ...
-Setting up binutils (2.14.90.0.7-3) ...
+Setting up binutils (2.14.90.0.7-5) ...
-Setting up cpp-3.3 (3.3.3-0pre2) ...
-Setting up cpp (3.3.2-2) ...
+Setting up cpp-3.3 (3.3.3-2) ...
+Setting up cpp (3.3.3-2) ...
Setting up libdb4.0 (4.0.14-1.3) ...
Setting up patch (2.5.9-1) ...
-Setting up make (3.80-4) ...
+Setting up make (3.80-6) ...
-Setting up gcc-3.3 (3.3.3-0pre2) ...
-Setting up gcc (3.3.2-2) ...
+Setting up gcc-3.3 (3.3.3-2) ...
+Setting up gcc (3.3.3-2) ...
-Setting up linux-kernel-headers (2.5.999-test7-bk-14) ...
-Setting up libc6-dev (2.3.2.ds1-10) ...
-Setting up perl-modules (5.8.2-2) ...
-Setting up libstdc++5-3.3-dev (3.3.3-0pre2) ...
-Setting up perl (5.8.2-2) ...
+Setting up linux-kernel-headers (2.5.999-test7-bk-15) ...
+Setting up libc6-dev (2.3.2.ds1-11) ...
+Setting up perl-modules (5.8.3-2) ...
+Setting up libstdc++5-3.3-dev (3.3.3-2) ...
+Setting up perl (5.8.3-2) ...
-Setting up dpkg-dev (1.10.18) ...
-Setting up g++-3.3 (3.3.3-0pre2) ...
-Setting up g++ (3.3.2-2) ...
+Setting up dpkg-dev (1.10.20) ...
+Setting up g++-3.3 (3.3.3-2) ...
+Setting up g++ (3.3.3-2) ...
Setting up build-essential (10) ...
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//15917 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//8786 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sarge.log b/testsuite/normal/pbuilder-execute-sarge.log
index 4b48860..98aa1f0 100644
--- a/testsuite/normal/pbuilder-execute-sarge.log
+++ b/testsuite/normal/pbuilder-execute-sarge.log
@@ -10,4 +10,4 @@ Building the build Environment
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//4141 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//341 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sid.log b/testsuite/normal/pbuilder-execute-sid.log
index d14b89a..065fe51 100644
--- a/testsuite/normal/pbuilder-execute-sid.log
+++ b/testsuite/normal/pbuilder-execute-sid.log
@@ -10,4 +10,4 @@ Building the build Environment
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//10206 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//4523 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sarge.log b/testsuite/normal/pdebuild-internal-sarge.log
index 49b5cd0..eb9212a 100644
--- a/testsuite/normal/pdebuild-internal-sarge.log
+++ b/testsuite/normal/pdebuild-internal-sarge.log
@@ -15,22 +15,22 @@ The following extra packages will be installed:
Suggested packages:
pbuilder-uml
Recommended packages:
- sudo
+ fakeroot sudo devscripts
The following NEW packages will be installed:
debootstrap pbuilder
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 117kB of archives.
-After unpacking 530kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main debootstrap 0.2.23 [59.6kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main pbuilder 0.98 [57.3kB]
-Fetched 117kB in 0s (875kB/s)
+Need to get 119kB of archives.
+After unpacking 547kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main debootstrap 0.2.28 [59.9kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main pbuilder 0.100 [59.1kB]
+Fetched 119kB in 1s (101kB/s)
Selecting previously deselected package debootstrap.
-(Reading database ... 10630 files and directories currently installed.)
-Unpacking debootstrap (from .../debootstrap_0.2.23_i386.deb) ...
+(Reading database ... 10607 files and directories currently installed.)
+Unpacking debootstrap (from .../debootstrap_0.2.28_i386.deb) ...
Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../archives/pbuilder_0.98_all.deb) ...
-Setting up debootstrap (0.2.23) ...
-Setting up pbuilder (0.98) ...
+Unpacking pbuilder (from .../pbuilder_0.100_all.deb) ...
+Setting up debootstrap (0.2.28) ...
+Setting up pbuilder (0.100) ...
Setting DEBBUILDOPTS=
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
-> Considering debhelper (>> 3.0.0)
@@ -44,63 +44,63 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2078kB of archives.
-After unpacking 6998kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.06-2 [212kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.06-2 [25.5kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.3.22 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.12.1-8 [1280kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.1.83 [343kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.8-1 [9656B]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.8-1 [11.3kB]
-Fetched 2078kB in 3s (614kB/s)
+Need to get 2371kB of archives.
+After unpacking 7654kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.11 [30.7kB]
+Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.8 [64.8kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.4 [350kB]
+Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.10-1 [10.3kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.10-1 [12.2kB]
+Fetched 2371kB in 3s (717kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10697 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.06-2_i386.deb) ...
+(Reading database ... 10676 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.06-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.3.22_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.11_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.12.1-8_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.8_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.83_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.8-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.8-1_i386.deb) ...
-Setting up libmagic1 (4.06-2) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.06-2) ...
-Setting up debconf-utils (1.3.22) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.11) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.12.1-8) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.83) ...
-Setting up libdshconfig1 (0.20.8-1) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.8) ...
+Setting up debhelper (4.2.4) ...
+Setting up libdshconfig1 (0.20.10-1) ...
-Setting up libdshconfig1-dev (0.20.8-1) ...
+Setting up libdshconfig1-dev (0.20.10-1) ...
-> Finished parsing the build-deps
dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
dpkg-buildpackage: host architecture is i386
debian/rules clean
@@ -108,22 +108,22 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+ dpkg-source -b dsh-0.25.1
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -136,7 +136,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -188,9 +188,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -198,8 +198,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -293,18 +296,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -326,26 +329,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -355,7 +358,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -390,11 +395,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-1: 1
2: 2
+1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:45:35 UTC 2004
+Sat Mar 13 02:53:58 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -464,18 +469,23 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:45:41 UTC 2004
+Sat Mar 13 02:54:04 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+c: c
+dsh: Process terminated (before write).
+b: b
+a: a
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
touch build-stamp
debian/rules binary
dh_testdir
@@ -483,60 +493,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -553,7 +563,7 @@ dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
@@ -561,4 +571,4 @@ dpkg-buildpackage: full upload (original source is included)
-> unmounting proc filesystem
-> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/31408 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/27282 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sid.log b/testsuite/normal/pdebuild-internal-sid.log
index 79b38c8..ee0b4ea 100644
--- a/testsuite/normal/pdebuild-internal-sid.log
+++ b/testsuite/normal/pdebuild-internal-sid.log
@@ -15,22 +15,22 @@ The following extra packages will be installed:
Suggested packages:
pbuilder-uml
Recommended packages:
- sudo
+ fakeroot sudo devscripts
The following NEW packages will be installed:
debootstrap pbuilder
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 117kB of archives.
-After unpacking 530kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main debootstrap 0.2.23 [59.6kB]
-Get:2 http://ring.asahi-net.or.jp sid/main pbuilder 0.98 [57.3kB]
-Fetched 117kB in 1s (116kB/s)
+Need to get 122kB of archives.
+After unpacking 623kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main debootstrap 0.2.29 [62.9kB]
+Get:2 http://ring.asahi-net.or.jp sid/main pbuilder 0.100 [59.1kB]
+Fetched 122kB in 1s (120kB/s)
Selecting previously deselected package debootstrap.
-(Reading database ... 10682 files and directories currently installed.)
-Unpacking debootstrap (from .../debootstrap_0.2.23_i386.deb) ...
+(Reading database ... 10663 files and directories currently installed.)
+Unpacking debootstrap (from .../debootstrap_0.2.29_i386.deb) ...
Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../archives/pbuilder_0.98_all.deb) ...
-Setting up debootstrap (0.2.23) ...
-Setting up pbuilder (0.98) ...
+Unpacking pbuilder (from .../pbuilder_0.100_all.deb) ...
+Setting up debootstrap (0.2.29) ...
+Setting up pbuilder (0.100) ...
Setting DEBBUILDOPTS=
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
-> Considering debhelper (>> 3.0.0)
@@ -44,63 +44,63 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2317kB of archives.
-After unpacking 7768kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-1 [206kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-1 [25.4kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.7 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.13.1-2 [1519kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.1.87 [349kB]
+Need to get 2373kB of archives.
+After unpacking 7658kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.16 [32.5kB]
+Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.9 [65.8kB]
+Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.2.4 [350kB]
Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.10-1 [10.3kB]
Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.10-1 [12.2kB]
-Fetched 2317kB in 3s (582kB/s)
+Fetched 2373kB in 1s (1481kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10749 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.07-1_i386.deb) ...
+(Reading database ... 10735 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-1_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.7_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.16_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.13.1-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.9_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.87_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
-Setting up libmagic1 (4.07-1) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.07-1) ...
-Setting up debconf-utils (1.4.7) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.16) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.13.1-2) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.87) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.9) ...
+Setting up debhelper (4.2.4) ...
Setting up libdshconfig1 (0.20.10-1) ...
Setting up libdshconfig1-dev (0.20.10-1) ...
-> Finished parsing the build-deps
dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
dpkg-buildpackage: host architecture is i386
debian/rules clean
@@ -108,22 +108,22 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+ dpkg-source -b dsh-0.25.1
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -136,7 +136,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -188,9 +188,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -198,8 +198,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -293,18 +296,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -326,26 +329,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -355,7 +358,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -394,7 +399,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:39:48 UTC 2004
+Sat Mar 13 02:47:13 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -464,18 +469,22 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:39:54 UTC 2004
+Sat Mar 13 02:47:19 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+c: c
+b: b
+a: a
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
touch build-stamp
debian/rules binary
dh_testdir
@@ -483,60 +492,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -553,7 +562,7 @@ dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
@@ -561,4 +570,4 @@ dpkg-buildpackage: full upload (original source is included)
-> unmounting proc filesystem
-> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/5094 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/31423 and its subdirectories
diff --git a/testsuite/normal/pdebuild-normal-sarge.log b/testsuite/normal/pdebuild-normal-sarge.log
index 9e9957d..3c72120 100644
--- a/testsuite/normal/pdebuild-normal-sarge.log
+++ b/testsuite/normal/pdebuild-normal-sarge.log
@@ -1,27 +1,27 @@
dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+ dpkg-source -b dsh-0.25.1
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
dpkg-genchanges -S
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
@@ -30,8 +30,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Mon Jan 19 08:44:13 JST 2004
-pbuilder-time-stamp: 1074469453
+Current time: Sat Mar 13 11:52:12 JST 2004
+pbuilder-time-stamp: 1079146332
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -52,88 +52,88 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2078kB of archives.
-After unpacking 6998kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.06-2 [212kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.06-2 [25.5kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.3.22 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.12.1-8 [1280kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.1.83 [343kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.8-1 [9656B]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.8-1 [11.3kB]
-Fetched 2078kB in 2s (709kB/s)
+Need to get 2371kB of archives.
+After unpacking 7654kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.11 [30.7kB]
+Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.8 [64.8kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.4 [350kB]
+Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.10-1 [10.3kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.10-1 [12.2kB]
+Fetched 2371kB in 3s (664kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10630 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.06-2_i386.deb) ...
+(Reading database ... 10607 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.06-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.3.22_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.11_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.12.1-8_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.8_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.83_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.8-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.8-1_i386.deb) ...
-Setting up libmagic1 (4.06-2) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.06-2) ...
-Setting up debconf-utils (1.3.22) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.11) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.12.1-8) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.83) ...
-Setting up libdshconfig1 (0.20.8-1) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.8) ...
+Setting up debhelper (4.2.4) ...
+Setting up libdshconfig1 (0.20.10-1) ...
-Setting up libdshconfig1-dev (0.20.8-1) ...
+Setting up libdshconfig1-dev (0.20.10-1) ...
-> Finished parsing the build-deps
Reading Package Lists...
Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 53.1kB of archives.
-After unpacking 197kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.8.3 [53.1kB]
-Fetched 53.1kB in 0s (1101kB/s)
+Need to get 53.9kB of archives.
+After unpacking 193kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.8.5 [53.9kB]
+Fetched 53.9kB in 0s (109kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11134 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.8.3_i386.deb) ...
-Setting up fakeroot (0.8.3) ...
+(Reading database ... 11131 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_0.8.5_i386.deb) ...
+Setting up fakeroot (0.8.5) ...
Copying source file
- -> copying [../dsh_0.25.0-1.dsc]
- -> copying [../dsh_0.25.0.orig.tar.gz]
- -> copying [../dsh_0.25.0-1.diff.gz]
+ -> copying [../dsh_0.25.1-1.dsc]
+ -> copying [../dsh_0.25.1.orig.tar.gz]
+ -> copying [../dsh_0.25.1-1.diff.gz]
Extracting source
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.0
+dpkg-source: extracting dsh in dsh-0.25.1
-> Building the package
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source package is dsh
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
@@ -148,25 +148,25 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
+ dpkg-source -b dsh-0.25.1
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -179,7 +179,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -231,9 +231,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -241,8 +241,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -336,18 +339,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -369,26 +372,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -398,7 +401,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -433,11 +438,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-1: 1
2: 2
+1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:44:46 UTC 2004
+Sat Mar 13 02:52:59 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -507,18 +512,22 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:44:52 UTC 2004
+Sat Mar 13 02:53:05 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+b: b
+c: c
+a: a
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -526,60 +535,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-cp /tmp/buildd/dsh-0.25.0/debian/machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.0/dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.0/debian/dsh.updatelist /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+cp /tmp/buildd/dsh-0.25.1/debian/machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /tmp/buildd/dsh-0.25.1/dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /tmp/buildd/dsh-0.25.1/debian/dsh.updatelist /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -604,7 +613,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -615,8 +624,8 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-Current time: Mon Jan 19 08:44:54 JST 2004
-pbuilder-time-stamp: 1074469494
-/usr/lib/pbuilder/pbuilder-buildpackage: line 144: 26481 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Sat Mar 13 11:53:08 JST 2004
+pbuilder-time-stamp: 1079146388
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/26218 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/21275 and its subdirectories
+/usr/lib/pbuilder/pbuilder-buildpackage: line 1: 21537 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
diff --git a/testsuite/normal/pdebuild-normal-sid.log b/testsuite/normal/pdebuild-normal-sid.log
index d0e958e..0fce6f4 100644
--- a/testsuite/normal/pdebuild-normal-sid.log
+++ b/testsuite/normal/pdebuild-normal-sid.log
@@ -1,27 +1,27 @@
dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.0'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+ dpkg-source -b dsh-0.25.1
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
dpkg-genchanges -S
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
@@ -30,8 +30,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Mon Jan 19 08:38:22 JST 2004
-pbuilder-time-stamp: 1074469102
+Current time: Sat Mar 13 11:45:26 JST 2004
+pbuilder-time-stamp: 1079145926
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -52,57 +52,57 @@ The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
Suggested packages:
- cvs
+ dh-make cvs
The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2317kB of archives.
-After unpacking 7768kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-1 [206kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-1 [25.4kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.7 [28.6kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.1-2 [83.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.13.1-2 [1519kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.27.2+20031023 [18.4kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.7 [65.4kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.1.87 [349kB]
+Need to get 2373kB of archives.
+After unpacking 7658kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.07-2 [213kB]
+Get:2 http://ring.asahi-net.or.jp sid/main file 4.07-2 [25.6kB]
+Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.16 [32.5kB]
+Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
+Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-1 [1552kB]
+Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040211 [22.8kB]
+Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.9 [65.8kB]
+Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.2.4 [350kB]
Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.10-1 [10.3kB]
Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.10-1 [12.2kB]
-Fetched 2317kB in 2s (1013kB/s)
+Fetched 2373kB in 3s (633kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 10682 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.07-1_i386.deb) ...
+(Reading database ... 10663 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-1_i386.deb) ...
+Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.7_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.16_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.13.1-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.1-1_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.30+20040211_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.7_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.9_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.1.87_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.4_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.10-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.10-1_i386.deb) ...
-Setting up libmagic1 (4.07-1) ...
+Setting up libmagic1 (4.07-2) ...
-Setting up file (4.07-1) ...
-Setting up debconf-utils (1.4.7) ...
+Setting up file (4.07-2) ...
+Setting up debconf-utils (1.4.16) ...
-Setting up html2text (1.3.1-2) ...
+Setting up html2text (1.3.2a-1) ...
-Setting up gettext (0.13.1-2) ...
+Setting up gettext (0.14.1-1) ...
-Setting up intltool-debian (0.27.2+20031023) ...
-Setting up po-debconf (0.8.7) ...
-Setting up debhelper (4.1.87) ...
+Setting up intltool-debian (0.30+20040211) ...
+Setting up po-debconf (0.8.9) ...
+Setting up debhelper (4.2.4) ...
Setting up libdshconfig1 (0.20.10-1) ...
Setting up libdshconfig1-dev (0.20.10-1) ...
@@ -112,28 +112,28 @@ Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 53.1kB of archives.
-After unpacking 197kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.8.3 [53.1kB]
-Fetched 53.1kB in 0s (1164kB/s)
+Need to get 53.9kB of archives.
+After unpacking 193kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.8.5 [53.9kB]
+Fetched 53.9kB in 0s (760kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11204 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.8.3_i386.deb) ...
-Setting up fakeroot (0.8.3) ...
+(Reading database ... 11188 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_0.8.5_i386.deb) ...
+Setting up fakeroot (0.8.5) ...
Copying source file
- -> copying [../dsh_0.25.0-1.dsc]
- -> copying [../dsh_0.25.0.orig.tar.gz]
- -> copying [../dsh_0.25.0-1.diff.gz]
+ -> copying [../dsh_0.25.1-1.dsc]
+ -> copying [../dsh_0.25.1.orig.tar.gz]
+ -> copying [../dsh_0.25.1-1.diff.gz]
Extracting source
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.0
+dpkg-source: extracting dsh in dsh-0.25.1
-> Building the package
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source package is dsh
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.0-1
+dpkg-buildpackage: source version is 0.25.1-1
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
@@ -148,25 +148,25 @@ dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
make: [clean] Error 2 (ignored)
dh_clean
- dpkg-source -b dsh-0.25.0
+ dpkg-source -b dsh-0.25.1
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+dpkg-source: building dsh using existing dsh_0.25.1.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.1-1.diff.gz
dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.0-1.dsc
+dpkg-source: building dsh in dsh_0.25.1-1.dsc
debian/rules build
dh_testdir
INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
@@ -179,7 +179,7 @@ checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
-checking for C compiler default output... a.out
+checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
@@ -231,9 +231,9 @@ checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
+checking for fort77... no
checking for fl32... no
checking for af77... no
-checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
@@ -241,8 +241,11 @@ checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
checking for lf95... no
-checking for g95... no
+checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
@@ -336,18 +339,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
-c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
@@ -369,26 +372,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -398,7 +401,9 @@ test to check that unknown parameter checking is right.
./dsh: unrecognized option `--unknown-parameter'
./dsh: invalid option -- u
PASS: tests/param-unknown.sh
-dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+test1
+test2
+dsh: Process terminated (before write).
PASS: tests/param-i.sh
Check that cn4 option is working.
PASS: tests/param-cn4.sh
@@ -437,7 +442,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jan 18 23:39:00 UTC 2004
+Sat Mar 13 02:46:15 UTC 2004
1: Using sleep as the remote shell
1: Show machine names on output
1: Adding machine 5,4,3,2,1 to list
@@ -507,18 +512,23 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jan 18 23:39:06 UTC 2004
+Sat Mar 13 02:46:21 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
+c: c
+dsh: Process terminated (before write).
+b: b
+a: a
+PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
===================
-All 14 tests passed
+All 15 tests passed
===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -526,60 +536,60 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.0/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.1/debian/dsh
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.1'
Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/m4'
Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh
- /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.1'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.1'
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.1/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
- /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
-/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
-mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
- /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
-cp /tmp/buildd/dsh-0.25.0/debian/machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.0/dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.0/debian/dsh.updatelist /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+mkdir -p -- /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.1/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.1'
+cp /tmp/buildd/dsh-0.25.1/debian/machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/machines.list
+cp /tmp/buildd/dsh-0.25.1/dsh.conf /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /tmp/buildd/dsh-0.25.1/debian/dsh/etc/dsh/group/all
+install -d /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster
+install -m 755 /tmp/buildd/dsh-0.25.1/debian/dsh.updatelist /tmp/buildd/dsh-0.25.1/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -604,7 +614,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.1-1_i386.deb'.
dpkg-genchanges
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -614,9 +624,9 @@ dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 126: 32561 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Mon Jan 19 08:39:08 JST 2004
-pbuilder-time-stamp: 1074469148
+/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 26126 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Sat Mar 13 11:46:23 JST 2004
+pbuilder-time-stamp: 1079145983
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/32298 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/25862 and its subdirectories
diff --git a/testsuite/normal/vmstat b/testsuite/normal/vmstat
index 179dfeb..496f813 100644
--- a/testsuite/normal/vmstat
+++ b/testsuite/normal/vmstat
@@ -1,735 +1,816 @@
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
- 0 2 4 46504 18580 269892 0 0 86 68 1041 393 6 1 89 4
- 0 0 4 44272 18640 270396 0 0 252 16 1485 67203 43 17 21 20
- 0 0 4 42544 18652 272084 0 0 0 52 3007 2664 4 5 91 0
- 1 0 4 37232 18656 273984 0 0 20 0 1195 1137 54 5 38 3
- 1 0 4 31920 18664 279256 0 0 0 0 1002 117 97 3 0 0
- 2 1 4 33520 18668 281040 0 0 332 0 1215 1043 92 7 0 1
- 2 0 4 29552 18684 282220 0 0 1136 10700 1280 1913 81 19 0 0
- 1 0 4 29488 18692 282220 0 0 0 672 1137 778 77 23 0 0
- 2 0 4 29488 18692 282220 0 0 0 0 1246 917 83 17 0 0
- 1 0 4 29488 18692 282220 0 0 0 0 1059 862 87 13 0 0
- 1 0 4 29424 18692 282264 0 0 44 0 1012 499 83 17 0 0
- 1 0 4 29424 18692 282264 0 0 0 0 1002 439 86 14 0 0
- 1 0 4 29552 18704 282264 0 0 0 36 1124 763 81 19 0 0
- 2 0 4 29296 18704 282352 0 0 52 0 1180 1007 84 16 0 0
- 1 0 4 27664 18712 282588 0 0 140 0 1107 1096 92 8 0 0
- 1 0 4 27280 18716 282672 0 0 0 0 1110 741 84 16 0 0
- 1 0 4 27088 18716 282688 0 0 0 0 1065 651 84 16 0 0
- 1 0 4 27088 18724 282756 0 0 0 364 1299 1150 84 16 0 0
- 0 0 4 26864 18736 282800 0 0 12 0 1223 3898 83 13 4 0
- 0 0 4 25904 18752 283592 0 0 40 0 1954 2038 35 5 56 4
- 0 0 4 25456 18756 284016 0 0 0 0 1569 1160 10 5 85 0
- 0 0 4 24752 18760 284632 0 0 40 0 1715 1504 30 6 59 5
- 0 1 4 24304 18764 285048 0 0 0 220 1700 1423 20 8 73 0
- 1 0 4 24048 18784 285308 0 0 12 2324 1585 1658 26 13 57 4
- 0 0 4 23152 18792 286128 0 0 0 0 2148 2018 33 11 56 0
- 0 0 4 22256 18800 286684 0 0 224 0 1544 2244 56 6 33 5
- 0 0 4 21808 18800 287088 0 0 8 0 1558 1572 28 1 71 0
- 0 0 4 21680 18808 287224 0 0 0 96 1255 794 6 2 92 0
- 0 0 4 21168 18820 287700 0 0 0 2276 1651 976 9 9 78 4
- 0 0 4 20720 18824 288140 0 0 0 0 1578 717 0 2 98 0
- 0 0 4 19664 18824 289240 0 0 0 0 2319 1750 0 4 96 0
- 0 0 4 18768 18828 290152 0 0 0 0 2193 1511 7 9 84 0
- 1 0 4 18448 18852 290500 0 0 0 208 1561 903 33 15 52 0
- 0 0 4 17040 18864 291776 0 0 4 0 2624 1980 5 9 85 1
- 2 0 4 16432 18884 292436 0 0 0 4224 1941 1252 15 11 63 11
- 0 0 4 15984 18888 292828 0 0 0 0 1551 801 10 8 82 0
- 0 0 4 15664 18888 292964 0 0 0 0 1188 681 3 2 95 0
- 0 0 4 15088 18904 293612 0 0 0 36 1870 1567 16 12 72 0
- 0 0 4 14768 18908 293856 0 0 0 0 1333 448 1 2 97 0
- 0 0 4 14832 18916 293948 0 0 0 2152 1171 344 4 3 93 0
- 0 0 4 14512 18928 294224 0 0 4 0 1388 590 4 5 90 1
- 0 0 4 14512 18928 294224 0 0 0 0 1010 134 0 0 100 0
- 2 0 4 14320 18944 294456 0 0 0 24 1347 744 15 8 77 0
- 0 0 4 13296 18952 295368 0 0 0 0 2192 1449 5 7 88 0
- 2 0 4 12912 18968 295796 0 0 0 1612 1671 979 25 15 60 0
- 0 0 4 12528 18980 296108 0 0 4 0 1449 694 15 9 75 1
- 1 0 4 12400 18984 296340 0 0 4 0 1365 1125 22 13 65 0
- 0 0 4 12272 18996 296384 0 0 4 24 1103 392 22 8 70 0
- 0 0 4 11824 19000 296832 0 0 0 0 1578 732 0 2 98 0
- 0 0 4 11504 19008 297120 0 0 0 1692 1392 559 1 1 96 2
- 0 0 4 10288 19008 298292 0 0 0 0 2448 1823 0 4 96 0
- 0 0 4 9776 19008 298832 0 0 0 0 1681 880 0 2 98 0
- 0 0 4 9344 19016 299276 0 0 0 36 1533 776 1 1 98 0
- 0 0 4 8192 19016 300384 0 0 0 0 2350 1754 0 4 96 0
- 0 0 4 7872 19024 300688 0 0 0 0 1393 549 0 1 99 0
- 2 0 4 7408 19036 301208 0 0 0 3596 1719 1318 26 12 57 5
- 1 0 4 7024 19040 301532 0 0 0 0 1462 792 18 10 72 0
- 0 0 4 6704 19056 301832 0 0 0 24 1416 763 20 10 70 0
- 0 0 4 6128 19064 302364 0 0 0 0 1698 885 8 5 87 0
- 1 0 4 5872 19068 302656 0 0 0 0 1410 801 33 12 55 0
- 0 0 4 5808 19076 302692 0 0 0 2040 1109 376 19 8 68 5
- 0 0 4 5424 19080 303012 0 0 0 0 1453 682 17 11 73 0
- 0 0 4 5360 19092 303068 0 0 0 232 1162 353 18 7 75 0
- 1 0 4 5040 19108 303420 0 0 0 0 1525 861 27 15 58 0
- 0 0 4 4784 19116 303620 0 0 0 0 1307 669 33 15 52 0
- 0 0 4 4400 19132 304000 0 0 4 1080 1529 831 21 8 70 1
- 0 0 4 4208 19132 304160 0 0 0 0 1215 312 0 2 98 0
- 0 0 4 3376 19140 304972 0 0 0 48 2009 1305 0 2 98 0
- 0 0 4 3072 19140 305132 0 0 0 0 1221 656 4 2 94 0
- 1 0 4 3696 18676 305116 0 0 0 0 2070 1443 27 15 58 0
- 1 0 4 3632 18684 305164 0 0 0 2328 1141 499 36 15 46 4
- 0 0 4 3056 18692 305640 0 0 0 0 1684 1000 35 15 50 0
- 0 0 4 4336 18060 305060 0 0 0 36 1340 631 21 8 71 0
- 0 0 4 4336 18060 305060 0 0 0 0 1004 130 0 0 100 0
- 0 0 4 3824 18064 305572 0 0 0 0 1659 1034 22 9 69 0
- 0 0 4 3568 18076 305808 0 0 0 1552 1335 578 11 5 83 1
- 0 0 4 3184 18084 306204 0 0 0 0 1558 876 33 11 56 0
- 0 0 4 3056 18092 306296 0 0 0 36 1125 262 0 1 98 1
- 0 0 4 4208 17676 305560 0 0 0 0 1348 474 1 1 98 0
- 0 0 4 3632 17684 306232 0 0 0 0 1913 1278 34 14 52 0
- 0 0 4 2992 17692 306804 0 0 0 0 1759 1012 21 12 67 0
- 1 0 4 4144 17472 305968 0 0 0 2060 1493 746 32 14 52 2
- 0 0 4 3376 17488 306668 0 0 0 24 1921 1305 23 11 66 0
- 0 0 4 3376 17492 306700 0 0 0 0 1057 242 13 3 84 0
- 1 0 4 10472 15796 301416 0 0 216 1732 1616 984 50 16 24 10
- 1 0 4 9768 15800 302208 0 0 0 0 2147 1318 4 5 91 0
- 0 0 4 9512 15804 302364 0 0 0 0 1224 356 10 4 86 0
- 1 0 4 9384 15820 302580 0 0 0 356 1356 1330 41 12 47 0
- 0 0 4 9064 15824 302832 0 0 0 0 1367 1080 34 13 53 0
- 1 0 4 8808 15828 303072 0 0 0 0 1350 1084 43 13 44 0
- 1 0 4 8232 15844 303656 0 0 0 1712 1758 1939 33 12 55 0
- 0 0 4 7976 15852 303860 0 0 0 0 1297 1411 48 12 39 0
- 1 0 4 7400 15868 304472 0 0 0 24 1801 2369 50 18 32 0
- 0 0 4 7208 15868 304472 0 0 0 0 1030 1141 16 3 81 0
- 1 0 4 7144 15880 304684 0 0 0 0 1352 1386 46 14 40 0
- 0 0 4 6952 15892 304848 0 0 0 1688 1259 515 6 3 89 2
- 2 0 4 6328 15896 305500 0 0 0 0 1874 1169 32 13 55 0
- 0 0 4 6328 15904 305500 0 0 0 248 1069 173 13 4 83 0
- 2 0 4 3208 16180 307464 0 0 8 4 1110 10578 44 37 17 2
- 0 4 12 1516 15248 310140 0 12 0 6608 1654 8307 27 28 0 45
- 0 7 468 1720 15324 309512 0 0 0 5560 1703 3624 14 12 0 74
- 0 5 1368 1572 15152 308908 0 0 0 4872 1594 2596 14 15 0 72
- 0 7 2000 2552 14904 307804 0 424 0 4096 1740 3122 16 9 0 75
- 0 3 2144 2808 14868 308448 0 208 16 26656 3380 5508 14 13 0 73
- 1 0 2144 2504 14972 308908 0 0 460 2784 1866 1037 7 6 0 88
- 2 0 2144 2624 15752 304796 0 0 2132 1864 1394 2359 15 26 0 59
- 1 1 2144 13756 16020 292996 0 0 276 5008 1188 3705 48 17 0 35
- 0 1 2144 3324 14404 303756 0 0 44 14916 1135 8653 34 38 0 28
- 2 0 2144 9308 14692 299316 0 0 956 5524 1249 2320 31 20 0 48
- 0 1 2144 5852 14952 301180 0 0 52 4072 1154 3267 54 21 0 25
- 2 0 2144 5724 14948 301244 0 0 0 8964 1178 6880 54 18 0 28
- 0 1 2144 4956 14808 302024 0 0 16 9236 1255 4708 38 24 0 39
- 2 0 2144 3228 13928 304388 0 0 0 7112 1236 7149 35 29 0 37
- 0 2 2144 3292 12760 305244 0 0 0 15820 1347 4814 24 31 0 45
- 0 1 2144 13708 13304 295040 0 0 0 10724 1385 4562 25 26 0 50
- 1 0 2144 9932 13924 297784 0 0 96 10060 1306 5089 23 26 0 51
- 0 1 2144 10068 14636 298356 0 0 176 9880 1412 4050 25 23 0 52
- 2 0 2144 9364 15356 298320 0 0 16 4732 1428 2045 21 21 0 58
- 2 0 2144 5396 15844 298424 0 0 220 2660 1294 1384 46 12 0 43
- 0 2 2144 8020 16100 298648 0 0 440 152 1120 965 41 2 0 57
- 2 0 2144 7364 16188 298824 0 0 180 324 1062 734 78 2 0 20
- 3 0 2144 7164 16188 298824 0 0 0 0 1032 2479 45 55 0 0
- 0 1 2144 7100 16672 298824 0 0 212 3444 1322 2056 30 25 0 45
- 0 1 2144 6844 16748 298956 0 0 72 456 1068 516 89 4 0 7
- 0 0 2144 6588 16964 298856 0 0 72 2184 1228 856 6 7 63 24
- 0 0 2144 6588 16964 298856 0 0 0 0 1053 383 2 0 98 0
- 0 0 2144 6604 16964 298856 0 0 0 0 1050 388 2 1 97 0
- 0 1 2144 2932 17284 300932 0 0 736 2248 1212 2285 20 19 34 26
- 1 0 2144 3368 17048 297728 0 0 1684 9172 1289 4371 29 20 0 51
- 2 0 2144 3304 13960 303280 0 0 1748 8440 1326 4162 28 25 0 47
- 0 1 2144 3752 12440 304304 0 0 2404 9076 1357 5150 20 22 0 58
- 1 1 2144 2984 12700 304876 0 0 2952 8992 1304 5695 23 20 0 57
- 0 1 2144 3752 12772 304004 0 0 432 10500 1352 5294 22 30 0 48
- 0 1 2144 3176 13176 303872 0 0 112 9124 1334 4190 24 27 0 49
- 2 0 2144 3304 12892 300664 0 0 80 11504 1305 5632 35 25 0 40
- 0 1 2144 6376 13412 302024 0 0 452 5920 1303 2492 38 22 0 41
- 0 1 2144 7784 13760 300476 0 0 4 2828 1221 1890 60 9 0 31
- 1 0 2144 4648 14116 300472 0 0 0 2784 1246 1269 59 15 0 26
- 0 2 2144 4704 14240 299336 0 0 124 3224 1429 1592 44 16 0 41
- 1 0 2144 7584 14548 299316 0 0 48 2480 1347 1095 39 10 0 51
- 2 0 2144 7456 14772 299464 0 0 20 1592 1108 836 66 16 0 18
- 3 0 2144 3520 15092 298232 0 0 44 2812 1198 1423 47 20 0 34
- 2 0 2144 3776 15268 298360 0 0 12 1012 1113 1603 56 33 1 10
- 1 0 2144 3584 15320 298460 0 0 72 192 1082 1304 41 48 0 11
- 1 0 2144 3392 15352 298572 0 0 80 256 1085 1348 44 46 0 11
- 2 0 2144 3968 15360 297980 0 0 248 0 1084 1273 36 38 0 25
- 3 0 2144 3984 15532 298096 0 0 160 1296 1176 1315 50 33 0 17
- 0 1 2144 7632 15812 298516 0 0 8 2656 1144 870 66 12 0 22
- 2 0 2144 3472 16124 297892 0 0 0 2740 1169 1273 56 19 0 25
- 0 1 2144 8944 16424 296672 0 0 0 2872 1204 1724 49 24 0 26
- 0 0 2144 9096 16552 297748 0 0 996 4 1686 1170 6 10 48 36
- 0 0 2144 8520 16552 298284 0 0 0 0 1697 1180 3 2 95 0
- 0 0 2144 7320 16552 299544 0 0 0 0 2623 2163 3 6 91 0
- 0 1 2144 16280 15796 291224 0 0 12 11284 1969 6927 40 15 25 20
- 0 1 2144 7464 15848 300224 0 0 4 8868 1125 315 66 9 0 25
- 1 0 2144 8488 15932 298288 0 0 4 6804 1243 621 58 9 0 33
- 0 0 2144 7656 15940 298848 0 0 4 0 1750 1154 37 3 59 1
- 0 0 2144 6248 15940 300260 0 0 0 0 2792 2320 22 6 72 0
- 0 0 2144 5224 15952 301292 0 0 0 32 2332 1928 4 4 92 0
- 0 0 2144 3624 15956 302916 0 0 0 0 3075 2708 5 6 89 0
- 0 0 2144 3960 15896 302580 0 0 0 5424 2291 1867 3 5 83 9
- 0 0 2144 3704 15896 302856 0 0 0 0 1357 623 1 1 98 0
- 0 0 2144 2888 15904 303660 0 0 0 0 2026 1587 4 2 94 0
- 0 0 2144 3016 15868 303432 0 0 16 80 1606 1118 2 5 88 5
- 0 0 2144 3656 15776 302864 0 0 0 0 1956 1365 3 3 94 0
- 0 0 2144 3400 15784 303252 0 0 0 2820 1552 986 2 3 92 3
- 0 0 2144 3096 15784 303568 0 0 0 0 1436 829 1 1 98 0
- 0 0 2144 4120 15612 302704 0 0 0 0 1479 724 2 1 97 0
- 0 0 2144 3736 15632 303108 0 0 28 76 1525 924 2 4 90 4
- 0 0 2144 3416 15556 303488 0 0 0 0 2318 1876 4 5 91 0
- 0 0 2144 4072 15368 303096 0 0 0 2772 2240 1682 4 5 88 3
- 0 0 2144 3752 15376 303420 0 0 4 0 1456 1002 2 6 91 1
- 0 0 2144 3240 15376 303908 0 0 0 0 1653 967 1 2 97 0
- 0 0 2144 3432 15180 303960 0 0 0 972 1962 1061 2 3 93 2
- 0 0 2144 3376 15072 303452 0 0 100 0 1985 1892 11 4 67 18
- 0 0 2144 3952 15100 303540 0 0 40 2616 1201 1109 21 3 69 8
- 0 0 2144 3376 15100 304152 0 0 0 0 2785 3079 41 7 52 0
- 0 0 2144 3248 15104 304344 0 0 0 0 1254 436 1 1 98 0
- 0 0 2144 3440 15040 304236 0 0 0 128 1734 1185 2 3 95 0
- 0 0 2144 3184 15044 304540 0 0 0 0 1419 1286 20 2 78 0
- 0 1 2144 3248 14960 304608 0 0 4 4044 3001 2431 4 6 83 7
- 0 1 2144 3296 14548 303092 0 0 48 9856 1158 7669 52 18 0 30
- 1 0 2144 3360 10768 306304 0 0 32 12556 1228 6862 27 24 0 49
- 0 1 13124 3552 10592 295684 0 820 60 12864 1294 6800 25 21 0 54
- 0 1 13380 2912 11184 303644 0 8316 132 21960 1268 11034 29 28 0 42
- 0 1 20516 3424 11228 298824 0 2576 432 16504 1284 7982 28 24 0 49
- 0 1 26188 5344 11720 293544 0 4040 168 11268 1282 3754 22 13 0 65
- 1 0 26188 43828 11972 256180 0 0 784 964 1178 1815 43 8 0 49
- 1 0 26188 42292 12004 257588 0 0 728 1288 1189 2831 38 7 0 55
- 1 0 26188 39668 12020 260192 0 0 748 0 1154 2772 76 3 0 21
- 1 1 26188 35972 12084 263872 0 0 1880 0 1216 2990 68 5 0 27
- 1 0 26188 33604 12084 266264 0 0 440 0 1062 3327 83 4 0 13
- 1 0 26188 30852 12112 268988 0 0 304 3168 1110 3186 91 4 0 5
- 1 0 26188 28292 12120 271548 0 0 96 7324 1100 3255 92 4 0 4
- 1 0 26188 25932 12132 273908 0 0 144 0 1053 3697 90 6 0 4
- 1 0 26188 22476 12132 277380 0 0 1984 0 1295 3003 66 4 0 30
- 0 1 26188 18380 12136 281464 0 0 2452 912 1271 3524 67 6 0 27
- 1 0 26188 13580 12148 286248 0 0 2444 0 1157 3868 75 4 0 21
- 0 2 26188 9868 12152 289764 0 0 2880 8168 1420 4099 34 6 0 60
- 2 1 26188 8460 12164 291256 0 0 1252 56 1370 1798 22 3 0 75
- 0 1 26188 6668 12164 293128 0 0 1520 0 1271 1483 21 2 0 77
- 0 1 26188 4492 12164 295292 0 0 1796 0 1337 1774 17 3 0 80
- 0 1 26188 3132 12176 298460 0 0 1836 0 1448 3907 51 7 0 42
- 0 2 29996 2872 12088 296916 0 5552 1484 8856 1415 2402 25 5 0 70
- 0 2 29996 3064 12092 298548 0 0 800 0 1287 1712 15 3 0 82
- 0 1 29996 3448 12100 300016 0 0 684 36 1239 1408 13 2 0 85
- 1 1 30732 3000 11920 302248 0 2740 1332 2752 1361 2994 39 7 0 54
- 1 0 30732 3064 11540 305372 0 0 2104 832 1452 3262 50 8 0 42
- 0 3 30732 3760 11528 304716 0 0 1668 8656 1378 2620 41 5 0 54
- 0 1 30732 2868 11600 305584 0 0 656 156 1265 2029 35 5 0 60
- 1 0 30732 3892 11552 304420 0 0 1420 0 1179 2548 50 4 0 46
- 1 0 30732 3380 11556 305276 0 0 1212 4 1342 2162 22 3 0 75
- 0 1 30732 4212 11544 304488 0 0 3324 0 1866 3781 29 7 0 64
- 1 2 30732 3256 11548 305412 0 0 2068 5216 1616 2432 24 5 0 71
- 1 1 30732 3640 11560 305008 0 0 716 1100 1492 1801 26 3 0 71
- 0 1 30732 3960 11564 304756 0 0 696 0 1096 2368 54 3 0 43
- 0 1 30732 3448 11576 305304 0 0 1764 0 1290 2818 57 6 0 37
- 2 1 30732 3960 11588 304676 0 0 1068 0 1224 2733 53 3 0 44
- 2 3 30732 3304 11636 304828 0 0 1268 5332 1200 2273 49 4 0 47
- 1 0 30732 3368 11656 305332 0 0 508 72 1187 2269 53 4 0 43
- 1 0 30732 3304 11676 305468 0 0 1144 0 1173 2594 66 4 0 30
- 1 0 30732 3368 11672 305384 0 0 508 0 1117 3001 77 3 0 20
- 1 1 30732 2936 11692 305932 0 0 1032 0 1124 2580 64 5 0 31
- 0 3 30732 3444 11696 305384 0 0 868 7092 1215 1413 16 3 0 81
- 0 2 30732 3620 11704 305424 0 0 676 124 1209 1159 10 2 0 88
- 1 0 30732 3556 11708 305588 0 0 312 0 1058 3795 74 3 0 23
- 1 1 30732 3044 11720 306116 0 0 16 0 1005 3645 93 5 0 2
- 1 0 30732 3492 11720 305632 0 0 0 0 1003 2888 96 4 0 0
- 1 1 30732 33972 11816 275472 0 0 204 7148 1096 2001 44 8 0 48
- 0 1 30732 155936 12204 159656 0 0 380 52 1101 935 8 46 0 47
- 1 0 30732 148936 12424 160352 0 0 6340 2448 1194 491 7 12 0 81
- 0 0 30732 142856 12496 165172 0 0 4892 0 1087 321 32 3 38 27
- 0 0 30732 142664 12500 165344 0 0 0 0 1233 363 1 0 99 0
- 0 1 30732 154952 12568 166004 0 0 496 432 1324 643 3 4 72 21
- 1 1 30732 126984 14204 190400 0 0 7080 0 1077 10801 38 41 0 20
- 0 1 30732 79816 15068 235384 0 0 11776 1312 1116 16269 59 27 0 14
- 2 0 30732 57096 15592 256352 0 0 2600 20480 1260 8291 25 20 0 55
- 0 1 30732 25864 17780 282572 0 0 32 24576 1280 11014 39 36 0 26
- 0 2 39856 3636 18560 292808 0 4544 332 31916 1280 8022 25 26 0 50
- 0 3 39856 3164 18724 297756 0 0 1044 16828 1314 2776 9 7 0 84
- 0 4 39856 3164 18820 297568 0 0 1536 19460 1292 2536 7 8 0 85
- 0 2 39856 3612 19076 296820 0 0 1408 5368 1227 2281 9 7 0 84
- 2 0 39856 2976 18840 297420 0 0 5896 6552 1116 7332 30 16 0 54
- 0 2 39856 2848 19168 296284 0 0 4608 27416 1206 8577 28 21 0 51
- 0 2 39856 3360 19168 295856 0 0 896 19636 1234 1316 4 4 0 92
- 0 1 39856 3360 19392 295996 0 0 2996 1504 1194 3633 14 12 0 74
- 0 1 39856 3528 19484 295148 0 0 2216 11368 1449 534 3 9 0 88
- 1 0 39856 3272 19512 294420 0 0 140 60 1047 243 82 2 0 16
- 0 1 39856 3912 19528 293792 0 0 200 2064 2056 1052 53 4 1 42
- 1 1 39856 2888 19544 294788 0 0 12 3408 2952 2041 15 7 0 78
- 0 3 39856 3272 19552 292052 0 0 788 2272 2611 1718 18 8 0 74
- 1 0 39856 2892 19868 292788 0 0 188 5572 1361 4112 29 18 0 53
- 0 1 39856 3852 20244 293080 0 0 1600 7904 1429 1615 10 13 0 77
- 1 0 39856 5068 20440 293068 0 0 1544 6468 1386 994 24 11 0 65
- 2 0 39856 5388 20500 290988 0 0 208 1224 1186 969 59 11 6 24
- 2 0 39856 3492 20496 291888 192 0 312 0 1033 2467 56 32 0 12
- 0 0 39856 7588 20496 289304 0 0 112 0 1019 595 13 20 63 4
- 3 0 39856 3812 20500 291568 0 0 2252 0 1390 490 12 10 37 41
- 1 0 39856 3940 20516 291940 0 0 364 0 1064 780 43 28 0 29
- 1 0 39856 4700 20488 291220 0 0 104 2680 1073 875 59 30 0 11
- 3 0 39856 4636 20328 291816 0 0 2164 0 1378 657 40 19 0 42
- 1 0 39856 5204 20340 291812 0 0 0 0 1002 1851 44 56 0 0
- 1 1 39856 4788 20516 290420 0 0 448 16 1118 1876 53 47 0 0
- 3 1 39856 6772 20288 287868 0 0 432 952 1224 1435 46 43 0 12
- 2 0 39856 5300 20312 288288 0 0 404 332 1112 1623 39 49 0 12
- 1 1 39856 6388 20284 287960 0 0 444 0 1105 1106 50 37 0 14
- 2 0 39856 6708 20296 288200 0 0 248 64 1073 1128 57 43 0 0
- 1 0 39856 6452 20300 288236 0 0 0 0 1002 928 59 41 0 0
- 4 0 39856 6964 20308 288356 0 0 24 0 1005 1096 64 34 0 2
- 3 0 39856 9332 20328 286920 0 0 8 392 1035 415 84 15 0 1
- 0 0 39856 7588 20352 286960 0 0 64 0 1012 682 9 12 75 4
- 0 0 39856 7588 20352 286964 0 0 0 0 1002 155 0 0 100 0
- 0 0 39856 7588 20352 286964 0 0 0 0 1002 126 0 0 100 0
- 0 0 39856 7716 20352 286964 0 0 0 0 1002 132 0 2 98 0
- 0 0 39856 7988 20364 286968 0 0 0 304 1024 154 1 0 98 1
- 0 0 39856 7988 20364 286968 0 0 0 0 1002 123 0 0 100 0
- 2 0 39856 9164 20428 287048 0 0 0 0 1002 2591 48 28 24 0
- 1 0 39856 5708 20432 287140 0 0 76 0 1030 3623 73 24 0 3
- 3 1 39856 89072 20656 210636 0 0 220 16 1060 1863 33 49 0 18
- 0 1 39856 152124 21512 149628 0 0 764 5432 1227 1520 6 30 0 64
- 0 0 39856 133184 21572 159700 0 0 9924 4 1512 821 38 11 8 43
- 3 0 39856 143104 21700 162408 0 0 692 0 1294 1875 38 15 3 43
- 2 0 39856 141712 21804 163448 0 0 720 516 1062 2060 38 34 0 27
- 0 2 39856 128016 22376 175292 0 0 3200 2308 1436 6739 22 33 0 46
- 0 2 39856 123984 22448 179048 0 0 1152 8760 1447 1926 6 4 0 90
- 0 1 39856 123920 22496 179052 0 0 4 10080 1259 244 1 2 0 97
- 2 0 39856 88224 22892 214252 0 0 9728 4 1083 12863 48 19 0 33
- 2 0 39856 49120 23652 250804 0 0 6940 6564 1139 13561 43 30 0 27
- 2 0 39856 5608 25796 288136 0 0 0 36864 1315 15674 51 49 0 0
- 0 2 57904 2920 26292 274468 0 9124 1016 26844 1221 6151 18 23 0 59
- 0 4 57904 3080 26344 277104 0 0 532 17320 1302 1244 4 4 0 92
- 0 4 57904 2728 26356 280248 0 0 2048 15660 1253 3299 11 8 0 81
- 1 3 57904 3128 24724 281328 0 0 1920 13036 1208 2946 10 8 0 82
- 0 2 57904 3504 24744 280896 0 0 2308 5268 1193 3382 12 10 0 78
- 0 2 57904 2864 25028 280204 0 0 8320 16712 1118 13097 44 33 0 23
- 0 2 57904 2928 25028 280160 0 0 384 28012 1259 686 2 3 0 95
- 0 2 57904 3440 25136 279904 0 0 1404 3504 1201 7908 8 6 0 86
- 0 1 57904 3184 25260 279620 0 0 1424 10876 1386 746 5 14 0 81
- 1 0 57904 3568 25284 278236 0 0 40 100 1045 226 84 3 0 13
- 0 0 57904 3504 25292 278540 0 0 200 0 1192 355 48 2 41 9
- 0 0 57904 3376 25300 278516 0 0 0 0 2656 2088 4 5 91 0
- 1 0 57904 2928 25308 278232 0 0 552 0 2115 1298 5 5 74 16
- 1 0 57904 3760 25688 275188 0 0 420 9920 1396 4316 34 22 0 44
- 0 1 57904 2864 25976 277584 0 0 2600 3140 1484 1442 8 15 0 77
- 1 0 57904 3696 26256 276508 0 0 540 6472 1355 1019 42 13 4 41
- 3 0 57904 3672 26404 275912 0 0 200 1212 1091 1574 58 17 0 25
- 0 0 57904 8264 26436 272248 0 0 132 0 1021 2106 43 44 6 7
- 1 0 57904 8200 26440 272312 0 0 64 0 1013 236 3 2 93 2
- 2 0 57904 5768 26444 274768 0 0 2448 0 1424 641 25 17 0 58
- 1 0 57904 4288 26460 275028 0 0 252 0 1047 887 54 30 0 16
- 1 0 57904 4224 26484 273844 0 0 88 2692 1068 695 58 27 0 15
- 2 0 57904 5888 26496 274576 0 0 2092 0 1364 773 32 28 0 41
- 1 0 57904 5744 26504 274572 0 0 0 24 1008 2255 36 64 0 0
- 3 0 57904 5168 26516 274588 0 0 8 0 1010 1076 59 39 0 2
- 1 0 57904 6704 26532 271800 0 0 0 0 1008 1125 51 49 0 0
- 4 0 57904 6640 26556 271828 0 0 32 344 1023 786 56 36 0 8
- 1 0 57904 6960 26564 271912 0 0 80 0 1016 787 58 36 0 6
- 2 0 57904 6944 26568 271944 0 0 0 0 1002 786 58 42 0 0
- 2 1 57904 6432 26572 272056 0 0 0 3680 1590 1560 61 39 0 0
- 1 1 57904 8032 26588 270800 0 0 32 2920 1732 816 81 16 0 3
- 0 0 57904 8256 26604 270940 0 0 40 2456 1623 1204 19 21 12 47
- 0 0 57904 8384 26604 270944 0 0 0 0 1002 147 1 0 99 0
- 0 0 57904 8384 26620 270948 0 0 16 0 1006 147 0 0 95 5
- 0 0 57904 8576 26620 270948 0 0 0 0 1005 139 0 1 99 0
- 0 0 57904 8768 26620 270948 0 0 0 0 1002 135 0 0 100 0
- 0 0 57904 8896 26628 270948 0 0 0 48 1007 138 0 0 100 0
- 2 0 57904 9048 26632 270984 0 0 0 0 1002 1955 32 20 48 0
- 3 0 57904 9176 26636 271112 0 0 76 0 1018 3569 69 27 0 4
- 2 0 57904 56252 26660 227240 0 0 172 16 1018 2257 47 43 0 10
- 1 0 57904 162276 26804 131156 0 0 236 5436 1075 992 20 53 0 27
- 0 1 57904 135144 27632 155028 0 0 6876 508 1079 11467 42 38 0 21
- 2 0 57904 89512 28356 198740 0 0 11264 4088 1147 16976 56 29 0 15
- 0 1 57904 76232 28508 211524 0 0 2304 8192 1159 5235 14 12 0 74
- 2 0 57904 50888 29384 233020 0 0 924 20480 1216 8358 24 31 0 44
- 0 2 57904 29848 30624 251312 0 0 0 38356 1298 8543 29 24 0 47
- 1 5 73032 1972 31456 262496 0 15340 0 35152 2221 11305 22 18 0 60
- 0 2 94712 2256 29836 255880 0 3432 816 17272 1331 8495 30 26 0 44
- 2 0 94712 2236 27980 260212 0 0 2560 11784 1238 4323 15 15 0 70
- 0 2 94712 2456 28072 259568 0 0 3968 24892 1202 6784 22 13 0 65
- 0 3 94712 3184 28080 258732 0 0 1536 20368 1209 2212 9 4 0 87
- 0 2 94712 2696 28248 259208 0 0 1416 8444 1301 1217 4 9 0 87
- 0 1 94712 2576 28340 255916 0 0 992 13912 1412 521 1 6 0 93
- 0 0 94712 3216 28372 254188 0 0 528 64 1193 330 32 2 35 31
- 1 0 94712 5072 28432 249896 0 0 340 608 1172 528 24 6 59 11
- 1 0 94712 6408 28660 250296 0 0 176 6308 1169 639 53 13 0 34
- 0 0 94712 6408 28668 250448 0 0 4 0 1221 403 89 3 7 1
- 0 0 94712 6280 28668 250556 0 0 0 0 1141 293 1 1 98 0
- 0 0 94712 5320 28676 251532 0 0 0 0 2166 1568 1 3 96 0
- 0 0 94712 4680 28676 252124 0 0 0 0 1726 1001 2 4 94 0
- 1 0 94712 3416 28696 250380 0 0 0 1968 1602 764 12 3 80 5
- 0 1 94712 2632 29196 250800 0 0 0 9824 1242 5002 32 26 0 42
- 3 0 94712 2504 29448 252064 0 0 2896 2060 1536 827 6 10 0 84
- 0 2 94712 2248 29616 252420 0 0 60 3472 1438 1933 51 20 0 29
- 3 1 94712 7112 29616 249152 0 0 52 3424 1620 1130 18 35 0 47
- 0 1 94712 7112 29616 249180 0 0 24 2740 1690 706 3 7 0 90
- 0 2 94712 4616 29620 250724 0 0 1536 1284 1582 593 6 7 0 87
- 1 0 94712 4168 29636 251544 0 0 800 1020 1484 814 35 25 0 40
- 1 0 94712 3972 29652 251584 0 0 48 340 1027 930 62 34 0 4
- 2 0 94712 3268 29668 253648 0 0 2052 0 1357 704 43 23 0 35
- 3 0 94712 3900 29636 252844 0 0 36 0 1008 1725 46 54 0 0
- 4 0 94712 4348 29640 251968 0 0 0 0 1002 1538 49 51 0 0
- 1 0 94712 5948 29616 249812 0 0 8 0 1004 955 51 38 0 11
- 1 0 94712 3196 29636 249864 0 0 0 404 1036 1019 50 50 0 0
- 1 0 94712 4348 29648 249840 0 0 0 0 1002 780 59 41 0 0
- 2 0 94712 6012 29652 249840 0 0 0 0 1002 777 59 41 0 0
- 1 0 94712 5612 29656 249968 0 0 0 0 1002 943 66 34 0 0
- 1 0 94712 2988 29648 249272 0 0 24 0 1005 779 74 26 0 0
- 0 0 94712 7692 29684 247800 0 0 40 680 1042 924 42 24 33 1
- 0 0 94712 7692 29684 247800 0 0 0 0 1002 153 0 0 100 0
- 0 0 94712 7692 29684 247800 0 0 0 0 1002 129 0 0 100 0
- 0 0 94712 7884 29684 247800 0 0 0 0 1002 143 1 0 99 0
- 0 0 94712 8076 29684 247800 0 0 0 0 1002 141 0 0 100 0
- 0 0 94712 8140 29696 247804 0 0 0 216 1016 143 0 2 98 0
- 1 0 94712 8100 29736 247816 0 0 0 0 1016 449 25 10 65 0
- 2 0 94712 8612 29760 247984 0 0 88 0 1041 679 70 25 0 6
- 1 0 94712 65796 29852 193440 0 0 88 0 1024 1065 47 41 0 13
- 0 1 94712 172092 30028 96768 0 0 456 5868 1097 1168 11 50 0 39
- 0 1 94712 137596 31788 126884 0 0 8548 0 1096 12647 48 37 0 16
- 0 1 94712 97596 32508 165008 0 0 9856 7384 1172 13837 48 24 0 28
- 2 0 94712 64084 33628 194392 0 0 1408 24576 1250 11767 36 31 0 33
- 2 0 94712 18580 35680 234024 0 0 0 38076 1362 16438 54 46 0 0
- 1 8 94712 1440 34728 255024 0 19480 28 30304 1306 10585 39 22 0 39
- 0 6 94748 2080 34564 275120 0 14396 188 24804 1320 9936 32 21 0 48
- 0 5 94748 2468 32072 284156 0 2096 932 7676 1201 5394 21 9 0 70
- 2 4 94748 96580 30792 188184 0 0 1372 6732 1217 4081 25 42 0 33
- 0 6 94748 100744 30944 165720 0 0 596 5148 1122 1877 8 12 0 80
- 0 4 94748 106708 30944 141872 0 0 0 25956 1310 808 5 11 0 84
- 2 0 94748 188228 31312 56228 0 0 236 18248 1956 1320 4 12 0 84
- 0 0 94748 186692 31344 57364 0 0 372 0 2056 27898 9 12 64 15
- 0 0 94748 185220 31344 58896 0 0 0 0 2904 2269 0 5 95 0
- 2 1 94748 177540 31368 66628 0 0 64 1436 1612 1144 55 27 13 5
- 2 1 94748 177540 31380 66628 0 0 0 3768 1640 929 75 25 0 0
- 1 1 94748 177476 31380 66628 0 0 0 9984 1162 417 81 19 0 0
- 1 0 94748 177540 31392 66628 0 0 0 88 1024 358 81 19 0 0
- 1 0 94748 177604 31392 66628 0 0 0 0 1002 326 81 19 0 0
- 1 0 94748 177604 31392 66628 0 0 0 0 1003 335 82 18 0 0
- 1 0 94748 177668 31400 66628 0 0 0 24 1048 337 84 16 0 0
- 1 0 94748 177604 31400 66628 0 0 0 0 1002 313 83 17 0 0
- 2 0 94748 177412 31400 66628 0 0 0 0 1006 291 84 16 0 0
- 1 0 94748 177668 31400 66628 0 0 0 0 1002 260 86 14 0 0
- 0 0 94748 177220 31420 67000 0 0 0 476 1610 841 40 10 49 0
- 2 0 94748 176708 31428 67548 0 0 0 24 1688 1034 3 6 91 0
- 0 0 94748 176324 31432 67948 0 0 0 0 1550 771 2 3 95 0
- 0 0 94748 175172 31440 69036 0 0 0 0 2502 1922 12 20 69 0
- 0 0 94748 175048 31440 69164 0 0 0 0 1164 315 0 0 100 0
- 0 0 94748 174296 31460 70024 0 0 0 3132 2186 1545 12 14 73 1
- 0 0 94748 173784 31468 70560 0 0 0 36 1664 923 0 2 98 0
- 0 0 94748 172696 31476 71608 0 0 0 0 2326 1734 8 9 83 0
- 0 0 94748 172248 31476 72076 0 0 0 0 1572 808 0 2 98 0
- 0 0 94748 171928 31476 72448 0 0 0 0 1492 675 1 2 97 0
- 0 0 94748 170712 31496 73648 0 0 0 3832 2648 2102 13 18 68 1
- 0 0 94748 170520 31508 73780 0 0 0 40 1222 458 7 7 86 0
- 0 0 94748 169816 31520 74496 0 0 0 0 1940 1225 8 7 85 0
- 0 0 94748 169112 31520 75204 0 0 0 0 1860 1267 4 5 91 0
- 0 0 94748 168472 31532 75828 0 0 0 0 1881 1273 19 16 65 0
- 0 0 94748 167896 31544 76412 0 0 0 3032 1772 1034 0 3 89 8
- 0 0 94748 167000 31564 77280 0 0 0 28 2225 1429 16 16 68 0
- 2 0 94748 166744 31572 77556 0 0 0 0 1378 588 6 5 89 0
- 0 1 94748 166360 31588 77924 0 0 4 0 1551 1469 34 13 52 1
- 0 0 94748 165656 31664 78016 0 0 140 0 1082 1147 18 2 61 19
- 1 0 94748 165400 31676 78284 0 0 0 1848 1390 611 0 2 96 2
- 0 0 94748 164824 31684 78836 0 0 0 20 1739 1085 7 5 88 0
- 0 0 94748 164440 31692 79228 0 0 0 0 1629 1371 26 20 54 0
- 0 0 94748 163544 31760 79756 0 0 120 0 1712 1292 28 14 47 11
- 0 0 94748 162840 31764 80444 0 0 0 0 1912 1277 21 12 67 0
- 0 2 94748 162584 31764 80668 0 0 0 3428 1517 894 1 1 86 12
- 0 2 94748 162584 31780 80944 0 0 0 4012 1908 1085 1 3 0 96
- 0 0 94748 161560 31780 81736 0 0 0 1208 2377 1615 2 6 60 32
- 0 0 94748 160408 31780 82832 0 0 0 0 2383 1706 2 5 93 0
- 0 0 94748 160024 31780 83216 0 0 0 0 1479 643 0 1 99 0
- 0 0 94748 159704 31780 83564 0 0 0 0 1452 652 1 2 97 0
- 0 0 94748 160228 31804 84196 0 0 0 3016 1818 1076 0 1 94 5
- 2 0 94748 159796 31804 84488 0 0 0 0 1370 567 0 2 98 0
- 0 0 94748 159860 31808 84632 0 0 0 0 1246 572 25 10 65 0
- 0 0 94748 159796 31808 84664 0 0 0 0 1094 386 14 7 79 0
- 0 0 94748 159284 31816 85156 0 0 0 0 1668 799 8 6 86 0
- 0 0 94748 159156 31840 85380 0 0 0 1608 1363 688 22 13 64 1
- 0 0 94748 158900 31844 85612 0 0 0 0 1348 678 25 10 65 0
- 0 0 94748 158644 31848 85872 0 0 0 0 1378 734 24 14 63 0
- 0 0 94748 158260 31860 86280 0 0 0 0 1609 911 35 15 50 0
- 0 0 94748 158132 31868 86404 0 0 0 0 1212 487 17 7 76 0
- 0 0 94748 157940 31892 86548 0 0 0 1348 1227 427 9 6 84 1
- 0 0 94748 157876 31892 86608 0 0 0 0 1125 421 27 10 63 0
- 0 0 94748 157812 31892 86652 0 0 0 0 1083 276 9 4 87 0
- 0 0 94748 157428 31896 87012 0 0 0 0 1460 615 1 1 98 0
- 0 0 94748 156916 31896 87532 0 0 0 0 1648 905 0 3 97 0
- 0 0 94748 156340 31912 88092 0 0 0 1620 1733 989 0 1 98 1
- 0 0 94748 155764 31916 88680 0 0 0 0 1725 1087 12 6 82 0
- 3 0 94748 155444 31916 88932 0 0 0 0 1381 667 30 11 59 0
- 0 0 94748 155444 31916 89012 0 0 0 0 1170 603 48 19 34 0
- 0 0 94748 154868 31928 89612 0 0 0 8 1838 1164 30 13 57 0
- 0 0 94748 154164 31948 90276 0 0 0 2412 1939 1240 32 13 51 4
- 0 0 94748 153844 31952 90572 0 0 0 0 1393 484 1 1 98 0
- 0 0 94748 152948 31960 91452 0 0 0 0 2145 1592 31 15 54 0
- 0 0 94748 152564 31968 91836 0 0 0 0 1570 931 32 13 55 0
- 3 0 94748 152244 31972 92236 0 0 0 4 1574 993 4 3 93 0
- 1 0 94748 151732 31988 92712 0 0 0 36 1687 1104 46 20 34 0
- 1 0 94748 150964 32004 93440 0 0 0 3088 2009 1303 31 16 44 9
- 3 0 94748 150388 32012 93828 0 0 0 0 1623 1060 29 11 60 0
- 0 0 94748 149940 32016 94392 0 0 0 0 1723 966 1 4 95 0
- 2 0 94748 149428 32032 94988 0 0 0 288 1874 1276 35 19 47 0
- 1 0 94748 149172 32044 95244 0 0 0 40 1385 731 44 14 41 0
- 3 0 94748 148532 32060 95772 0 0 0 2428 1787 997 28 12 57 3
- 1 0 94748 148148 32072 96268 0 0 0 0 1691 1029 45 15 40 0
- 2 0 94748 147508 32080 96880 0 0 0 0 1886 1352 36 17 48 0
- 2 0 94748 146932 32096 97452 0 0 0 0 1796 1261 54 21 25 0
- 0 0 94748 146484 32108 97808 0 0 0 36 1474 658 12 6 82 0
- 1 0 94748 146484 32116 97868 0 0 0 2248 1126 293 6 2 88 4
- 2 0 94748 133420 33200 109188 0 0 272 0 1165 7859 48 41 8 4
- 2 0 94748 106348 34316 134188 0 0 0 0 1002 15162 51 49 0 0
- 0 2 94748 97964 34680 141704 0 0 16 23612 1276 5783 19 24 0 57
- 0 2 94748 97772 34688 141704 0 0 0 20136 1419 547 3 5 0 92
- 0 1 94748 98172 34760 141704 0 0 4 6292 1845 229 0 4 0 96
- 1 0 94748 90956 35416 144568 0 0 104 2812 1244 4545 36 37 0 27
- 0 1 94748 75844 35908 157028 0 0 4 18952 1168 8752 41 43 0 17
- 0 1 94748 90628 36168 142224 0 0 0 5356 1270 2151 24 18 0 58
- 2 0 94748 88580 36556 143432 0 0 4 4848 1189 2898 47 26 0 28
- 0 1 94748 88452 37088 142888 0 0 0 12760 1288 5763 25 24 0 51
- 0 1 94748 87364 37692 143192 0 0 0 10008 1333 4912 37 27 0 36
- 0 1 94748 71428 37988 158268 0 0 0 15800 1124 8559 33 41 0 26
- 0 1 94748 84868 38576 145036 0 0 0 10676 1341 3538 19 25 0 56
- 2 0 94748 83140 39204 145568 0 0 0 12708 1359 5754 27 30 0 44
- 0 1 94748 85316 39908 144052 0 0 64 9700 1444 3763 25 22 0 53
- 0 1 94748 84676 40592 143996 0 0 0 4980 1450 1939 21 22 0 57
- 2 0 94748 82620 40884 143964 0 0 0 2196 1239 2237 37 37 0 26
- 0 1 94748 84156 41040 144016 0 0 0 1312 1155 2048 38 48 0 14
- 3 0 94748 80316 41444 143876 0 0 4 3856 1397 1238 50 13 0 38
- 0 0 94748 83708 41624 143732 0 0 0 1608 1143 762 7 7 70 16
- 0 0 94748 83708 41632 143732 0 0 0 24 1040 255 0 0 100 0
- 0 0 94748 83708 41632 143732 0 0 0 0 1088 487 2 1 97 0
- 3 0 94748 82092 41840 143912 0 0 0 1564 1159 1218 45 16 26 14
- 1 0 94748 72812 42328 150468 0 0 0 9908 1310 5019 46 22 0 33
- 0 1 94748 66540 42952 156900 0 0 0 10296 1368 4963 33 29 0 37
- 2 0 94748 55276 43624 166740 0 0 0 9204 1381 7790 31 30 0 40
- 2 0 94748 50476 44248 170524 0 0 0 11532 1320 3914 30 24 0 46
- 2 0 94748 44012 44768 176004 0 0 0 8240 1269 4494 52 21 0 27
- 3 0 94748 38892 45432 180016 0 0 0 9608 1334 3771 33 26 0 41
- 2 0 94748 32748 45692 187796 0 0 0 10124 1279 5246 50 21 0 29
- 1 0 94748 27436 45972 187988 0 0 0 2448 1200 871 60 14 0 26
- 0 1 94748 31084 46320 188032 0 0 0 3616 1305 2104 55 11 0 34
- 0 1 94748 27428 46476 188008 0 0 24 1972 1198 1108 62 18 0 20
- 1 0 94748 27556 46828 188024 0 0 0 3132 1274 1254 53 15 0 32
- 1 0 94748 26660 47024 188172 0 0 0 2376 1241 1057 62 16 0 22
- 2 0 94748 24612 47392 188228 0 0 0 3308 1320 1355 47 18 0 35
- 2 0 94748 24908 47548 188360 0 0 0 1040 1154 1646 60 32 1 7
- 2 0 94748 24716 47592 188384 0 0 0 320 1094 1307 45 51 0 4
- 1 0 94748 24524 47616 188412 0 0 0 160 1041 1100 51 48 0 1
- 2 0 94748 24332 47628 188460 0 0 0 88 1013 1079 47 52 0 1
- 1 0 94748 25884 47760 188400 0 0 0 1780 1129 854 59 30 0 11
- 1 0 94748 27164 47940 188776 0 0 0 2304 1202 882 74 9 0 17
- 2 0 94748 26460 48156 189008 0 0 0 3752 1423 1048 43 17 0 41
- 0 1 94748 27508 48368 189136 0 0 0 2112 1141 1419 63 18 0 19
- 0 0 94748 28300 48476 189608 0 0 0 816 1743 1228 10 13 69 8
- 0 0 94748 27532 48484 190344 0 0 0 44 2013 1390 1 4 95 0
- 0 0 94748 27100 48484 190788 0 0 0 0 1631 1101 3 2 95 0
- 0 0 94748 26204 48484 191672 0 0 0 0 2100 1415 3 3 94 0
- 0 1 94748 28204 48528 189540 0 0 4 10540 1266 5571 35 11 36 18
- 0 1 94748 19948 48592 197880 0 0 20 8580 1171 396 62 8 0 30
- 1 0 94748 19956 48768 197172 0 0 0 6040 1229 552 64 10 0 26
- 0 0 94748 18164 48772 198452 0 0 0 0 2780 1993 33 4 63 0
- 0 0 94748 17652 48772 198936 0 0 0 0 1604 897 5 2 93 0
- 0 0 94748 16948 48772 199600 0 0 0 0 1785 936 15 3 82 0
- 0 0 94748 15220 48780 201328 0 0 0 12 3097 2556 4 7 89 0
- 0 0 94748 14772 48796 201772 0 0 0 4344 1626 998 2 2 85 11
- 0 0 94748 13188 48800 203304 0 0 0 0 2963 2481 5 6 89 0
- 0 0 94748 12164 48804 204144 0 0 0 0 2015 1261 22 7 71 0
- 0 0 94748 10956 48804 205372 0 0 0 0 2515 2109 4 5 91 0
- 0 0 94748 9676 48804 206588 0 0 0 0 2478 2004 4 4 92 0
- 0 0 94748 9372 48820 206940 0 0 0 5648 1553 825 2 2 83 13
- 0 0 94748 8860 48828 207584 0 0 0 0 1856 1355 4 4 92 0
- 0 0 94748 7844 48832 208592 0 0 0 0 2269 1498 18 5 77 0
- 0 0 94748 6692 48832 209724 0 0 0 0 2387 2080 7 4 89 0
- 0 0 94748 6068 48836 210364 0 0 0 0 1822 1518 3 4 93 0
- 2 0 94748 5876 48844 210512 0 0 0 24 1205 368 0 1 99 0
- 0 0 94748 4340 48848 212100 0 0 0 4840 3010 2715 5 5 81 9
- 0 0 94748 3700 48852 212708 0 0 0 0 1732 1066 15 4 81 0
- 0 0 94748 3076 48856 214636 0 0 0 4 3359 2999 6 7 87 0
- 2 0 94748 4460 48888 215472 0 0 0 3104 1148 1123 26 7 61 6
- 2 0 94748 2860 49408 233572 0 0 0 10160 1165 11611 40 27 0 32
- 0 1 94748 3116 49980 245688 0 0 0 22872 1228 7598 26 24 0 50
- 1 0 94748 2604 48396 252260 0 0 0 7392 1253 6075 25 27 0 49
- 1 0 94748 2988 47140 252064 0 0 12 16528 1223 7753 26 26 0 47
- 0 1 94748 5100 44936 254148 0 0 52 11356 1286 5211 26 18 0 56
- 1 1 94748 53676 45356 206404 0 0 828 1876 1210 1356 31 8 0 61
- 1 0 94748 51500 45464 208452 0 0 372 44 1105 3872 74 8 0 18
- 0 2 94748 49132 45492 210804 0 0 568 1892 1410 2599 74 5 0 21
- 1 0 94748 46700 45544 213208 0 0 1300 760 1450 1900 43 2 0 55
- 1 0 94748 44204 45544 215664 0 0 184 0 1047 3304 91 5 0 4
- 1 1 94748 41724 45564 218128 0 0 20 9680 1083 2903 93 5 0 2
- 1 0 94748 39484 45576 220544 0 0 0 40 1049 3678 95 5 0 0
- 1 0 94748 37052 45576 222968 0 0 72 0 1010 3520 93 5 0 2
- 1 0 94748 34428 45580 225244 0 0 20 2332 1039 3298 96 4 0 0
- 1 0 94748 31748 45632 228172 0 0 548 0 1153 3440 79 5 0 16
- 1 1 94748 29436 45660 230096 0 0 76 9068 1115 6744 87 8 0 5
- 2 0 94748 26812 45680 233144 0 0 788 44 1237 3542 60 7 0 33
- 1 0 94748 21820 45700 238004 0 0 812 0 1151 3908 72 9 0 19
- 1 0 94748 16700 45720 243028 0 0 1168 3228 1245 2958 61 7 0 32
- 1 0 94748 13116 45744 246552 0 0 792 4096 1168 3038 61 6 0 33
- 1 1 94748 10748 45744 248916 0 0 300 7708 1077 4589 84 6 0 10
- 0 2 94748 7420 45744 252284 0 0 3192 0 1855 3948 7 6 0 87
- 1 0 94748 4292 45776 255524 0 0 2232 44 1488 3408 38 6 0 56
- 0 1 94748 3012 45012 257576 0 0 1040 0 1117 3242 77 4 0 19
- 1 0 94748 2884 44024 258628 0 0 992 492 1124 2579 60 4 0 36
- 0 2 94748 2564 41956 260920 0 0 1300 5568 1151 2458 53 5 0 42
- 1 0 94748 2820 40344 262432 0 0 920 44 1189 1979 40 3 0 57
- 2 0 94748 2628 37844 265144 0 0 1260 0 1133 2518 65 5 0 30
- 1 0 94748 2884 35432 267332 0 0 1080 0 1153 2809 77 4 0 19
- 0 1 94748 3268 35012 267280 0 0 1020 2636 1123 2166 50 4 0 46
- 1 2 94748 3240 35004 267296 0 0 564 4156 1162 1003 10 3 0 87
- 0 1 94748 2608 35016 268068 0 0 544 36 1165 1037 7 2 0 91
- 1 0 94748 3184 34996 267204 0 0 316 0 1030 4049 78 7 0 15
- 1 0 94748 3120 34992 267248 0 0 28 0 1009 3335 92 4 0 4
- 1 0 94748 3056 35004 267320 0 0 12 0 1005 3056 95 4 0 1
- 1 2 94748 74032 35556 199436 0 0 572 6660 1143 1049 9 24 0 67
- 0 1 94748 121668 35896 153540 0 0 332 52 1143 723 3 19 0 78
- 2 0 94748 174524 36436 102096 0 0 452 5664 1213 775 11 18 0 71
- 1 0 94748 161724 36612 108608 0 0 6640 0 1180 477 20 8 0 72
- 1 0 94748 156668 36696 113100 0 0 4572 0 1179 677 63 5 5 27
- 0 3 94748 169020 36768 113696 0 0 248 1588 1546 804 13 3 67 17
- 1 0 94748 142204 37684 136816 0 0 6756 52 1121 10670 36 39 0 26
- 0 3 94748 102460 38548 174100 0 0 1000 4684 1417 17974 60 37 0 3
- 2 2 94748 58556 40192 211968 0 0 8 19168 1293 16300 50 48 0 2
- 2 1 94748 28924 41432 237944 0 0 28 23052 1287 11034 52 30 0 18
- 2 3 94748 2940 40176 264088 0 0 0 29180 1407 13488 66 34 0 0
- 2 3 94748 2564 38056 266400 0 0 592 15176 1312 2131 15 7 0 78
- 0 4 94748 3068 36800 267128 0 0 1792 17592 1279 3721 32 10 0 58
- 0 5 94748 3132 36708 267032 0 0 1664 17712 1297 3119 39 5 0 56
- 0 5 94748 3260 36728 266836 0 0 1796 18180 1235 2728 27 6 0 67
- 0 2 94748 2932 37032 266540 0 0 1144 7588 1196 2154 24 14 0 62
- 0 2 94748 2892 37108 266428 0 0 1648 18796 1268 675 22 5 0 73
- 0 1 94748 3532 37168 261664 0 0 748 8672 1353 452 12 6 0 82
- 1 0 94748 3276 37192 261744 0 0 140 6768 1514 465 61 6 0 33
- 0 0 94748 3084 37192 261312 0 0 212 0 1424 632 60 3 31 6
- 0 0 94748 2572 37208 261788 0 0 0 40 1656 619 13 3 84 0
- 0 0 94748 3532 37208 260864 0 0 0 0 1664 796 18 2 80 0
- 0 0 94748 3212 37208 261192 0 0 0 0 1399 622 1 1 98 0
- 1 1 94748 2780 37228 261800 0 0 136 1680 1660 762 1 1 88 10
- 1 0 94748 3164 37576 258088 0 0 652 3332 1239 3567 54 19 0 27
- 0 1 94748 4060 37948 258440 0 0 1460 7168 1418 1846 28 17 0 55
- 1 0 94748 4636 38240 258988 0 0 1416 6116 1398 738 15 11 0 74
- 1 0 94748 3868 38412 258100 0 0 268 1216 1179 1521 55 16 4 25
- 1 0 94748 8260 38460 254104 0 0 68 0 1017 1951 59 38 0 3
- 0 0 94748 8188 38460 254228 0 0 116 0 1020 491 10 11 74 5
- 1 0 94748 5820 38464 256608 0 0 2376 0 1423 557 24 11 25 41
- 2 0 94748 5756 38484 256676 0 0 60 0 1049 835 68 30 0 2
- 4 0 94748 5484 38504 256688 0 0 8 2676 1055 915 71 29 0 0
- 3 1 94748 3052 38512 258300 0 0 2456 0 1246 673 63 11 0 27
- 3 0 94748 3940 38524 257808 0 0 364 0 1064 1166 58 38 0 4
- 2 0 94748 3044 38524 257808 0 0 0 0 1039 2054 44 56 0 0
- 1 0 94748 4452 38544 257156 0 0 12 0 1007 1118 54 44 0 2
- 1 0 94748 5796 38576 254720 0 0 0 344 1070 1071 56 44 0 0
- 1 0 94748 4260 38588 254740 0 0 12 468 1167 762 73 26 0 1
- 3 0 94748 4260 38600 254796 0 0 44 0 1127 880 68 29 0 3
- 1 0 94748 4260 38600 254796 0 0 0 0 1058 963 62 38 0 0
- 7 1 94748 4948 38612 254860 0 0 8 0 1078 1148 64 36 0 0
- 1 0 94748 7508 38628 254952 0 0 20 480 1034 1244 71 28 0 1
- 4 0 94748 8084 38640 253344 0 0 4 8 1051 467 89 10 0 1
- 0 0 94748 7228 38652 253492 0 0 44 0 1009 937 23 18 58 1
- 0 0 94748 7228 38652 253492 0 0 0 0 1002 131 0 1 99 0
- 0 0 94748 7228 38656 253492 0 0 4 0 1003 151 1 0 97 2
- 0 0 94748 7420 38672 253496 0 0 0 388 1029 147 0 0 99 1
- 0 0 94748 7612 38672 253500 0 0 0 0 1002 136 0 0 100 0
- 0 0 94748 7612 38672 253500 0 0 0 0 1002 135 0 0 100 0
- 2 0 94748 8804 38732 253568 0 0 0 0 1002 2278 38 21 42 0
- 3 0 94748 7524 38744 253716 0 0 128 0 1024 3571 70 25 0 5
- 0 1 94748 88260 38808 178480 0 0 12 2588 1012 2101 44 53 0 3
- 0 3 94748 170248 38836 105520 0 0 24 4516 1784 1227 7 36 0 57
- 1 0 94748 151496 38840 111016 0 0 5496 80 1233 424 34 5 0 61
- 0 0 94748 146200 38888 115692 0 0 4404 0 1423 729 49 3 34 14
- 1 0 94748 157080 38964 118120 0 0 480 0 1204 1327 53 7 20 19
- 0 1 94748 155864 39132 118472 0 0 484 3856 1111 629 38 10 0 52
- 1 0 94748 152232 39284 122188 0 0 1316 24 1075 3712 44 39 0 17
- 1 0 94748 115496 39388 156240 0 0 6372 0 1063 15881 56 37 0 7
- 2 0 94748 71400 39388 197812 0 0 0 22264 1201 18794 58 42 0 0
- 2 2 94748 27880 39388 236692 0 0 0 24680 1238 15774 53 47 0 0
- 0 4 94748 2552 39584 262036 0 0 0 27736 1340 14641 53 32 0 15
- 0 4 94748 3320 38452 263696 0 0 940 16788 1297 3925 16 10 0 74
- 0 4 94748 3144 38224 264184 0 0 2304 14040 1229 4676 13 8 0 79
- 0 4 94748 3208 38224 264040 0 0 2176 14888 1213 3232 12 7 0 81
- 0 4 94748 2696 38256 263708 0 0 1772 13816 1222 2672 11 13 0 76
- 0 1 94748 3144 38388 263308 0 0 1212 13364 1409 336 1 10 0 89
- 0 1 94748 3656 38392 263308 0 0 0 24116 1265 280 0 3 0 97
- 1 0 94748 3400 38440 263300 0 0 44 5516 1127 244 60 4 0 36
- 0 0 94748 3320 38452 262824 0 0 216 0 1927 1091 61 4 27 8
- 0 0 94748 2616 38460 263332 0 0 0 40 1647 929 2 5 93 0
- 0 0 94748 3064 38460 262884 0 0 0 0 1316 497 0 1 99 0
- 1 0 94748 5496 38468 258276 0 0 768 0 1900 1129 25 8 47 20
- 0 1 94748 4280 39068 259912 0 0 284 12124 1300 4725 24 27 0 50
- 1 0 94748 7352 39316 258532 0 0 2604 1668 1496 790 7 10 0 83
- 0 1 94748 5880 39456 257944 0 0 140 5664 1230 631 59 14 4 23
- 2 0 94748 3360 39480 259268 0 0 116 0 1021 2848 57 40 0 3
- 0 0 94748 7512 39480 256704 0 0 116 0 1020 539 14 14 67 5
- 2 0 94748 5208 39484 259088 0 0 2376 0 1411 539 16 12 32 40
- 2 0 94748 5008 39484 259160 0 0 68 0 1014 1001 59 39 0 2
- 0 1 94748 5584 39512 258460 0 0 160 2680 1062 820 64 34 0 2
- 1 0 94748 4184 39528 259380 0 0 2660 0 1203 1079 35 33 0 32
- 2 0 94748 3352 39528 259384 0 0 0 0 1002 2092 41 59 0 0
- 1 0 94748 4184 39540 258712 0 0 12 0 1005 1029 57 41 0 2
- 2 0 94748 6296 39552 256240 0 0 8 0 1004 1037 49 49 0 2
- 1 0 94748 5784 39584 256296 0 0 48 336 1026 785 59 39 0 2
- 2 0 94748 5208 39584 256304 0 0 0 0 1002 806 58 42 0 0
- 2 1 94748 5056 39596 256368 0 0 0 4144 1702 1405 55 45 0 0
- 1 1 94748 6208 39600 256464 0 0 20 2632 1642 1377 54 31 0 15
- 2 0 94748 9344 39624 254200 0 0 4 1672 1497 596 85 14 0 1
- 0 0 94748 9376 39636 254244 0 0 44 548 1038 724 11 13 71 5
- 0 0 94748 9568 39636 254248 0 0 0 0 1002 141 0 0 100 0
- 0 0 94748 9568 39636 254248 0 0 0 4 1003 140 0 0 100 0
- 0 0 94748 9824 39636 254248 0 0 0 0 1002 135 0 1 99 0
- 0 0 94748 10016 39636 254248 0 0 0 0 1002 136 0 0 100 0
- 0 0 94748 10016 39652 254248 0 0 0 72 1012 156 1 0 99 0
- 3 0 94748 10168 39728 254328 0 0 0 0 1002 2550 47 26 26 0
- 3 0 94748 8504 39732 254472 0 0 128 12 1026 3603 69 27 0 4
- 1 0 94748 132824 39740 138132 0 0 4 0 1015 1979 37 61 0 2
- 1 0 94748 166648 39908 111240 0 0 1232 5592 1109 2092 45 30 0 25
- 2 0 94748 133176 40672 141288 0 0 6372 0 1067 14916 53 39 0 8
- 2 1 94748 88856 41468 182272 0 0 0 19200 1172 18953 60 40 0 0
- 1 2 94748 46488 43440 218808 0 0 0 26244 1280 15675 49 51 0 0
- 1 3 94748 6504 44776 255356 0 0 0 25436 1307 16505 59 41 0 0
- 0 4 94748 3176 42904 260100 0 0 2092 12248 1283 6834 20 15 0 65
- 0 7 94748 2920 42968 259728 0 0 1840 4836 1186 3957 10 7 0 83
- 0 6 94748 3176 43048 257892 0 0 2032 1688 1115 2985 15 5 0 80
- 0 6 94748 3368 43260 252568 0 0 1796 2972 1114 2728 24 11 0 65
- 1 5 94748 3304 43300 252128 0 0 1772 4772 1348 472 5 3 0 92
- 0 4 94748 10216 43312 251660 0 0 724 16340 1390 359 6 5 0 89
- 1 2 94748 10280 43316 251660 0 0 0 18556 1327 254 0 8 0 92
- 0 2 94748 10728 43452 251660 0 0 0 34984 1272 246 0 4 0 96
- 0 2 94748 10984 43492 251660 0 0 0 10404 1289 302 1 4 0 95
- 0 1 94748 6632 43560 252596 0 0 688 672 1357 675 51 7 7 35
- 2 0 94748 8488 43780 253020 0 0 192 5952 1164 711 55 13 0 32
- 0 0 94748 7656 43780 253336 0 0 0 0 1444 636 72 4 24 0
- 0 0 94748 7208 43780 253768 0 0 0 0 1562 733 1 2 97 0
- 0 0 94748 6584 43780 254432 0 0 0 0 1822 1095 1 4 95 0
- 0 0 94748 6008 43788 254980 0 0 0 16 1680 945 1 2 97 0
- 0 1 94748 3320 44168 254488 0 0 0 9328 1310 3934 38 22 10 30
- 0 1 94748 3064 44408 256056 0 0 2696 2804 1462 1364 8 13 0 79
- 0 2 94748 3000 44464 256220 0 0 144 3808 1664 637 0 3 0 97
- 0 2 94748 3000 44472 256224 0 0 0 3060 1553 516 1 2 0 97
- 0 2 94748 3384 44476 256228 0 0 0 2556 1636 577 0 2 0 98
- 0 1 94748 3128 44512 256260 0 0 4 2088 1673 532 4 2 0 94
- 2 0 94748 3384 44656 256264 0 0 56 1032 1084 617 42 12 0 46
- 0 0 94748 7480 44680 253944 0 0 76 0 1014 1672 29 35 33 3
- 0 1 94748 5496 44684 255324 0 0 1376 0 1238 375 4 8 66 22
- 1 0 94748 4536 44700 256380 0 0 1048 0 1197 834 49 31 0 20
- 1 0 94748 4792 44672 255588 0 0 8 0 1004 878 67 33 0 0
- 1 0 94748 4152 44652 256784 0 0 2820 316 1229 734 41 23 0 36
- 2 0 94748 4456 44652 256772 0 0 4 0 1003 1926 35 59 0 6
- 3 0 94748 4648 44604 255984 0 0 12 0 1005 1316 54 44 0 2
- 2 0 94748 6056 44600 253728 0 0 0 0 1002 1200 49 51 0 0
- 1 0 94748 3624 44616 253760 0 0 12 0 1005 789 59 40 0 1
- 4 0 94748 5736 44644 253804 0 0 44 348 1027 846 54 43 0 3
- 2 0 94748 5912 44648 253816 0 0 0 0 1002 795 60 40 0 0
- 2 0 94748 5400 44652 253960 0 0 0 0 1002 1064 62 38 0 0
- 1 0 94748 8664 44604 251684 0 0 24 0 1005 541 81 17 0 2
- 0 0 94748 7488 44620 251832 0 0 56 0 1009 849 23 18 56 3
- 0 0 94748 7488 44632 251832 0 0 0 560 1038 165 1 1 98 0
- 0 0 94748 7616 44632 251832 0 0 0 0 1002 135 0 0 100 0
- 0 0 94748 7872 44632 251832 0 0 0 0 1002 139 0 0 100 0
- 0 0 94748 8064 44632 251832 0 0 0 0 1002 133 0 1 99 0
- 0 0 94748 8064 44632 251832 0 0 0 0 1002 132 0 0 100 0
- 1 0 94748 9272 44692 251904 0 0 0 108 1008 695 38 19 43 0
- 1 0 94748 7480 44704 252072 0 0 140 0 1027 557 70 24 0 7
- 2 0 94748 119800 44764 145928 0 0 56 0 1016 1066 36 58 0 6
- 0 1 94748 161672 45036 111336 0 0 736 4872 1119 1329 31 28 0 41
- 1 0 94748 125576 45976 143868 0 0 7012 0 1091 15331 54 39 0 7
- 2 0 94748 79816 46852 186060 0 0 0 23772 1204 19502 60 40 0 0
- 1 1 94748 33560 49044 225612 0 0 0 36656 1375 16009 53 47 0 0
- 2 2 94748 2520 50128 255064 0 0 44 24628 1349 17300 61 39 0 0
- 0 4 94748 3376 47928 256028 0 0 1792 11036 1187 4272 12 11 0 77
- 0 4 94748 3504 47936 255996 0 0 768 19228 1284 1819 4 4 0 92
- 0 4 94748 2944 47996 256564 0 0 1792 10904 1140 2959 10 5 0 85
- 0 4 94748 2816 48016 256632 0 0 1920 11584 1146 2782 11 5 0 84
- 1 4 94748 6224 48204 249144 0 0 1652 6952 1279 1543 5 13 0 82
- 0 3 94748 138064 48376 108228 0 0 32 18140 1439 3318 9 55 0 36
+ 0 3 39496 189408 43488 58600 0 1 85 224 14 486 12 2 84 2
+ 2 0 39496 187440 43572 59168 0 0 636 4 1114 420 24 4 42 30
+ 0 0 39496 186736 43576 59752 0 0 28 0 1707 69726 10 13 77 0
+ 0 0 39496 185648 43576 60800 0 0 0 0 2308 1748 1 3 96 0
+ 1 0 39496 181488 43584 61532 0 0 140 0 1804 1673 33 5 55 7
+ 1 0 39496 176624 43640 66224 0 0 32 68 1043 304 90 4 0 6
+ 3 0 39496 174064 43656 68504 0 0 16 8512 1207 808 94 3 0 3
+ 2 0 39496 170224 43660 72416 0 0 0 0 1039 330 96 4 0 0
+ 2 0 39496 175856 43660 70476 0 0 8 0 1012 677 75 24 0 1
+ 1 0 39496 175856 43660 70476 0 0 0 0 1015 459 79 21 0 0
+ 2 0 39496 175472 43688 70536 0 0 80 24 1035 516 81 19 0 0
+ 2 0 39496 175472 43700 70536 0 0 0 5032 1046 371 87 13 0 0
+ 2 0 39496 175472 43700 70536 0 0 0 0 1006 331 84 16 0 0
+ 1 0 39496 175472 43700 70536 0 0 0 0 1002 317 81 19 0 0
+ 1 0 39496 175472 43704 70540 0 0 8 0 1010 338 88 12 0 0
+ 3 0 39496 175200 43712 70560 0 0 0 24 1015 1100 70 30 0 0
+ 1 0 39496 175456 43712 70568 0 0 0 0 1008 396 85 15 0 0
+ 1 0 39496 175456 43712 70568 0 0 0 0 1002 282 83 17 0 0
+ 1 0 39496 175456 43712 70568 0 0 0 0 1002 264 86 14 0 0
+ 2 0 39496 175456 43720 70568 0 0 0 60 1022 305 87 13 0 0
+ 2 1 39496 175072 43736 70808 0 0 0 36 1359 571 76 13 12 0
+ 0 0 39496 174560 43744 71500 0 0 0 0 1870 1174 14 3 83 0
+ 0 0 39496 174176 43752 71928 0 0 0 0 1602 890 7 7 86 0
+ 0 0 39496 173344 43752 72780 0 0 0 0 2123 1709 7 8 85 0
+ 0 0 39496 173024 43776 73068 0 0 20 0 1462 889 9 11 78 2
+ 0 0 39496 172192 43800 73840 0 0 0 3140 2051 1386 19 10 69 3
+ 1 0 39496 171104 43856 74536 92 0 524 0 1530 940 33 6 49 12
+ 0 0 39496 170208 43856 75416 0 0 0 40 1962 915 27 5 68 0
+ 2 0 39496 169440 43864 76204 0 0 0 0 2026 1322 36 7 57 0
+ 0 0 39496 169120 43864 76476 0 0 0 0 1369 554 0 0 100 0
+ 0 0 39496 168224 43880 77368 0 0 0 2720 2143 1453 1 4 90 5
+ 0 0 39496 167456 43884 78164 0 0 0 0 2057 1352 9 9 82 0
+ 0 0 39496 167264 43892 78324 0 0 0 180 1287 494 7 7 86 0
+ 0 0 39496 166816 43904 78776 0 0 0 0 1632 1070 16 14 70 0
+ 0 0 39496 166752 43908 78896 0 0 0 0 1177 560 41 2 57 0
+ 0 0 39496 166624 43924 79160 0 0 0 2664 1404 527 1 0 95 4
+ 0 0 39496 165856 43928 79960 0 0 0 0 2044 1715 9 10 81 0
+ 0 0 39496 165216 43936 80476 0 0 0 0 1790 1280 17 14 68 0
+ 2 0 39496 164256 43956 81192 0 0 16 0 1949 1368 3 5 90 2
+ 0 0 39496 164064 43968 81556 0 0 4 0 1506 869 8 8 84 0
+ 0 0 39496 163488 43992 82120 0 0 8 24 1807 1367 16 11 72 1
+ 2 0 39496 162848 44016 82512 0 0 28 3032 1553 1076 37 12 49 3
+ 3 0 39496 161760 44028 83584 0 0 0 0 2373 1844 14 12 74 0
+ 0 0 39496 161760 44028 83668 0 0 0 0 1151 441 25 10 65 0
+ 0 0 39496 161504 44032 83888 0 0 0 0 1301 519 17 4 79 0
+ 0 0 39496 161440 44044 83984 0 0 0 24 1162 416 12 8 80 0
+ 0 0 39496 160992 44056 84412 0 0 0 1976 1633 896 20 13 65 2
+ 0 0 39496 160992 44056 84412 0 0 0 0 1002 135 0 0 100 0
+ 0 0 39496 160928 44056 84436 0 0 0 0 1293 367 23 7 70 0
+ 2 0 39496 160608 44060 84772 0 0 0 0 1563 931 57 7 36 0
+ 0 0 39496 160416 44068 84924 0 0 0 36 1128 876 37 2 61 0
+ 0 0 39496 160096 44076 85240 0 0 0 952 1426 882 10 3 86 1
+ 0 0 39496 159712 44076 85628 0 0 0 0 1532 931 0 4 96 0
+ 0 0 39496 158560 44076 86780 0 0 0 0 2454 1984 9 7 84 0
+ 0 0 39496 157872 44076 87500 0 0 0 0 1902 1124 1 1 98 0
+ 0 0 39496 157744 44084 87612 0 0 0 32 1160 423 11 1 88 0
+ 0 0 39496 157296 44092 88012 0 0 0 3044 1468 526 53 2 40 5
+ 0 0 39496 156912 44092 88436 0 0 0 0 1528 735 1 1 98 0
+ 0 0 39496 156144 44100 89244 0 0 0 0 2029 1344 11 8 81 0
+ 0 0 39496 155952 44104 89392 0 0 0 0 1236 581 24 12 64 0
+ 2 0 39496 155440 44120 89944 0 0 0 24 1750 1034 22 10 68 0
+ 0 0 39496 154800 44128 90524 0 0 0 0 1777 1154 30 14 56 0
+ 1 0 39496 154480 44140 90848 0 0 0 2784 1516 814 35 15 44 6
+ 0 0 39496 154160 44144 91176 0 0 0 0 1467 872 29 16 55 0
+ 0 0 39496 153968 44152 91304 0 0 0 0 1199 456 19 8 73 0
+ 0 0 39496 153776 44168 91508 0 0 0 24 1306 607 20 8 72 0
+ 1 0 39496 153584 44180 91752 0 0 0 0 1364 644 24 12 64 0
+ 0 0 39496 153008 44192 92276 0 0 0 1368 1785 1168 34 16 49 1
+ 0 0 39496 152560 44192 92708 0 0 0 0 1531 668 0 2 98 0
+ 0 0 39496 152304 44192 92920 0 0 0 0 1257 447 0 1 99 0
+ 0 0 39496 151936 44200 93332 0 0 0 32 1530 747 0 2 98 0
+ 0 0 39496 151152 44204 94080 0 0 0 0 1969 1329 22 11 67 0
+ 1 0 39496 151152 44212 94160 0 0 0 2392 1176 508 37 14 46 4
+ 1 0 39496 151088 44212 94200 0 0 0 0 1088 342 18 8 74 0
+ 0 0 39496 151024 44212 94228 0 0 0 0 1060 293 18 8 74 0
+ 3 0 39496 150640 44224 94516 0 0 0 24 1390 663 12 6 82 0
+ 0 0 39496 150576 44228 94640 0 0 0 0 1197 515 28 8 64 0
+ 0 0 39496 150576 44236 94680 0 0 0 592 1078 280 11 5 83 1
+ 0 0 39496 150000 44240 95244 0 0 0 0 1759 913 13 5 82 0
+ 1 0 39496 149552 44248 95704 0 0 0 0 1631 828 21 8 71 0
+ 0 0 39496 149168 44264 96060 0 0 0 24 1498 852 26 11 63 0
+ 1 0 39496 148528 44272 96688 0 0 0 0 1838 1120 29 12 59 0
+ 0 0 39496 148144 44280 97000 0 0 0 2384 1483 864 44 16 40 0
+ 0 0 39496 147376 44288 97752 0 0 0 0 2012 1207 25 12 63 0
+ 0 0 39496 147312 44292 97832 0 0 0 0 1125 316 13 4 83 0
+ 0 0 39496 146288 44308 98804 0 0 0 48 2253 1547 14 7 79 0
+ 2 0 39496 146096 44312 99024 0 0 0 0 1328 665 39 14 47 0
+ 0 0 39496 145840 44320 99216 0 0 0 2276 1346 531 26 5 65 5
+ 0 0 39496 145904 44320 99220 0 0 0 0 1019 209 12 6 82 0
+ 0 0 39496 145648 44332 99500 0 0 0 0 1440 688 50 16 34 0
+ 0 0 39496 145328 44344 99784 0 0 0 24 1368 507 0 0 100 0
+ 2 0 39496 145072 44348 100084 0 0 0 0 1410 620 16 7 77 0
+ 1 0 39496 145008 44352 100140 0 0 0 0 1090 297 24 8 68 0
+ 0 0 39496 144560 44372 100532 0 0 0 992 1674 991 49 15 35 0
+ 0 0 39496 144112 44376 101004 0 0 0 0 1556 813 15 7 78 0
+ 0 0 39496 143728 44396 101352 0 0 0 24 1530 811 45 15 40 0
+ 3 0 39496 142576 44404 102032 0 0 0 0 1887 1377 51 14 35 0
+ 2 0 39496 125032 45752 117760 0 0 276 16 1017 10866 43 50 0 7
+ 3 1 39496 102056 46552 138124 0 0 4 20520 1326 12922 39 40 0 21
+ 0 2 39496 92968 46900 146116 0 0 24 23188 1224 5511 18 28 0 54
+ 0 2 39496 93288 46932 146116 0 0 0 7092 1534 197 0 2 0 98
+ 0 1 39496 89560 47168 146248 0 0 104 1988 1498 1882 7 25 0 69
+ 1 0 39496 85576 47676 148572 0 0 4 7084 1184 4385 41 25 0 34
+ 1 0 39496 78152 48008 154088 0 0 0 16184 1159 6851 21 35 0 44
+ 3 0 39496 86472 48376 146728 0 0 4 6564 1170 2474 56 27 0 17
+ 0 1 39496 84360 48920 147168 0 0 4 13240 1253 6633 27 31 0 42
+ 2 0 39496 82440 49816 147876 0 0 0 13316 1364 5640 37 34 0 30
+ 0 1 39496 66248 50164 162668 0 0 0 17528 1178 8988 41 40 0 19
+ 2 0 39496 79880 50552 149364 0 0 0 8268 1349 2552 30 20 0 50
+ 0 1 39496 77768 51188 150424 0 0 0 14888 1409 5879 25 33 0 43
+ 0 1 39496 80968 51748 148480 0 0 64 9856 1413 3492 30 21 0 49
+ 2 0 39496 80008 52516 148456 0 0 0 6016 1447 1902 21 25 0 54
+ 1 0 39496 78720 52904 148456 0 0 0 3108 1257 1876 52 28 0 20
+ 2 0 39496 79168 52904 148456 0 0 0 0 1002 2117 38 62 0 0
+ 0 1 39496 79488 53268 148236 0 0 0 3576 1251 1830 41 38 0 21
+ 0 0 39496 79104 53576 148164 0 0 0 2624 1175 993 31 10 38 21
+ 0 0 39496 79104 53584 148164 0 0 0 24 1009 140 0 0 100 0
+ 0 0 39496 79104 53584 148164 0 0 0 0 1002 126 1 0 99 0
+ 1 0 39496 78968 53728 148108 0 0 0 1384 1082 785 13 14 62 11
+ 2 0 39496 65400 54356 155812 0 0 0 11524 1316 5549 33 27 0 40
+ 0 1 39496 59192 55164 163604 0 0 0 12644 1406 6707 27 32 0 42
+ 0 1 39496 52024 55760 169908 0 0 0 10048 1323 5000 30 25 0 45
+ 2 0 39496 45880 56248 175388 0 0 0 8712 1274 4789 41 20 0 39
+ 2 0 39496 40312 56804 179820 0 0 100 7588 1283 3958 34 20 0 45
+ 6 0 39496 36472 57388 182620 0 0 40 7356 1328 2737 27 19 0 54
+ 0 1 39496 29176 57776 191140 0 0 12 13124 1386 5710 27 23 0 49
+ 2 0 39496 28872 58080 191192 0 0 0 3564 1264 1177 64 16 0 20
+ 2 0 39496 25016 58236 191340 0 0 32 1620 1157 977 73 16 0 11
+ 3 0 39496 28088 58544 191348 0 0 0 3412 1224 1108 62 19 0 19
+ 2 0 39496 23928 58980 191440 0 0 0 3776 1371 1309 55 15 0 30
+ 1 0 39496 23416 59016 191688 0 0 180 332 1049 949 85 14 1 0
+ 2 0 39496 22328 59172 191808 0 0 0 1044 1059 911 61 34 0 5
+ 2 0 39496 22136 59192 191828 0 0 0 1848 1371 1151 54 46 0 0
+ 1 0 39496 22008 59228 191868 0 0 0 292 1020 1042 53 45 0 2
+ 3 0 39496 26168 59316 192036 0 0 0 920 1049 1071 48 46 0 6
+ 3 0 39496 25464 59600 192016 0 0 0 2940 1146 1228 53 26 0 21
+ 1 0 39496 24232 59920 192012 0 0 0 2808 1161 883 64 16 0 20
+ 2 0 39496 20776 60032 192116 0 0 0 1428 1073 1455 80 12 0 8
+ 0 0 39496 26152 60184 192612 0 0 0 2372 1331 1080 64 18 9 9
+ 0 0 39496 26024 60184 192704 0 0 0 0 1137 274 8 0 92 0
+ 0 0 39496 24872 60184 193800 0 0 0 0 2361 1769 10 4 86 0
+ 0 0 39496 24616 60192 194092 0 0 0 36 1372 618 9 2 89 0
+ 1 0 39496 13696 60212 204596 0 0 0 0 2653 6562 40 14 47 0
+ 0 1 39496 14336 60216 203836 0 0 0 11528 1090 1305 16 2 60 22
+ 1 0 39496 25088 60260 193624 0 0 4 632 1146 437 16 2 76 6
+ 0 1 39496 16192 60300 202516 0 0 12 9560 1072 243 72 7 0 21
+ 0 0 39496 14992 60376 202512 0 0 0 5388 1108 291 73 8 0 19
+ 0 0 39496 14800 60380 202692 0 0 0 0 1238 417 9 1 90 0
+ 0 0 39496 13392 60380 204144 0 0 0 0 2789 2204 11 5 84 0
+ 0 0 39496 11984 60384 205512 0 0 0 0 2708 2149 12 6 82 0
+ 0 0 39496 11744 60384 205752 0 0 0 0 1316 518 9 1 90 0
+ 0 0 39496 11424 60400 206056 0 0 0 3656 1437 661 10 1 82 7
+ 0 0 39496 11104 60400 206312 0 0 0 0 1320 538 8 4 88 0
+ 0 0 39496 10528 60404 206876 0 0 0 0 1700 963 9 2 89 0
+ 0 0 39496 9520 60404 207860 0 0 0 0 2199 1425 10 5 85 0
+ 0 0 39496 8368 60412 209032 0 0 0 0 2415 1797 10 6 84 0
+ 0 1 39496 7472 60420 209928 0 0 0 3924 2140 1296 9 5 84 2
+ 0 0 39496 6768 60428 210628 0 0 0 60 1893 970 10 3 80 7
+ 0 0 39496 6400 60428 211048 0 0 0 0 1525 778 9 2 89 0
+ 0 0 39496 4928 60436 212440 0 0 0 0 2696 2157 11 6 83 0
+ 0 0 39496 3888 59708 214848 0 0 0 0 3953 3490 14 8 78 0
+ 0 0 39496 3708 59716 215036 0 0 0 24 1246 466 9 2 89 0
+ 0 0 39496 3960 59604 216232 0 0 0 6068 2552 1805 10 5 71 14
+ 0 0 39496 3708 59580 217996 0 0 0 0 3178 2602 11 8 81 0
+ 0 0 39496 3324 59580 218372 0 0 0 0 1488 685 9 2 89 0
+ 0 0 39496 3384 59548 219116 0 0 0 0 1924 1254 10 3 87 0
+ 0 0 39496 3448 59472 220304 0 0 0 24 2480 1888 11 5 84 0
+ 1 0 39496 3120 59460 220412 0 0 0 5220 1331 346 12 3 70 15
+ 2 0 39496 3288 56668 225312 0 0 0 10384 1147 7799 51 20 0 29
+ 2 0 39496 3224 55176 225752 0 0 4 11964 1197 9997 34 29 0 38
+ 1 0 39496 2904 52956 227520 0 0 12 14348 1247 6152 26 23 0 51
+ 1 0 39496 3800 49180 228820 0 0 8 12680 1182 12440 34 34 0 33
+ 0 1 40000 4056 43428 234248 0 504 124 14796 1292 6109 24 19 0 57
+ 1 0 40000 4888 43960 235024 0 0 140 7364 1272 1288 22 12 0 66
+ 1 0 40000 54500 44304 186644 0 0 736 624 1135 784 22 6 0 72
+ 2 0 40000 52644 44388 188352 0 0 720 0 1103 2952 55 5 0 40
+ 2 0 40000 50404 44432 190548 0 0 968 2364 1196 2020 55 4 0 41
+ 1 0 40000 47140 44472 193704 0 0 1204 0 1086 2492 82 4 0 14
+ 1 0 40000 44404 44540 196412 0 0 1160 0 1098 2315 69 4 0 27
+ 1 0 40000 42036 44568 198824 0 0 444 280 1090 2891 88 4 0 8
+ 1 0 40000 38644 44588 202196 0 0 1052 0 1062 2773 94 3 0 3
+ 1 1 40000 36404 44592 204404 0 0 0 10008 1081 3557 95 5 0 0
+ 1 0 40000 33980 44612 206864 0 0 456 56 1075 3118 89 5 0 6
+ 1 0 40000 31676 44616 209176 0 0 168 8 1014 2977 96 4 0 0
+ 1 0 40000 28988 44648 211780 0 0 544 0 1079 3234 77 8 0 15
+ 1 0 40000 21756 44688 218972 0 0 5256 0 1154 5909 85 7 0 8
+ 1 1 40000 18812 44700 221712 0 0 1184 9912 1282 4385 67 7 0 26
+ 0 2 40000 16764 44708 223908 0 0 1608 0 1385 2158 24 4 0 72
+ 1 0 40000 13180 44728 227488 0 0 1012 44 1258 2532 46 6 0 47
+ 0 1 40000 7420 44780 233232 0 0 3220 0 1402 3306 60 5 0 35
+ 2 0 40000 3248 44768 237424 0 0 2148 0 1343 2475 50 8 0 42
+ 0 2 40000 3196 44792 237256 0 0 1840 10972 1319 2029 43 6 0 51
+ 1 0 40000 3232 44808 237336 0 0 768 48 1184 2013 45 4 0 51
+ 0 1 40000 3232 44808 237364 0 0 1368 0 1267 1843 33 3 0 64
+ 0 1 40448 2848 44792 238212 0 448 1452 480 1314 3007 48 5 0 48
+ 0 1 40764 2784 43976 239496 0 308 3572 316 1903 3240 18 7 0 75
+ 0 2 40764 2864 43916 239516 0 0 1628 4096 1297 2128 44 3 0 53
+ 1 0 40764 3632 43924 238708 0 0 1088 4 1102 2337 59 4 0 37
+ 0 1 40764 3120 43912 239268 0 0 1664 0 1096 2592 71 3 0 26
+ 0 1 40764 3120 43944 239288 0 0 1464 4 1143 2141 54 5 0 41
+ 0 1 40764 2864 43960 239456 0 0 1572 0 1136 2193 56 3 0 41
+ 0 2 40764 2928 43984 239324 0 0 1360 6252 1199 1901 48 4 0 47
+ 1 0 40764 3312 44000 238792 0 0 1104 2020 1493 1802 45 7 0 49
+ 0 1 40764 2864 44016 239200 0 0 956 0 1190 1733 52 2 0 46
+ 0 1 40764 2992 44036 239072 0 0 696 0 1070 2363 73 4 0 23
+ 1 0 40764 2992 44044 239040 0 0 1172 0 1124 2042 60 2 0 38
+ 0 2 40764 3504 44016 238456 0 0 588 6084 1145 1256 26 4 0 70
+ 0 1 40764 2932 44028 239472 0 0 648 184 1195 1067 20 2 0 78
+ 1 0 40764 2828 44048 239552 0 0 596 0 1098 2008 45 2 0 53
+ 1 0 40764 3056 44048 239252 0 0 0 0 1002 4453 95 5 0 0
+ 1 0 40764 3632 44076 238712 0 0 40 0 1013 2620 89 4 0 7
+ 1 0 40764 3504 44072 239020 0 0 0 6732 1060 2710 95 5 0 0
+ 2 1 40764 35760 44832 207396 0 0 944 4 1208 1544 27 14 0 59
+ 0 1 40764 97772 45388 148804 0 0 556 0 1143 847 12 26 0 62
+ 0 1 40764 164140 45780 92112 0 0 1056 2820 1136 606 12 22 0 66
+ 1 0 40764 158124 45856 97276 0 0 5204 0 1167 422 31 1 0 68
+ 0 2 40764 153196 46012 102924 0 0 5392 1560 1624 706 20 5 15 60
+ 0 1 40764 144492 46964 107160 0 0 1968 12 1098 3075 22 28 0 50
+ 2 0 40764 132844 47736 117400 0 0 3068 0 1162 3899 22 9 0 69
+ 2 0 40764 111276 48336 137932 0 0 6172 0 1122 7585 34 16 0 50
+ 2 0 40764 79084 49092 168288 0 0 7752 0 1113 11305 48 20 0 32
+ 0 2 40764 63860 49428 182472 0 0 2760 18084 1155 5914 27 10 0 63
+ 0 4 40764 58868 49708 186496 0 0 780 10512 1144 1573 13 7 0 80
+ 0 4 40764 52532 49912 192048 0 0 980 12512 1143 2174 15 6 0 79
+ 0 4 40764 47348 50168 196708 0 0 764 8928 1149 2087 12 7 0 81
+ 0 4 40764 44788 50624 198384 0 0 268 6984 1112 922 10 3 0 87
+ 1 1 40764 38444 51168 203252 0 0 92 2044 1128 2203 16 12 0 73
+ 1 4 40764 19884 52448 219128 0 0 36 19296 1176 7511 35 20 0 45
+ 2 1 40764 3756 53172 232604 0 0 36 9516 1195 5369 24 21 0 56
+ 0 2 40764 3688 53112 232620 0 8 64 3188 1128 462 9 3 0 88
+ 2 0 40764 3048 52244 235752 0 0 6916 368 1141 10339 46 22 0 32
+ 0 1 40764 3688 52204 234832 0 0 2688 8192 1152 3585 23 9 0 69
+ 0 2 40764 3112 52240 235128 0 0 1408 16548 1119 1703 14 5 0 81
+ 0 2 40764 3120 52240 235128 0 0 0 19320 1207 237 9 2 0 89
+ 0 2 40764 3184 52240 235128 0 0 0 10824 1187 225 8 2 0 90
+ 2 0 40764 3376 52496 235340 0 0 2308 4796 1154 3307 19 11 0 70
+ 0 1 40764 3504 52968 234692 0 0 7676 8 1087 12849 51 31 0 18
+ 0 2 40764 3536 53048 233568 0 0 2084 22312 1223 472 11 6 0 83
+ 0 2 40764 3152 53048 231836 0 0 1196 10296 1316 395 9 3 0 88
+ 1 0 40764 3792 53128 228272 0 0 108 6812 1224 342 32 6 0 62
+ 1 0 40764 3920 53128 228272 0 0 0 0 1002 215 97 3 0 0
+ 0 0 40764 3536 53144 227988 0 0 260 40 1449 589 36 2 48 15
+ 0 1 40764 3792 53152 227712 0 0 0 2244 2786 1951 10 7 43 40
+ 0 1 40764 2960 53160 228548 0 0 0 3240 2796 1828 11 4 0 85
+ 0 2 40764 3088 53160 228640 0 0 0 3752 1533 492 8 3 0 89
+ 1 2 40764 3936 53124 226952 0 0 560 692 1244 374 12 2 0 86
+ 0 2 40764 5584 53008 224264 0 0 444 908 1270 482 30 5 0 65
+ 0 1 40764 4560 53040 225464 0 0 0 2936 1493 1156 11 3 0 86
+ 0 1 40764 3472 53056 226312 0 0 32 6792 1240 3477 20 12 0 68
+ 0 1 40764 3280 53120 226424 0 0 0 1248 1102 316 9 3 0 88
+ 0 1 40764 3792 53356 227332 0 0 1404 3400 1340 1548 16 11 0 73
+ 1 0 40764 5008 53612 227148 0 0 1456 6748 1398 989 40 10 0 50
+ 3 0 40764 5584 53540 225140 0 0 312 1332 1180 751 50 13 4 33
+ 3 0 40764 3512 53376 226600 0 0 100 0 1020 2636 62 30 0 8
+ 0 0 40764 7664 53320 224048 0 0 116 0 1020 662 26 24 42 8
+ 0 1 40764 4144 53324 226552 0 0 2496 0 1187 411 14 6 48 32
+ 1 0 40764 4976 53232 226556 0 0 752 0 1135 668 38 22 0 41
+ 2 0 40764 4840 53256 226752 0 0 204 2820 1082 878 49 24 0 27
+ 1 0 40764 4456 53168 226056 0 0 68 0 1013 867 63 33 0 4
+ 4 0 40764 4840 53096 226588 0 0 2200 0 1392 703 35 18 0 47
+ 1 0 40764 4640 53100 226592 0 0 4 0 1007 1694 47 52 0 1
+ 4 0 40764 4192 53104 226596 0 0 0 0 1002 1552 52 48 0 0
+ 3 1 40764 3592 52940 224336 0 0 696 220 1107 1196 55 38 0 7
+ 3 0 40764 11776 52852 218624 0 0 864 60 1072 1000 59 38 0 3
+ 1 0 40764 8960 52860 218712 0 0 24 0 1007 803 59 37 0 4
+ 3 0 40764 9984 52876 218764 0 0 80 0 1016 805 54 38 0 8
+ 2 0 40764 11648 52876 218752 0 0 0 0 1006 869 57 43 0 0
+ 4 0 40764 10368 52892 218832 0 0 0 748 1168 973 58 42 0 0
+ 0 1 40764 9536 52896 218932 0 0 28 0 1007 939 68 29 0 3
+ 3 0 40764 10880 52912 219096 0 0 24 0 1010 384 83 12 0 5
+ 0 0 40764 10672 52936 219236 0 0 48 0 1015 776 23 15 57 5
+ 0 0 40764 10672 52936 219236 0 0 0 0 1008 195 8 0 92 0
+ 0 0 40764 10864 52948 219240 0 0 0 488 1041 209 7 1 91 1
+ 0 0 40764 11056 52952 219240 0 0 0 20 1010 181 8 0 92 0
+ 0 0 40764 11248 52952 219240 0 0 0 0 1005 199 7 0 93 0
+ 0 0 40764 11312 52952 219240 0 0 0 0 1005 174 8 1 91 0
+ 3 0 40764 11208 53004 219300 0 0 0 0 1008 2248 46 20 34 0
+ 1 0 40764 11784 53040 219468 0 0 100 304 1036 2117 68 20 0 12
+ 0 2 40764 11592 53044 219452 0 0 0 2064 1300 2797 44 18 0 37
+ 0 2 40764 79656 53216 156124 0 0 188 1900 1289 1339 30 37 0 33
+ 1 2 40764 81000 53724 154296 0 0 508 0 1148 645 10 3 0 87
+ 0 1 40764 108952 54228 126892 0 0 504 0 1134 737 13 14 0 73
+ 0 2 40764 115032 54820 121260 0 0 484 6412 1182 708 10 9 0 81
+ 1 0 40764 143424 54972 98588 0 0 296 0 1064 571 42 19 0 38
+ 0 1 40764 134976 55040 104128 0 0 5196 500 1628 918 25 7 40 28
+ 2 0 40764 135168 55188 106448 0 0 496 0 1069 1552 44 15 0 41
+ 1 0 40764 131136 55328 110264 0 0 1388 16 1030 3493 54 38 0 8
+ 0 2 40764 118272 55836 119776 0 0 2560 11736 1237 5102 25 32 0 44
+ 1 0 40764 100416 56060 137600 0 0 4992 3472 1142 6589 34 11 0 55
+ 1 0 40764 56272 56528 179712 0 0 11140 324 1121 15265 60 31 0 9
+ 0 1 40764 37840 56864 196388 0 0 1924 16384 1190 6559 26 16 0 58
+ 1 0 40764 9440 58480 220084 0 0 576 20480 1215 9564 41 32 0 27
+ 0 4 40764 3240 54332 228716 0 0 216 17828 1144 6473 28 22 0 50
+ 0 4 40764 3256 54332 228716 0 0 0 15700 1187 261 9 2 0 89
+ 0 4 40764 4024 54236 227424 0 0 1280 11292 1157 2355 16 7 0 77
+ 1 3 40764 3064 53420 231864 0 0 2560 7732 1152 3992 22 7 0 71
+ 0 4 40764 4088 46424 237080 0 0 3200 8412 1147 4990 27 11 0 62
+ 0 2 40764 3320 46520 237676 0 0 3456 0 1124 4427 23 15 0 62
+ 0 3 40764 3832 46904 237116 0 0 3076 22948 1157 4472 27 14 0 59
+ 0 4 40764 3448 46992 237440 0 0 2376 8164 1139 5087 23 8 0 69
+ 0 4 40764 3000 47076 237728 0 0 3200 10196 1107 4820 26 9 0 65
+ 0 2 40764 3528 47264 236732 0 0 1564 2444 1148 2549 25 13 0 62
+ 0 2 40764 2928 47312 236888 0 0 1868 2592 1285 505 12 8 0 80
+ 0 1 40764 3696 47352 236888 0 0 0 24060 1230 234 8 3 0 89
+ 1 0 40764 3440 47376 236060 0 0 48 4860 1161 251 60 3 0 37
+ 0 1 40764 3824 47376 236132 0 0 68 0 1007 218 94 4 0 2
+ 0 0 40764 2992 47388 236752 0 0 164 0 1641 779 10 3 80 7
+ 0 0 40764 2864 47388 236836 0 0 0 0 2197 1547 10 4 86 0
+ 0 0 40764 3248 47396 236376 0 0 0 0 2153 1379 10 4 86 0
+ 1 0 40764 4080 47408 234636 0 0 560 2456 1158 272 13 2 63 22
+ 0 1 40764 4208 47788 232232 0 0 464 7476 1240 4285 44 18 0 37
+ 0 1 40764 4784 48104 232980 0 0 956 6264 2558 1535 14 7 0 79
+ 0 1 40764 4208 48300 233592 0 0 1892 1276 1393 888 15 8 0 77
+ 0 1 40764 6384 48452 229532 0 0 0 6344 1206 598 67 13 6 14
+ 1 0 40764 5408 48552 231936 0 0 208 448 1065 1797 58 21 0 21
+ 0 0 40764 8024 48584 229828 0 0 116 0 1021 1696 40 37 19 4
+ 3 1 40764 7832 48632 229904 0 0 124 2176 1365 537 13 7 20 60
+ 0 2 40764 5464 48632 231676 0 0 1768 684 1276 398 11 1 0 88
+ 2 1 40764 4888 48632 232852 0 0 1164 2012 1566 572 18 6 0 76
+ 0 5 40764 4888 48632 232852 0 0 8 3312 1251 367 11 4 0 85
+ 0 3 40764 3992 48636 232856 0 0 12 2320 1490 649 14 8 0 78
+ 4 1 40764 4888 48656 232328 0 0 240 1296 1287 681 24 11 0 65
+ 1 1 40764 5200 48664 232532 0 0 204 1224 1260 895 45 24 0 31
+ 1 0 40764 4432 48668 231316 0 0 68 404 1217 894 62 31 0 7
+ 4 0 40764 4688 48692 233504 0 0 2184 192 1390 681 33 19 0 48
+ 4 0 40764 4360 48700 233512 0 0 8 0 1004 1433 47 49 0 4
+ 2 0 40764 4616 48704 233512 0 0 0 0 1003 1818 49 51 0 0
+ 3 0 40764 4040 48624 232956 0 0 8 0 1006 1005 57 41 0 2
+ 2 0 40764 6600 48356 230748 0 0 36 0 1008 1031 51 47 0 2
+ 4 0 40764 6152 48384 230772 0 0 24 368 1021 749 59 39 0 2
+ 3 0 40764 6408 48392 230856 0 0 80 0 1016 798 54 38 0 8
+ 1 0 40764 4744 48392 230884 0 0 0 0 1003 836 58 42 0 0
+ 2 0 40764 4272 48396 230956 0 0 0 0 1003 918 67 33 0 0
+ 1 0 40764 7664 48400 229724 0 0 52 0 1013 923 66 28 0 6
+ 3 0 40764 8872 48320 229164 0 0 8 388 1027 881 78 20 0 2
+ 0 0 40764 8208 48320 229188 0 0 24 0 1006 270 9 2 89 0
+ 0 0 40764 8208 48320 229192 0 0 0 0 1004 186 8 0 92 0
+ 0 0 40764 8272 48320 229192 0 0 0 0 1004 180 7 0 93 0
+ 0 0 40764 8464 48320 229192 0 0 0 0 1003 188 7 1 92 0
+ 0 0 40764 8656 48332 229196 0 0 0 364 1036 189 8 0 91 1
+ 0 0 40764 8672 48332 229196 0 0 0 0 1002 162 8 0 92 0
+ 1 0 40764 8360 48416 229280 0 0 0 0 1004 2702 71 27 2 0
+ 3 0 40764 8680 48424 229352 0 0 56 0 1011 3490 71 23 0 6
+ 0 1 40764 76296 48456 166388 0 0 60 0 1019 1751 48 42 0 9
+ 1 0 40764 120016 48960 123584 0 0 440 3652 1147 2282 14 26 0 60
+ 2 0 40764 147732 49256 102564 0 0 1448 508 1047 2668 36 39 0 25
+ 1 0 40764 131868 49860 115896 0 0 3736 6260 1145 5705 33 26 0 42
+ 1 0 40764 83420 50624 162300 0 0 12288 0 1102 16813 70 30 0 0
+ 0 1 40764 63292 50960 180956 0 0 3328 12624 1168 8611 28 20 0 52
+ 0 1 40764 56444 51116 187108 0 0 1044 8192 1154 2237 15 8 0 77
+ 1 0 40764 34956 51564 205636 0 0 848 16384 1176 7200 30 28 0 42
+ 2 3 40764 15244 52340 222232 0 0 4 23812 1175 7302 34 20 0 45
+ 0 4 40764 3568 50752 233748 0 0 24 12824 1139 4370 24 15 0 62
+ 0 4 40764 3632 50660 233552 0 0 2060 9640 1212 3383 19 6 0 75
+ 0 2 40764 3184 49532 235192 0 0 1792 1228 1163 3773 18 11 0 71
+ 0 2 40764 4348 46820 237676 0 0 1664 8696 1317 2851 18 7 0 75
+ 0 4 40764 3516 45876 239540 0 0 640 6672 1123 1174 14 2 0 84
+ 0 4 40764 3900 43628 240036 0 0 11720 30788 4174 19067 19 11 0 70
+ 1 4 40764 3916 43812 239724 0 0 1828 4668 1148 2665 19 9 0 72
+ 0 2 40764 3412 43812 240000 0 0 1128 8 1300 1138 42 7 0 51
+ 0 2 40764 4612 43888 239472 0 0 860 32844 1278 946 32 5 0 63
+ 1 0 40764 4628 43956 239468 0 0 0 16156 2085 749 24 4 0 73
+ 0 0 40764 3780 43964 239736 0 0 236 40 1110 282 23 1 66 10
+ 0 1 40764 7280 44180 235424 0 0 532 2172 1310 859 36 10 16 37
+ 1 0 40764 7024 44260 235572 0 0 176 5344 1139 436 60 10 0 30
+ 1 0 40764 7536 44260 235572 0 0 0 0 1009 233 98 2 0 0
+ 0 0 40764 5488 44272 237260 0 0 0 0 3118 2520 15 8 77 0
+ 0 1 40764 6896 44292 233492 0 0 12 2528 1855 1160 33 9 50 8
+ 0 1 40764 3888 44632 235600 0 0 0 7328 1177 4500 38 18 0 44
+ 0 1 40764 3376 44988 237408 0 0 2004 4616 1575 1483 9 13 0 79
+ 2 0 40764 4592 45248 236492 0 0 828 1692 1281 1384 45 16 0 39
+ 0 0 40764 8112 45276 233700 0 0 96 0 1059 1985 45 42 7 6
+ 4 0 40764 7920 45308 233792 0 0 120 0 1099 687 48 2 42 8
+ 0 1 40764 4520 45316 236696 0 0 2900 60 1270 539 48 8 0 44
+ 1 0 40764 4712 45332 237040 0 0 348 0 1112 1040 55 19 0 26
+ 1 0 40764 5800 45352 235832 0 0 204 380 1103 930 55 27 0 18
+ 0 1 40764 3688 45360 235948 0 0 100 0 1039 1015 62 33 0 5
+ 2 1 40764 4840 45372 236716 0 0 2212 0 1471 962 39 17 0 44
+ 2 0 40764 4960 45408 236068 0 0 272 4 1043 1702 42 55 0 3
+ 2 0 40764 4768 45416 236076 0 0 0 0 1026 1931 49 51 0 0
+ 3 0 40764 4320 45440 236268 0 0 8 172 1055 1183 65 33 0 2
+ 2 0 40764 4320 45440 236268 0 0 0 0 1124 318 99 1 0 0
+ 2 0 40764 6752 45440 233228 0 0 36 0 1008 898 60 38 0 2
+ 0 2 40764 4448 45448 233260 0 0 24 3532 1765 1069 40 30 0 30
+ 2 1 40764 5216 45468 233376 0 0 80 1264 1323 995 47 36 0 17
+ 1 2 40764 5216 45468 233356 0 0 0 1008 1206 1085 52 48 0 0
+ 2 2 40764 6544 45480 233416 0 0 0 2364 1549 1466 50 50 0 0
+ 2 1 40764 8080 45480 233516 0 0 16 1320 1276 1352 62 31 0 7
+ 3 0 40764 3024 45488 232816 0 0 36 448 1274 684 80 6 0 14
+ 0 0 40764 7792 45496 232164 0 0 32 24 1013 1027 35 22 39 4
+ 0 0 40764 8628 45508 232164 0 0 0 608 1061 434 1 2 97 0
+ 0 0 40764 8628 45508 232164 0 0 0 0 1014 311 14 0 86 0
+ 0 0 40764 8884 45508 232164 0 0 0 0 1016 455 23 1 76 0
+ 0 0 40764 9076 45508 232164 0 0 0 0 1002 144 0 0 100 0
+ 0 0 40764 9076 45508 232164 0 0 0 0 1002 145 1 0 99 0
+ 3 0 40764 8204 45560 232180 0 0 0 28 1007 505 29 12 59 0
+ 2 0 40764 9676 45600 232324 0 0 60 0 1011 709 69 25 0 6
+ 1 0 40764 72748 45932 172596 0 0 352 0 1089 981 45 43 0 12
+ 2 0 40764 155544 46056 98888 0 0 132 6664 1133 928 22 47 0 31
+ 2 0 40764 137816 46980 112912 0 0 4172 0 1098 7356 36 29 0 35
+ 1 1 40764 88424 47792 160568 0 0 12984 0 1121 17350 64 26 0 10
+ 0 1 40764 70312 48172 177628 0 0 3112 11472 1206 6953 20 14 0 66
+ 2 0 40764 44664 49148 199460 0 0 2360 20480 1192 7652 23 26 0 51
+ 6 1 40764 5752 51048 232876 0 0 20 36000 1396 14072 50 41 0 9
+ 0 4 40764 3128 51296 237464 0 0 1260 20736 1377 4620 38 11 0 51
+ 0 4 40764 3576 51484 240620 0 0 2304 12288 1292 3963 27 8 0 65
+ 2 3 40764 2936 47168 245404 0 0 2304 13056 1252 3494 27 9 0 64
+ 0 2 40764 3320 40140 252192 0 0 3336 6528 1201 4692 32 12 0 56
+ 0 1 40764 3572 38360 252868 0 0 4956 7188 1158 9096 48 22 0 30
+ 0 4 40764 3188 38444 252984 32 0 3108 20640 1191 4755 18 7 0 75
+ 0 5 40764 6388 38624 249668 0 0 2056 11892 1236 3104 26 11 0 63
+ 1 2 40764 8820 38692 236260 0 0 832 7220 1400 913 4 10 0 86
+ 1 2 40764 152320 38824 100780 0 0 128 4560 1120 1117 10 52 0 38
+ 0 0 40764 197348 39012 54508 0 0 744 440 1125 1378 34 7 6 53
+ 0 0 40764 196644 39040 54780 0 0 272 0 1093 37564 32 9 47 13
+ 0 0 40764 195940 39044 55392 0 0 0 0 1765 984 1 3 96 0
+ 0 0 40764 195044 39044 56284 0 0 0 0 2103 1598 10 4 86 0
+ 0 0 40764 194788 39044 56564 0 0 0 0 1357 548 1 1 98 0
+ 0 0 40764 194276 39056 57036 0 0 0 2240 1635 815 0 1 95 4
+ 0 1 40764 193956 39056 57364 0 0 0 3284 1915 960 0 3 27 70
+ 1 1 40764 183652 39124 67732 0 0 100 876 1382 593 28 6 0 66
+ 2 1 40764 186020 39124 65284 0 0 8 2448 1355 919 67 31 0 2
+ 1 0 40764 186020 39124 65288 0 0 0 56 1165 612 81 19 0 0
+ 1 1 40764 185956 39132 65312 0 0 0 10480 1053 494 82 18 0 0
+ 1 0 40764 186212 39144 65312 0 0 0 104 1099 460 86 14 0 0
+ 1 0 40764 186212 39144 65312 0 0 0 0 1014 379 86 14 0 0
+ 1 0 40764 186212 39144 65312 0 0 0 0 1007 346 83 17 0 0
+ 1 0 40764 186212 39144 65312 0 0 0 0 1002 299 81 19 0 0
+ 2 0 40764 186148 39152 65312 0 0 0 28 1007 309 84 16 0 0
+ 1 0 40764 186212 39152 65312 0 0 0 460 1117 311 83 17 0 0
+ 2 0 40764 186212 39152 65312 0 0 0 0 1002 278 84 16 0 0
+ 0 0 40764 185892 39172 65556 0 0 0 0 1360 625 44 12 43 0
+ 0 0 40764 185188 39172 66300 0 0 0 0 1949 1323 4 6 90 0
+ 0 0 40764 184612 39188 66856 0 0 0 28 1736 1011 2 6 92 0
+ 0 0 40764 183716 39192 67776 0 0 0 0 2211 1687 11 15 74 0
+ 0 0 40764 182756 39200 68684 0 0 0 0 2233 1652 13 13 74 0
+ 0 0 40764 182692 39220 68944 0 0 4 3452 1417 509 4 4 85 7
+ 0 0 40764 182308 39220 69316 0 0 0 0 1491 676 0 3 97 0
+ 2 0 40764 181732 39228 69748 0 0 0 28 1553 792 1 2 97 0
+ 0 0 40764 181540 39232 70116 0 0 0 0 1495 822 7 7 86 0
+ 0 0 40764 181172 39232 70472 0 0 0 0 1452 627 0 1 99 0
+ 0 0 40764 181044 39240 70664 0 0 0 1880 1258 437 0 1 96 3
+ 0 0 40764 180212 39240 71484 0 0 0 0 2021 1344 1 4 95 0
+ 0 0 40764 179508 39248 72188 0 0 0 44 1912 1122 0 1 99 0
+ 3 0 40764 179060 39252 72500 0 0 0 8 1416 732 8 7 85 0
+ 1 0 40764 178868 39268 72864 0 0 0 0 1550 999 17 14 69 0
+ 0 0 40764 178292 39284 73332 0 0 0 2660 1648 957 8 7 82 3
+ 0 0 40764 177588 39284 74016 0 0 0 0 1855 1075 0 2 98 0
+ 2 0 40764 177332 39300 74332 0 0 0 40 1462 791 11 9 80 0
+ 2 0 40764 176884 39304 74788 0 0 0 0 1620 879 7 9 84 0
+ 0 0 40764 176052 39308 75544 0 0 0 0 1975 1334 12 10 78 0
+ 0 0 40764 175476 39328 76140 0 0 0 2880 1820 1071 8 9 78 5
+ 3 0 40764 175092 39344 76760 0 0 0 0 1949 1431 29 17 54 0
+ 0 0 40764 174900 39356 76976 0 0 0 28 1384 877 20 5 76 0
+ 0 0 40764 174260 39360 77636 0 0 0 2524 2349 1773 48 12 37 4
+ 0 0 40764 174196 39360 77680 0 0 0 0 1088 376 19 8 73 0
+ 0 0 40764 174580 39372 77940 0 0 0 1992 1380 565 13 4 81 2
+ 0 0 40764 174132 39380 78372 0 0 0 0 1607 839 19 9 72 0
+ 0 0 40764 174004 39388 78480 0 0 0 44 1218 642 33 16 50 1
+ 0 0 40764 173876 39392 78616 0 0 0 0 1222 518 22 7 71 0
+ 0 0 40764 172724 39392 79708 0 0 0 0 2392 1667 8 4 88 0
+ 0 0 40764 172276 39400 80184 0 0 0 2144 1626 878 7 2 85 6
+ 0 0 40764 171188 39400 81296 0 0 0 0 2386 1699 8 3 89 0
+ 0 0 40764 170740 39408 81752 0 0 0 28 1560 836 8 2 90 0
+ 1 0 40764 169020 39416 83288 0 0 0 0 2910 2341 9 7 84 0
+ 0 0 40764 168700 39424 83752 0 0 0 0 1665 1215 49 20 31 0
+ 2 0 40764 168316 39444 84208 0 0 0 4360 1675 1083 47 19 34 0
+ 3 0 40764 167868 39448 84484 0 0 0 0 1449 951 53 19 28 0
+ 1 0 40764 167420 39472 85004 0 0 0 40 1743 1126 42 18 41 0
+ 1 0 40764 167164 39484 85296 0 0 0 0 1461 974 55 21 24 0
+ 0 0 40764 166268 39488 86144 0 0 0 0 2057 1531 21 9 70 0
+ 0 0 40764 165948 39496 86452 0 0 0 2180 1425 596 7 1 86 6
+ 0 0 40764 165372 39496 86996 0 0 0 0 1676 967 8 1 91 0
+ 0 0 40764 164924 39508 87444 0 0 0 28 1597 896 19 6 75 0
+ 0 0 40764 164796 39508 87572 0 0 0 0 1195 390 18 5 77 0
+ 2 0 40764 164796 39508 87624 0 0 0 0 1110 409 29 10 61 0
+ 1 0 40764 164732 39516 87676 0 0 0 1408 1133 524 46 15 39 0
+ 0 0 40764 164412 39520 87976 0 0 0 0 1442 673 39 14 47 0
+ 0 0 40764 164284 39532 88100 0 0 0 44 1177 347 8 0 92 0
+ 0 0 40764 164284 39532 88100 0 0 0 8 1004 179 7 1 92 0
+ 1 0 40764 164284 39532 88140 0 0 0 0 1084 320 27 7 66 0
+ 0 0 40764 163580 39544 88736 0 0 0 1032 1922 1115 20 8 72 0
+ 2 0 40764 163004 39556 89380 0 0 0 0 1819 1287 31 13 56 0
+ 0 0 40764 162364 39572 89924 0 0 0 28 1751 1066 38 14 48 0
+ 0 0 40764 162172 39576 90136 0 0 0 0 1294 539 19 5 76 0
+ 0 0 40764 162172 39576 90136 0 0 0 0 1002 172 7 0 93 0
+ 0 0 40764 161916 39588 90384 0 0 0 1648 1377 585 31 9 58 2
+ 0 0 40764 161532 39592 90720 0 0 0 0 1492 875 42 15 44 0
+ 0 0 40764 160572 39612 91652 0 0 0 40 2199 1695 32 12 56 0
+ 0 0 40764 160316 39612 91924 0 0 0 284 1427 484 7 2 91 0
+ 1 0 40764 160188 39612 92096 0 0 0 0 1243 519 21 6 73 0
+ 1 0 40764 159868 39628 92464 0 0 0 2296 1538 937 52 17 31 0
+ 0 0 40764 159484 39636 92808 0 0 0 0 1473 845 35 13 52 0
+ 0 0 40764 159292 39652 92988 0 0 0 44 1273 581 35 9 56 0
+ 2 0 40764 158716 39664 93580 0 0 0 0 1803 1174 39 15 47 0
+ 1 0 40764 158460 39672 93848 0 0 0 0 1412 698 58 14 28 0
+ 2 0 40764 157820 39688 94464 0 0 0 1972 1789 1133 26 8 63 3
+ 0 0 40764 157500 39700 94732 0 0 0 0 1411 741 47 14 39 0
+ 0 0 40764 156860 39712 95368 0 0 0 28 1800 1176 37 12 51 0
+ 0 0 40764 156860 39712 95400 0 0 0 0 1063 303 22 5 73 0
+ 3 0 40764 140468 41036 109828 0 0 296 0 1106 9878 48 41 5 7
+ 2 1 40764 115188 41920 132444 0 0 0 10336 1062 14103 54 46 0 0
+ 0 3 40764 107572 42232 139360 0 0 20 24044 1336 4997 26 21 0 53
+ 0 3 40764 107572 42236 139360 0 0 0 10456 1278 349 7 8 0 85
+ 0 1 40764 108020 42324 139360 0 0 4 6956 1884 283 7 2 0 91
+ 0 1 40764 100188 42972 142292 0 0 104 5632 1152 4406 39 41 0 20
+ 0 1 40764 85204 43428 154796 0 0 4 16384 1088 8587 44 40 0 16
+ 0 1 40764 99860 43736 140492 0 0 4 6904 1249 2443 43 25 0 32
+ 0 1 40764 92564 44180 147020 0 0 0 10652 1170 6305 53 30 0 17
+ 2 0 40764 98196 44780 140588 32 0 36 10324 1329 3918 37 27 0 36
+ 1 0 40764 89172 45448 148652 0 0 0 7424 1239 8226 45 29 0 26
+ 1 0 40764 88020 45516 149068 0 0 0 16264 1186 2946 23 25 0 52
+ 0 1 40764 94100 46180 142860 0 0 0 12428 1364 4026 28 31 0 41
+ 3 0 40764 92628 46792 143328 0 0 0 13760 1332 5659 34 32 0 35
+ 1 1 40764 95444 47444 141588 0 0 64 7584 1408 2693 31 21 0 48
+ 2 0 40764 93588 48236 141604 0 0 0 5864 1438 2131 36 23 0 41
+ 1 0 40764 93324 48288 141636 0 0 0 380 1031 2082 43 54 0 3
+ 0 1 40764 94540 48312 141640 0 0 0 520 1053 1970 45 54 0 1
+ 1 0 40764 91596 48832 141544 0 0 4 4856 1358 1254 50 18 0 32
+ 0 0 40764 93900 49028 141404 0 0 0 1836 1112 672 19 8 62 11
+ 0 0 40764 93900 49028 141404 0 0 0 0 1002 166 7 0 93 0
+ 0 0 40764 93900 49028 141404 0 0 0 0 1002 168 7 0 93 0
+ 0 1 40764 89156 49404 144532 0 0 0 6036 1185 3029 31 21 29 19
+ 2 0 40764 80644 50016 151688 0 0 0 9504 1322 5166 48 25 0 28
+ 0 2 40764 70084 50780 160308 0 0 0 14232 1370 7307 31 32 0 37
+ 2 0 40764 62084 51468 167132 0 0 0 11536 1382 5882 35 27 0 38
+ 0 1 40764 54916 52244 172888 0 0 0 11372 1346 4684 31 33 0 36
+ 0 1 40764 45764 52796 182760 0 0 0 15020 1367 6434 42 31 0 27
+ 3 0 40764 40980 53008 182932 0 0 0 1824 1130 1575 74 12 0 14
+ 1 1 40764 41468 53276 182968 0 0 24 2724 1197 1084 61 21 0 18
+ 1 0 40764 44284 53600 183024 0 0 0 4016 1295 1301 58 18 0 24
+ 0 1 40764 44412 53840 183004 0 0 0 2860 1186 865 67 18 0 15
+ 2 0 40764 38748 54044 183180 0 0 0 1836 1148 1477 61 21 0 17
+ 2 0 40764 39132 54212 183308 0 0 0 1116 1068 992 61 33 1 5
+ 1 0 40764 38940 54244 183332 0 0 0 140 1016 1069 50 50 0 0
+ 2 0 40764 38748 54268 183364 0 0 0 280 1019 1037 50 48 0 2
+ 1 0 40764 41564 54376 183264 0 0 0 1120 1072 1076 51 42 0 7
+ 1 0 40764 38940 54548 183376 0 0 0 1712 1104 631 76 12 0 12
+ 0 1 40764 41820 54748 184300 0 0 0 3508 1265 1167 61 24 0 15
+ 2 0 40764 36876 54884 184192 0 0 0 1888 1114 1235 71 20 0 9
+ 0 0 40764 42852 55144 184200 0 0 0 2172 1152 937 20 15 50 15
+ 0 0 40764 42340 55148 184612 0 0 0 0 1523 714 8 2 90 0
+ 0 0 40764 40996 55148 185940 0 0 0 0 2654 1984 11 5 84 0
+ 0 0 40764 40100 55148 186840 0 0 0 696 2270 1456 9 4 87 0
+ 2 0 40764 30148 55180 196456 0 0 0 44 1279 5191 41 7 52 0
+ 1 0 40764 38532 55212 188464 0 0 4 11344 1121 962 67 6 0 27
+ 1 0 40764 33092 55304 193396 0 0 12 13676 1152 284 53 9 0 38
+ 0 0 40764 32260 55308 193668 0 0 0 0 1382 544 36 2 62 0
+ 0 0 40764 32020 55308 193972 0 0 0 0 1411 618 9 2 89 0
+ 0 0 40764 31700 55316 194292 0 0 0 40 1399 644 9 1 90 0
+ 0 0 40764 31324 55316 194676 0 0 0 0 1501 719 9 1 90 0
+ 0 0 40764 31068 55328 194908 0 0 0 1596 1301 525 10 0 88 2
+ 0 0 40764 30188 55328 195812 0 0 0 8 2160 1344 11 6 83 0
+ 0 0 40764 29164 55332 196832 0 0 0 0 2291 1648 10 5 85 0
+ 0 0 40764 28780 55340 197200 0 0 0 28 1469 716 9 0 91 0
+ 0 0 40764 28460 55344 197548 0 0 0 0 1452 589 9 2 89 0
+ 0 1 40764 25468 55436 198804 0 0 428 2772 2166 1667 15 6 37 42
+ 0 0 40764 24236 55548 201468 0 0 944 2408 3080 2476 40 12 17 31
+ 0 0 40764 23532 55548 201868 0 0 0 0 1500 747 9 5 86 0
+ 0 1 40764 22892 55552 202524 0 0 0 412 1885 1123 11 1 87 1
+ 0 0 40764 21740 55556 203616 0 0 0 4 2366 1675 10 5 85 0
+ 0 0 40764 20588 55564 204752 0 0 0 0 2419 1797 11 5 84 0
+ 0 0 40764 19884 55580 205604 0 0 0 4344 2109 1356 11 3 75 11
+ 0 0 40764 19628 55580 206084 0 0 0 0 1603 876 9 1 90 0
+ 0 0 40764 18620 55592 207056 0 0 0 28 2244 1488 10 5 85 0
+ 0 0 40764 17596 55596 208108 0 0 0 0 2300 1703 12 4 84 0
+ 0 0 40764 17340 55596 208368 0 0 0 0 1350 462 9 2 89 0
+ 0 0 40764 16060 55596 209644 0 0 0 0 2542 2042 10 3 87 0
+ 0 0 40764 14860 55608 210868 0 0 0 4904 2606 1773 11 6 71 13
+ 0 0 40764 14604 55620 211060 0 0 0 40 1266 464 9 1 90 0
+ 0 0 40764 14540 55620 211140 0 0 0 0 1108 272 9 0 91 0
+ 0 1 40764 11252 55624 212716 0 0 0 2272 2840 2336 36 11 49 4
+ 0 1 40764 3336 54852 231588 0 0 0 20328 1174 12302 44 27 0 29
+ 0 1 40764 3592 52740 232384 0 0 0 12952 1300 7456 28 22 0 49
+ 2 0 40764 3400 50296 233892 0 0 16 8208 1275 6769 28 29 0 42
+ 0 1 40764 3656 48680 234108 0 0 12 21096 1223 9066 33 27 0 39
+ 0 1 40764 8584 49256 232396 0 0 20 8256 1323 3884 33 17 0 50
+ 1 0 40764 51912 49500 188516 0 0 1188 0 1137 1485 41 5 0 54
+ 0 2 40764 50056 49612 190228 0 0 512 1264 1266 3423 67 7 0 26
+ 0 2 40764 47880 49628 192300 0 0 680 5068 1528 2147 61 5 0 34
+ 0 1 40764 46808 49664 193476 0 0 684 96 1115 808 26 1 0 73
+ 1 0 40764 44120 49712 196140 0 0 1344 276 1114 1885 56 4 0 40
+ 1 0 40764 41304 49728 198928 0 0 916 0 1100 2875 83 5 0 12
+ 1 0 40764 38040 49744 202196 0 0 1072 3964 1099 2673 91 4 0 5
+ 1 0 40764 35744 49752 204564 0 0 0 4428 1042 3197 97 3 0 0
+ 1 0 40764 33312 49768 206996 0 0 444 0 1042 3334 90 6 0 4
+ 1 0 40764 31136 49768 209128 0 0 52 3800 1043 3089 95 4 0 1
+ 1 1 40764 28768 49792 211556 0 0 316 0 1042 3327 85 5 0 10
+ 1 0 40764 24032 49832 216236 0 0 2752 4096 1188 5694 82 8 0 10
+ 0 2 40764 21600 49848 218664 0 0 760 2020 1184 4225 72 7 0 21
+ 0 1 40764 18400 49860 221848 0 0 2084 44 1490 2439 32 5 0 63
+ 0 1 40764 13088 49880 227064 0 0 1984 2076 1239 3023 60 8 0 32
+ 0 1 40764 8864 49908 231360 0 0 2228 4096 1414 2640 47 6 0 47
+ 0 1 40764 3424 49960 236732 0 0 2336 4 1362 2601 52 7 0 41
+ 1 1 40764 3488 47444 239076 0 0 1012 5732 1198 2593 60 5 0 35
+ 0 1 40764 2912 46760 240444 0 0 732 56 1149 4034 76 6 0 18
+ 0 1 40764 3040 43828 243252 0 0 3160 0 1792 2310 17 5 0 78
+ 1 1 40764 4064 41132 244844 0 0 1932 2448 1397 2112 36 3 0 61
+ 0 1 40764 3104 41068 245976 0 0 1604 0 1119 2227 58 2 0 40
+ 1 1 40764 3296 41096 245668 0 0 1592 2784 1104 2437 63 5 0 32
+ 0 1 40764 3616 41108 245444 0 0 1456 36 1117 1764 46 3 0 51
+ 1 1 40764 3104 41104 245936 0 0 1264 1304 1130 1842 47 2 0 51
+ 0 1 40764 3040 41124 245960 0 0 1488 4 1119 2088 54 3 0 43
+ 1 0 40764 3360 41124 245412 0 0 1660 0 1185 2110 55 6 0 39
+ 1 1 40764 2912 41140 245796 0 0 1224 5032 1132 2512 75 4 0 21
+ 1 0 40764 3040 41156 245712 0 0 912 40 1113 2248 69 3 0 28
+ 0 1 40764 3040 41184 245704 0 0 1040 0 1103 2277 63 6 0 31
+ 0 1 40764 2912 41184 245836 0 0 648 0 1152 1158 21 2 0 77
+ 1 0 40764 3168 41192 245444 0 0 880 4 1160 1355 27 4 0 69
+ 1 1 40764 3296 41168 245120 0 0 0 6328 1010 4443 95 5 0 0
+ 1 0 40764 3040 41208 245500 0 0 28 40 1058 2884 91 4 0 5
+ 1 0 40764 3424 41188 245188 0 0 0 0 1002 2733 97 3 0 0
+ 0 2 40764 35808 42068 214972 0 0 1008 0 1230 1742 27 19 0 54
+ 0 1 40764 84300 42488 166964 0 0 368 3012 1153 630 9 12 0 79
+ 0 2 40764 154892 42952 98656 0 0 464 4348 1118 1089 13 24 0 63
+ 0 1 40764 169412 43184 90864 0 0 2840 68 1190 1096 10 11 0 79
+ 1 0 40764 160772 43240 99048 0 0 8204 0 1179 407 40 3 0 57
+ 0 0 40764 160196 43292 99400 0 0 180 0 1330 447 10 2 69 19
+ 1 0 40764 154884 43756 103824 0 0 1912 1576 1286 2848 23 19 17 42
+ 0 1 40764 146884 44444 109664 0 0 1752 0 1140 2863 18 13 0 69
+ 0 2 40764 138372 44608 117752 0 0 2472 7272 1171 3039 20 6 0 74
+ 1 0 40764 124356 45156 131204 0 0 3928 2028 1125 5140 26 9 0 65
+ 1 0 40764 94980 45616 159292 0 0 7604 0 1106 10367 46 18 0 37
+ 0 1 40764 72132 46300 180292 0 0 4004 5724 1125 8365 33 16 0 51
+ 0 1 40764 63692 46588 187676 0 0 1436 8192 1135 2715 16 11 0 73
+ 0 3 40764 58188 46816 192176 0 0 692 15196 1159 2070 13 5 0 83
+ 2 3 40764 51468 47232 197500 0 0 388 11524 1157 2114 17 9 0 74
+ 0 4 40764 27020 48188 218232 0 0 40 13984 1169 9563 41 25 0 35
+ 1 2 40764 3588 48724 239216 0 0 24 6348 1146 10591 36 28 0 37
+ 1 2 40764 3032 48540 240008 0 0 200 7508 1188 932 11 4 0 85
+ 0 5 40764 3032 48644 240236 0 0 2512 13360 1179 3908 22 8 0 70
+ 0 5 40764 3416 47800 240100 0 0 1672 9032 1153 2461 17 6 0 77
+ 0 5 40764 3928 47628 239648 0 0 1668 8432 1115 2205 16 5 0 79
+ 1 4 40764 3608 47716 239900 0 0 2688 9996 1142 3400 22 7 0 71
+ 0 2 40764 3600 47812 239212 0 0 2944 5528 1159 5801 28 17 0 55
+ 0 2 40764 2896 47964 240548 0 0 1792 18104 1172 3455 19 6 0 75
+ 0 4 40764 3920 47980 239444 0 0 2816 10120 1128 3959 24 7 0 69
+ 0 7 40764 3632 48068 239020 0 0 888 6752 1116 1393 16 8 0 76
+ 0 5 40764 3248 48084 239348 0 0 1680 7932 1314 458 11 6 0 83
+ 0 1 40764 3952 48144 239348 0 0 0 10900 1232 261 8 4 0 88
+ 1 0 40764 3632 48168 239376 0 0 60 4448 1141 267 63 4 0 33
+ 0 0 40764 2928 48168 239540 0 0 164 0 1040 217 79 2 10 9
+ 0 0 40764 3568 48192 238720 0 0 36 40 1717 885 10 2 86 2
+ 0 0 40764 2864 48192 239432 0 0 0 0 1886 1205 10 4 86 0
+ 0 0 40764 3136 48192 239232 0 0 0 0 1761 1057 9 3 88 0
+ 0 1 40764 4096 48212 238228 0 0 0 5644 1926 1050 9 4 44 42
+ 0 2 40764 3456 48212 236692 0 0 712 1776 1577 535 16 3 0 81
+ 1 1 40764 7040 48212 234032 0 0 276 1700 1417 569 24 6 0 70
+ 0 2 40764 4864 48228 235228 0 0 0 3260 1398 1127 11 3 0 86
+ 0 2 40764 4992 48236 235224 0 0 0 1608 1358 431 9 2 0 89
+ 0 2 40764 5120 48248 235228 0 0 0 2068 1407 380 8 1 0 91
+ 0 1 40764 5120 48252 235228 0 0 0 1216 1320 334 9 1 0 90
+ 0 1 40764 3456 48448 236704 0 0 16 5848 1157 3441 19 11 0 69
+ 1 0 40764 3200 48636 236488 0 0 4 4144 1202 1255 15 12 0 74
+ 1 0 40764 3392 48716 238264 0 0 2668 852 1441 542 11 4 0 85
+ 0 0 40764 4736 48916 237480 0 0 84 5912 1154 813 46 9 19 26
+ 3 0 40764 5048 48984 237112 0 0 332 1332 1184 1570 47 14 5 34
+ 3 0 40764 4520 48956 235816 0 0 28 0 1006 1864 62 36 0 2
+ 0 0 40764 7712 48956 234060 0 0 116 0 1020 529 21 13 60 6
+ 1 0 40764 3040 48956 236972 0 0 2888 0 1264 483 18 9 30 44
+ 0 2 40764 4384 48960 236440 0 0 356 0 1050 816 50 28 0 22
+ 1 0 40764 4184 48984 236596 0 0 148 2812 1087 831 50 26 0 24
+ 0 1 40764 5656 48992 235920 0 0 144 0 1017 864 64 31 0 5
+ 4 0 40764 5016 48988 236356 0 0 2080 0 1380 779 38 25 0 37
+ 2 0 40764 4624 48988 236356 0 0 0 0 1002 2087 42 58 0 0
+ 3 0 40764 4624 48992 236368 0 0 12 0 1006 1135 61 37 0 2
+ 3 0 40764 6608 48880 233472 0 0 4 360 1021 1114 54 44 0 2
+ 2 0 40764 6672 48892 233516 0 0 24 8 1010 865 56 40 0 4
+ 4 0 40764 6224 48908 233608 0 0 88 0 1019 843 53 36 0 11
+ 1 0 40764 4816 48908 233620 0 0 0 0 1002 850 59 41 0 0
+ 1 0 40764 6208 48912 233676 0 0 0 0 1002 968 57 43 0 0
+ 1 0 40764 7744 48924 233776 0 0 16 492 1035 1169 65 33 0 2
+ 1 0 40764 9152 48888 231572 0 0 28 16 1011 302 87 8 0 5
+ 0 0 40764 8288 48896 231712 0 0 36 0 1008 896 31 19 48 3
+ 0 0 40764 8288 48896 231712 0 0 0 0 1007 181 8 0 92 0
+ 0 0 40764 8288 48896 231712 0 0 0 0 1007 177 8 1 91 0
+ 0 0 40764 8480 48912 231712 0 0 4 476 1036 194 7 1 90 2
+ 0 0 40764 8672 48912 231716 0 0 0 0 1002 181 8 0 92 0
+ 0 0 40764 8672 48912 231720 0 0 0 0 1002 174 7 0 93 0
+ 3 0 40764 7496 48916 231732 0 0 0 0 1002 1859 40 17 44 0
+ 2 0 40764 8904 48920 231892 0 0 44 0 1007 2109 77 20 0 3
+ 0 1 40764 10472 48968 232392 0 0 64 424 1035 3555 66 25 0 9
+ 0 1 40764 126156 49208 120060 0 0 140 6724 1121 1106 20 51 0 29
+ 2 0 40764 157276 49528 95748 0 0 464 4 1397 1227 33 21 0 46
+ 1 0 40764 151644 49552 100696 0 0 4828 0 1262 432 27 3 52 18
+ 2 0 40764 149540 49636 102996 0 0 160 0 1361 1909 54 17 7 21
+ 1 0 40764 145572 49772 106748 0 0 1312 508 1034 3409 52 39 0 9
+ 1 1 40764 135412 50640 113788 0 0 1804 9736 1182 4372 26 24 0 50
+ 2 0 40764 124404 50904 124736 0 0 3200 3672 1110 4540 25 8 0 67
+ 1 0 40764 76924 51272 170708 0 0 12032 8 1102 16636 69 29 0 2
+ 2 0 40764 59132 51480 187096 0 0 2440 14824 1180 6976 28 16 0 56
+ 1 0 40764 43020 52148 200660 0 0 1384 8192 1131 4974 22 18 0 60
+ 0 2 40764 21260 53008 219532 0 0 4 31780 1204 8621 39 25 0 37
+ 0 2 40764 21260 53008 219532 0 0 0 11308 1170 226 8 1 0 91
+ 2 1 40764 20556 53020 220284 0 0 0 13356 1193 540 10 3 0 87
+ 3 1 40764 3320 53424 236696 0 0 16 7560 1145 8850 36 28 0 37
+ 0 2 40764 3256 51452 238412 0 0 2636 1280 1132 5324 23 12 0 65
+ 1 1 40764 3256 50292 240316 0 0 1284 26928 1171 1918 16 6 0 78
+ 0 4 40764 3128 48784 241836 0 0 3840 8712 1144 4878 27 10 0 63
+ 0 2 40764 3208 48996 240896 0 0 3200 2972 1347 5046 26 17 0 57
+ 0 2 40764 3336 49116 240892 0 0 3328 3216 1117 6063 26 12 0 62
+ 2 0 40764 3432 49336 240636 0 0 2864 4312 1115 4057 27 13 0 60
+ 0 2 40764 3048 49344 240556 0 0 1580 29740 1371 386 10 8 0 82
+ 0 1 40764 3304 49392 240556 0 0 0 8020 1298 249 8 3 0 89
+ 1 0 40764 3176 49408 239696 0 0 48 64 1044 273 86 3 0 11
+ 0 0 40764 4008 49424 238896 0 0 204 0 1611 710 58 3 29 10
+ 0 0 40764 3624 49432 239268 0 0 0 40 1464 597 9 3 88 0
+ 0 0 40764 3256 49432 239704 0 0 0 0 1556 704 9 1 90 0
+ 0 0 40764 3832 49440 239116 0 0 0 0 2027 1313 10 3 87 0
+ 2 0 40764 5800 49464 234956 0 0 988 2556 1529 799 33 8 6 53
+ 1 1 40764 2984 49828 236764 0 0 20 9324 1221 4116 21 17 0 62
+ 0 1 40764 4072 50176 236888 0 0 1144 3660 1446 1362 17 14 0 69
+ 1 0 40764 5480 50440 237112 0 0 1620 4140 1360 982 17 13 0 70
+ 2 0 40764 2984 50460 236288 0 0 0 2212 1141 281 43 3 42 12
+ 1 0 40764 5912 50584 235716 0 0 212 1308 1097 1592 54 21 0 25
+ 3 0 40764 7688 50616 233136 0 0 80 0 1014 2002 57 39 0 4
+ 0 0 40764 7816 50616 233196 0 0 56 0 1011 256 13 3 81 3
+ 2 1 40764 4616 50620 236092 0 0 2888 1728 1514 813 31 14 9 46
+ 0 2 40764 5384 50628 235056 0 0 332 836 1206 716 32 17 0 51
+ 0 3 40764 5768 50628 235128 0 0 84 4388 1460 602 18 9 0 73
+ 0 3 40764 5768 50628 235128 0 0 0 1104 1278 373 9 2 0 89
+ 1 1 40764 5128 50652 235212 0 0 84 2936 1655 878 26 13 0 61
+ 1 1 40764 4672 50656 235244 0 0 28 1552 1335 1108 63 31 0 6
+ 0 1 40764 4992 50668 235368 0 0 1460 800 1456 664 32 14 0 54
+ 1 0 40764 4784 50696 236108 0 0 740 132 1414 1090 37 29 0 34
+ 1 0 40764 4336 50696 236108 0 0 0 0 1006 2076 41 59 0 0
+ 2 0 40764 4656 50712 236144 0 0 32 0 1011 1047 57 39 0 4
+ 2 0 40764 6704 50580 233336 0 0 0 0 1002 1068 54 46 0 0
+ 2 0 40764 6704 50592 233300 0 0 24 0 1007 769 60 37 0 3
+ 2 0 40764 6640 50616 233412 0 0 88 440 1033 824 52 37 0 11
+ 4 0 40764 6064 50616 233400 0 0 0 0 1002 869 59 41 0 0
+ 2 0 40764 6304 50620 233484 0 0 0 0 1002 974 59 41 0 0
+ 1 0 40764 4256 50620 233604 0 0 44 0 1011 914 67 27 0 6
+ 1 0 40764 9440 50620 232088 0 0 0 0 1002 450 87 13 0 0
+ 0 0 40764 7808 50632 232120 0 0 32 576 1058 708 17 13 66 4
+ 0 2 40764 7672 50656 232144 0 0 40 8 1011 209 8 0 82 10
+ 0 1 40764 6368 50980 232732 0 0 896 24 1166 764 9 5 0 86
+ 0 1 40764 5792 51000 233244 0 0 528 0 1134 821 11 8 0 81
+ 0 1 40764 5152 51000 233808 0 0 556 0 1142 874 10 10 0 80
+ 0 1 40764 4512 51008 234304 0 0 488 40 1129 799 10 8 0 82
+ 1 0 40764 5400 51096 234420 0 0 44 68 1020 2490 54 23 17 6
+ 1 0 40764 7192 51012 233064 0 0 56 0 1010 3475 72 23 0 5
+ 0 1 40764 71096 51028 172800 0 0 40 0 1010 1985 53 45 0 2
+ 0 1 40764 153512 51384 99000 0 0 308 6440 1124 1064 20 48 0 32
+ 0 1 40764 141928 51496 108076 0 0 2660 508 1083 5358 40 33 0 27
+ 2 0 40764 97896 51776 151060 0 0 12040 0 1114 16845 66 27 0 7
+ 2 0 40764 72168 51992 175388 0 0 5120 12280 1156 10103 37 20 0 43
+ 1 0 40764 54208 52216 191496 0 0 2180 12288 1145 6932 26 18 0 56
+ 1 3 40764 24832 52808 216068 0 0 240 27148 1212 10838 45 35 0 20
+ 0 4 40764 3200 53128 234668 0 0 972 11752 1144 10530 42 30 0 29
+ 1 3 40764 3840 49824 236964 0 0 3072 8000 1147 4537 23 11 0 66
+ 1 2 40764 4048 49820 236356 0 0 2688 10608 1316 4346 44 11 0 44
+ 0 3 40764 2896 49840 237556 0 0 1024 10648 1168 1920 5 5 0 90
+ 3 2 40764 3168 49908 236992 0 0 1272 9468 1275 2133 62 5 0 34
+ 0 2 40764 4960 49908 237120 0 0 128 11152 1167 358 23 3 0 74
+ 0 2 40764 3808 49920 238356 0 0 256 18432 1250 1061 18 4 0 78
+ 0 4 40764 3488 49972 238288 0 0 1920 8612 1180 3770 25 10 0 65
+ 2 4 40764 2848 49992 238984 0 0 2824 7132 1285 5506 27 11 0 62
+ 0 2 40764 3424 50104 238456 0 0 2560 6796 1269 3657 23 9 0 68
+ 0 3 40764 3624 50124 238712 0 0 244 16788 1629 1301 4 5 0 91
+ 0 3 40764 3624 50124 238712 0 0 0 7628 1077 169 0 1 0 99
+ 1 2 40764 2984 50128 239400 0 0 1544 6472 1338 407 2 7 0 91
+ 2 2 40764 5160 50156 236816 0 0 596 2716 1490 875 69 3 0 28
+ 2 0 40764 3768 50196 238560 0 0 12 708 1184 425 28 4 0 69
+ 0 1 40764 3832 50204 238560 0 0 0 4392 1150 850 88 3 0 9
+ 1 0 40764 2936 50244 238668 0 0 164 84 1070 426 71 3 0 26
+ 1 0 40764 3128 50256 238076 0 0 208 40 1203 882 63 2 27 9
+ 0 1 40764 6248 50380 234356 0 0 552 2408 1247 972 55 12 0 33
+ 1 0 40764 6048 50420 234388 0 0 180 4692 1103 475 71 9 0 20
+ 0 0 40764 6176 50424 234492 0 0 0 0 1148 353 80 3 17 0
+ 0 0 40764 5600 50444 234720 0 0 112 0 1231 464 11 2 82 5
+ 0 0 40764 4128 50452 236240 0 0 0 0 2717 1698 26 7 67 0
+ 1 0 40764 3552 50460 236800 0 0 0 0 1774 916 27 4 70 0
+ 1 0 40764 4184 50544 233472 0 0 20 4948 1177 1400 78 13 0 9
+ 1 0 40764 2904 50772 233980 0 0 4 7096 1190 3820 33 16 0 51
+ 0 1 40764 3544 50912 235232 0 0 2396 2468 1453 1098 18 9 0 73
+ 2 0 40764 4936 51156 234752 0 0 344 1688 1171 1893 58 17 0 25
+ 0 0 40764 8392 51092 231544 0 0 80 0 1015 1690 35 37 23 5
+ 0 1 40764 7368 51092 232340 0 0 788 4 1063 338 5 7 76 12
+ 4 0 40764 4936 51096 234736 0 0 2392 0 1251 755 37 18 0 44
+ 1 0 40764 3352 51104 234944 0 0 200 0 1038 891 54 31 0 15
+ 2 0 40764 5656 51132 234212 0 0 92 388 1037 889 57 35 0 8
+ 2 0 40764 5136 51108 234212 0 0 2132 0 1375 825 32 27 0 40
+ 3 0 40764 4736 51108 234212 0 0 0 8 1010 2086 40 60 0 0
+ 3 0 40764 4992 51112 234224 0 0 12 0 1009 1215 53 44 0 3
+ 1 0 40764 6784 51120 231560 0 0 0 0 1002 1147 47 53 0 0
+ 1 0 40764 4032 51144 231496 0 0 24 388 1026 804 56 40 0 4
+ 1 0 40764 4992 51156 231564 0 0 88 0 1019 873 49 42 0 9
+ 1 0 40764 6160 51160 231632 0 0 0 0 1002 877 54 46 0 0
+ 2 0 40764 6272 51160 231696 0 0 0 0 1002 921 66 34 0 0
+ 1 0 40764 5312 51164 230952 0 0 44 0 1017 797 66 26 0 8
+ 0 0 40764 7648 51192 230328 0 0 40 440 1033 927 61 24 12 3
+ 0 0 40764 7648 51192 230328 0 0 0 0 1014 254 4 0 96 0
+ 0 1 40764 7712 51192 230328 0 0 0 1380 1193 300 7 2 73 19
+ 0 1 40764 7840 51192 230328 0 0 0 844 1225 315 7 1 0 92
+ 0 1 40764 8032 51200 230328 0 0 8 2368 1596 549 1 1 0 98
+ 0 2 40764 8544 51200 230332 0 0 0 1596 1324 351 0 2 0 98
+ 0 1 40764 10184 51212 230336 0 0 0 996 1259 409 3 3 11 83
+ 1 0 40764 9544 51220 230476 0 0 56 0 1048 683 55 24 0 21
+ 3 0 40764 8072 51220 230556 0 0 12 0 1005 576 74 24 0 2
+ 0 1 40764 122196 51532 122080 0 0 220 6636 1093 1315 15 52 0 33
+ 1 0 40764 143476 52184 105524 0 0 2356 64 1273 5202 21 43 0 36
+ 2 0 40764 100356 52680 147712 0 0 11776 0 1135 16453 56 24 0 20
+ 0 2 40764 68612 53316 177388 0 0 6016 13892 1180 12299 36 21 0 42
+ 2 0 40764 49556 53912 193876 0 0 2152 15948 1191 6882 19 17 0 64
+ 2 3 40764 4756 55896 232516 0 0 0 33052 1362 16664 55 45 0 0
+ 0 4 40764 10400 55600 227252 0 0 1352 21504 1279 6240 15 12 0 73
+ 2 3 40764 3232 55856 234268 0 0 1664 13576 1312 2830 9 6 0 85
+ 0 5 40764 1360 52244 239540 0 0 3968 9912 1178 5166 20 10 0 70
+ 2 3 40764 4240 51824 238024 0 0 3600 15124 1211 5030 20 12 0 68
+ 1 2 40764 2636 51940 239692 0 0 2304 6964 1181 4780 14 13 0 73
+ 0 2 40764 2720 52036 239308 0 0 2692 30476 1246 3945 15 10 0 75
+ 0 3 40764 2300 52204 240028 0 0 1456 12640 1209 2564 9 9 0 82
+ 2 0 40764 34632 52280 197016 0 0 1108 1172 1334 1016 4 24 0 72
diff --git a/testsuite/run-test.log b/testsuite/run-test.log
new file mode 100644
index 0000000..84c0faf
--- /dev/null
+++ b/testsuite/run-test.log
@@ -0,0 +1,10 @@
+[OK] create-sid
+[OK] build-sid-dsh
+[OK] pdebuild-sid-dsh
+[OK] pdebuild-internal-sid-dsh
+[OK] execute-sid
+[OK] create-sarge
+[OK] build-sarge-dsh
+[OK] pdebuild-sarge-dsh
+[OK] pdebuild-internal-sarge-dsh
+[OK] execute-sarge
diff --git a/testsuite/run-test.sh b/testsuite/run-test.sh
index 0cfc99b..77ae2ec 100755
--- a/testsuite/run-test.sh
+++ b/testsuite/run-test.sh
@@ -4,6 +4,19 @@
PBUILDER=/usr/sbin/pbuilder
+RESULTFILE="run-test.log"
+: > ${RESULTFILE}
+RESULTFILE=$(readlink -f ${RESULTFILE})
+
+log_success () {
+ CODE=$?
+ if [ $CODE = 0 ]; then
+ echo "[OK] $1" >> ${RESULTFILE}
+ else
+ echo "[FAIL] $1" >> ${RESULTFILE}
+ fi
+}
+
vmstat -n 1 > normal/vmstat &
VMSTATPID=$!
LC_ALL=C iostat -dxt hda 1 > normal/iostat &
@@ -12,6 +25,8 @@ IOSTATPID=$!
if [ -x "${PBUILDER}" ]; then
for distribution in sid sarge; do
sudo ${PBUILDER} create --mirror http://ring.asahi-net.or.jp/archives/linux/debian/debian --distribution "${distribution}" --basetgz $(pwd)/testimage --logfile normal/pbuilder-create-${distribution}.log
+# --hookdir /usr/share/doc/pbuilder/examples/libc6workaround
+ log_success create-${distribution}
for PKG in dsh; do
(
@@ -20,16 +35,24 @@ if [ -x "${PBUILDER}" ]; then
apt-get source -d ${PKG}
)
sudo ${PBUILDER} build --basetgz $(pwd)/testimage --buildplace $(pwd)/testbuild/ --logfile normal/pbuilder-build-${PKG}-${distribution}.log testbuild/${PKG}*.dsc
+ log_success build-${distribution}-${PKG}
+
(
mkdir testbuild2
cd testbuild2
apt-get source ${PKG}
cd ${PKG}-*
pdebuild --logfile ../../normal/pdebuild-normal-${distribution}.log -- --basetgz $(pwd)/../../testimage --buildplace $(pwd)/../../testbuild2/
+ log_success pdebuild-${distribution}-${PKG}
+
pdebuild --use-pdebuild-internal --logfile ../../normal/pdebuild-internal-${distribution}.log -- --basetgz $(pwd)/../../testimage --buildplace $(pwd)/../../testbuild2/
+ log_success pdebuild-internal-${distribution}-${PKG}
+
)
done
sudo ${PBUILDER} execute --basetgz $(pwd)/testimage --logfile normal/pbuilder-execute-${distribution}.log ../examples/execute_paramtest.sh test1 test2 test3
+ log_success execute-${distribution}
+
sudo rm -rf testbuild testbuild2 testimage
done
fi