aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog19
-rw-r--r--Documentation/pbuilder-doc.xml8
-rw-r--r--debian/changelog21
-rw-r--r--examples/D10tmp4
-rwxr-xr-xpbuilder-buildpackage6
-rwxr-xr-xpbuilder-user-mode-linux1
-rw-r--r--testsuite/normal/iostat2094
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sarge.log81
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sid.log75
-rw-r--r--testsuite/normal/pbuilder-create-sarge.log144
-rw-r--r--testsuite/normal/pbuilder-create-sid.log142
-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.log69
-rw-r--r--testsuite/normal/pdebuild-internal-sid.log72
-rw-r--r--testsuite/normal/pdebuild-normal-sarge.log78
-rw-r--r--testsuite/normal/pdebuild-normal-sid.log68
-rw-r--r--testsuite/normal/vmstat995
-rwxr-xr-xtestsuite/run-test.sh2
19 files changed, 2185 insertions, 1698 deletions
diff --git a/ChangeLog b/ChangeLog
index cea8110..2b61622 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2004-07-16 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-user-mode-linux: 259325: call /sbin/halt -d -f
+ instead of just doing an exit from UML.
+ init=/bin/sh, and this is required for safe exit now, apparently.
+
+2004-07-14 Junichi Uekawa <dancer@debian.org>
+
+ * Documentation/pbuilder-doc.xml: update notes on D10tmp script.
+
+ * examples/D10tmp: mkdir -p
+
+2004-07-09 Junichi Uekawa <dancer@debian.org>
+
+ * testsuite/run-test.sh (IOSTATPID): add debemail to testsuite.
+
+ * pbuilder-buildpackage (PACKAGENAME): move SUTOUSER outside of what's fed into bash.
+ Run bash in SUTOUSER. SUTOUSER might be eating quote characters.
+
2004-06-19 Junichi Uekawa <dancer@debian.org>
* pbuilder-user-mode-linux: apply patch from
diff --git a/Documentation/pbuilder-doc.xml b/Documentation/pbuilder-doc.xml
index 6319006..4625923 100644
--- a/Documentation/pbuilder-doc.xml
+++ b/Documentation/pbuilder-doc.xml
@@ -4,7 +4,7 @@
and the latest version is found in CVS repository. -->
<book>
<bookinfo>
- <date>2003-03-01</date>
+ <date>2004-07-14</date>
<title>pbuilder User's Manual</title>
<abbrev>pbuilder-doc</abbrev>
<subtitle>Usage and operations</subtitle>
@@ -666,7 +666,7 @@ read
pbuilder does not provide a way to work around debootstrap.
</para>
</sect1>
- <sect1>
+ <sect1 id="tmpdir">
<title>Notes on usage of $TMPDIR</title>
<para>
If you are setting $TMPDIR to an unusual value, of other than
@@ -678,6 +678,10 @@ read
<screen>export TMPDIR=/tmp</screen>
in pbuilderrc. Take your pick.
</para>
+ <para>
+ An example script is provided as
+ <filename>examples/D10tmp</filename> with pbuilder.
+ </para>
</sect1>
<sect1>
<title>Using special apt sources list other than the default</title>
diff --git a/debian/changelog b/debian/changelog
index e759148..e1de88a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,24 @@
+pbuilder (0.110) unstable; urgency=low
+
+ * shutdown UML cleanly on exit, thanks go to Joey Hess for noticing this
+ (closes: #259325)
+
+ -- Junichi Uekawa <dancer@debian.org> Fri, 16 Jul 2004 07:02:07 +0900
+
+pbuilder (0.109) unstable; urgency=low
+
+ * Improve D10tmp example script so that it uses mkdir -p instead of mkdir.
+ * Update SGML document to show where that script exists.
+
+ -- Junichi Uekawa <dancer@debian.org> Wed, 14 Jul 2004 06:31:02 +0900
+
+pbuilder (0.108) unstable; urgency=low
+
+ * move SUTOUSER outside of /bin/bash invocation. Should help quoting of DEBEMAIL.
+ (Closes: #258219).
+
+ -- Junichi Uekawa <dancer@debian.org> Fri, 9 Jul 2004 09:00:25 +0900
+
pbuilder (0.107) unstable; urgency=low
* Document that pdebuild accepts pbuilder options as pdebuild
diff --git a/examples/D10tmp b/examples/D10tmp
index cd0594e..e31faa7 100644
--- a/examples/D10tmp
+++ b/examples/D10tmp
@@ -1,6 +1,6 @@
#!/bin/bash
#create $TMP and $TMPDIR
-[ -n "$TMP" -a ! -d "$TMP" ] && mkdir "$TMP" || true
-[ -n "$TMPDIR" -a ! -d "$TMPDIR" ] && mkdir "$TMPDIR" || true
+[ -n "$TMP" -a ! -d "$TMP" ] && mkdir -p "$TMP" || true
+[ -n "$TMPDIR" -a ! -d "$TMPDIR" ] && mkdir -p "$TMPDIR" || true
diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage
index 08ff073..905690b 100755
--- a/pbuilder-buildpackage
+++ b/pbuilder-buildpackage
@@ -87,14 +87,14 @@ export PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin"
executehooks "A"
if [ -z "$DEBEMAIL" ]; then
- DPKG_COMMANDLINE="cd tmp/buildd/*/; $SUTOUSER dpkg-buildpackage -us -uc $DEBBUILDOPTS"
+ DPKG_COMMANDLINE="cd tmp/buildd/*/; dpkg-buildpackage -us -uc $DEBBUILDOPTS"
else
- DPKG_COMMANDLINE="cd tmp/buildd/*/; $SUTOUSER dpkg-buildpackage -us -uc \"-m$DEBEMAIL\" $DEBBUILDOPTS"
+ DPKG_COMMANDLINE="cd tmp/buildd/*/; dpkg-buildpackage -us -uc \"-m$DEBEMAIL\" $DEBBUILDOPTS"
fi
(
: Build process
- echo "${DPKG_COMMANDLINE}" | $CHROOTEXEC /bin/bash
+ echo "${DPKG_COMMANDLINE}" | $CHROOTEXEC $SUTOUSER /bin/bash
) &
BUILD_PID=$!
if [ -n "${TIMEOUT_TIME}" ]; then
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux
index 14547b5..33b4928 100755
--- a/pbuilder-user-mode-linux
+++ b/pbuilder-user-mode-linux
@@ -127,6 +127,7 @@ else
fi
pbuilder "$1" ${UML_EXTRAOPT} \${EXTRAOPT[@]} --buildresult "\${BUILDRESULT}" --buildplace "${UML_CHROOT_MOUNTPOINT}" --internal-build-uml ${BUILDING_DSC_FILE} ${UML_EXECUTE_EXTRAOPT}
echo \$? > /proc/exitcode
+/sbin/halt -d -f
EOF
chmod a+x ${INSIDE_PBUILDER}
diff --git a/testsuite/normal/iostat b/testsuite/normal/iostat
index df9567b..f9640c4 100644
--- a/testsuite/normal/iostat
+++ b/testsuite/normal/iostat
@@ -1,1830 +1,2174 @@
-Linux 2.6.5 (atoron) 06/19/04
+Linux 2.6.7 (atoron) 07/14/04
-Time: 11:37:52
+Time: 06:31: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 328.42 47.99 84.67 15.41 3003.67 228.06 1501.83 114.03 32.29 7.93 79.22 6.35 63.55
+hda 0.79 51.05 23.00 79.01 550.14 1044.87 275.07 522.43 15.64 2.90 28.19 1.94 19.75
-Time: 11:37:53
+Time: 06:31: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 2.02 0.00 53.54 2.02 1373.74 8.08 686.87 4.04 24.87 0.76 16.00 9.73 54.04
+hda 0.99 194.06 30.69 117.82 744.55 1663.37 372.28 831.68 16.21 16.37 248.00 3.82 56.73
-Time: 11:37:54
+Time: 06:31: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 4.00 0.00 144.00 0.00 72.00 0.00 36.00 0.05 12.00 8.50 3.40
+hda 0.00 0.00 0.99 0.00 39.60 0.00 19.80 0.00 40.00 0.02 17.00 17.00 1.68
-Time: 11:37:55
+Time: 06:31: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.99 0.00 14.85 0.00 435.64 0.00 217.82 0.00 29.33 0.07 4.87 2.60 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: 11:37:56
+Time: 06:31: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 1.01 42.42 186.87 9.09 2593.94 412.12 1296.97 206.06 15.34 4.02 20.22 2.50 48.99
+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:37:57
+Time: 06:31: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 1.87 0.00 39.25 0.00 1988.79 0.00 994.39 0.00 50.67 0.29 8.57 4.62 18.13
+hda 0.00 3279.81 1.92 71.15 23.08 27169.23 11.54 13584.62 372.11 18.85 114.29 3.09 22.60
-Time: 11:37:58
+Time: 06:31: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.99 3071.29 45.54 135.64 1409.90 25655.45 704.95 12827.72 149.38 24.83 137.05 3.86 70.00
+hda 0.00 488.12 0.00 76.24 0.00 4142.57 0.00 2071.29 54.34 2.98 180.83 1.75 13.37
-Time: 11:37:59
+Time: 06:31: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 2.91 0.00 26.21 0.00 1227.18 0.00 613.59 0.00 46.81 0.20 7.52 6.81 17.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: 11:38:00
+Time: 06:32: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.99 0.00 29.70 0.00 546.53 0.00 273.27 0.00 18.40 0.21 6.97 6.27 18.61
+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:38:01
+Time: 06:32: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 2.97 280.20 52.48 21.78 1544.55 2415.84 772.28 1207.92 53.33 0.67 9.07 3.24 24.06
+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:38:02
+Time: 06:32: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 0.00 61.00 0.00 960.00 0.00 480.00 0.00 15.74 0.39 6.21 5.67 34.60
+hda 0.00 61.00 0.00 5.00 0.00 528.00 0.00 264.00 105.60 0.00 0.80 0.40 0.20
-Time: 11:38:03
+Time: 06:32: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 11.11 101.01 1.01 808.08 121.21 404.04 60.61 9.11 1.12 7.32 7.41 75.56
+hda 0.00 141.41 0.00 11.11 0.00 1220.20 0.00 610.10 109.82 0.03 3.09 0.55 0.61
-Time: 11:38:04
+Time: 06:32: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 5.88 94.12 4.90 752.94 62.75 376.47 31.37 8.24 1.68 20.65 8.34 82.55
+hda 0.00 0.00 1.01 0.00 8.08 0.00 4.04 0.00 8.00 0.02 16.00 16.00 1.62
-Time: 11:38:05
+Time: 06:32: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 84.69 0.00 677.55 0.00 338.78 0.00 8.00 0.82 9.72 9.66 81.84
+hda 0.00 0.00 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.00 0.00 0.00 0.00
-Time: 11:38:06
+Time: 06:32: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.98 102.94 0.00 823.53 39.22 411.76 19.61 8.38 0.77 7.32 7.32 75.39
+hda 0.00 0.00 8.91 0.00 71.29 0.00 35.64 0.00 8.00 0.02 2.56 2.56 2.28
-Time: 11:38:07
+Time: 06:32: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 10.10 117.17 6.06 937.37 96.97 468.69 48.48 8.39 2.16 17.66 7.70 94.85
+hda 0.00 1640.00 0.00 64.00 0.00 13632.00 0.00 6816.00 213.00 4.62 72.23 2.59 16.60
-Time: 11:38:08
+Time: 06:32: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 67.65 0.00 541.18 0.00 270.59 0.00 8.00 0.58 8.48 8.33 56.37
+hda 0.00 143.00 1.00 12.00 8.00 1240.00 4.00 620.00 96.00 0.05 3.62 1.23 1.60
-Time: 11:38:09
+Time: 06:32: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 91.26 0.00 722.33 0.00 361.17 0.00 7.91 0.60 6.70 6.63 60.49
+hda 0.00 0.00 1.02 0.00 8.16 0.00 4.08 0.00 8.00 0.00 0.00 0.00 0.00
-Time: 11:38:10
+Time: 06:32: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 74.00 0.00 600.00 0.00 300.00 0.00 8.11 0.62 8.36 8.36 61.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: 11:38:11
+Time: 06:32: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 2.00 112.00 0.00 888.00 32.00 444.00 16.00 8.21 1.04 8.51 8.16 91.40
+hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.02 20.00 20.00 1.98
-Time: 11:38:12
+Time: 06:32: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 4.00 97.00 4.00 784.00 48.00 392.00 24.00 8.24 0.84 9.13 7.74 78.20
+hda 0.00 1770.30 0.00 86.14 0.00 14986.14 0.00 7493.07 173.98 11.52 91.64 2.49 21.49
-Time: 11:38:13
+Time: 06:32: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 1966.00 96.00 12.00 768.00 16384.00 384.00 8192.00 158.81 44.21 37.23 8.91 96.20
+hda 0.00 170.00 0.00 30.00 0.00 1464.00 0.00 732.00 48.80 0.39 135.20 1.77 5.30
-Time: 11:38:14
+Time: 06:32: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 19.00 56.00 72.00 448.00 168.00 224.00 84.00 4.81 40.62 631.38 7.71 98.70
+hda 0.00 22.77 0.00 4.95 0.00 221.78 0.00 110.89 44.80 0.00 1.00 0.40 0.20
-Time: 11:38:15
+Time: 06:32: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 0.00 92.00 0.00 736.00 0.00 368.00 0.00 8.00 0.86 9.50 9.25 85.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: 11:38:16
+Time: 06:32: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 1.00 99.00 0.00 800.00 24.00 400.00 12.00 8.32 0.83 8.17 8.19 81.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: 11:38:17
+Time: 06:32: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 2.00 110.00 4.00 888.00 32.00 444.00 16.00 8.07 1.45 11.48 7.12 81.20
+hda 0.00 2117.17 0.00 76.77 0.00 17608.08 0.00 8804.04 229.37 8.83 95.70 2.79 21.41
-Time: 11:38:18
+Time: 06:32: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 1700.00 86.14 18.81 681.19 14281.19 340.59 7140.59 142.57 46.98 81.70 8.07 84.65
+hda 0.00 153.54 0.00 17.17 0.00 1309.09 0.00 654.55 76.24 0.06 90.00 0.82 1.41
-Time: 11:38:19
+Time: 06:32: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 21.57 50.00 67.65 392.16 188.24 196.08 94.12 4.93 18.17 479.07 8.28 97.45
+hda 0.00 50.98 0.00 172.55 0.00 1788.24 0.00 894.12 10.36 7.06 40.92 1.20 20.69
-Time: 11:38:20
+Time: 06:32: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 58.65 0.00 469.23 0.00 234.62 0.00 8.00 0.50 8.46 7.95 46.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: 11:38:21
+Time: 06:32: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 2.86 58.10 3.81 464.76 53.33 232.38 26.67 8.37 0.48 7.77 7.77 48.10
+hda 0.00 83.00 0.00 7.00 0.00 720.00 0.00 360.00 102.86 0.02 3.14 0.71 0.50
-Time: 11:38:22
+Time: 06:32: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 1.98 88.12 46.53 712.87 388.12 356.44 194.06 8.18 20.57 152.73 6.59 88.71
+hda 0.00 1538.00 0.00 62.00 0.00 12800.00 0.00 6400.00 206.45 4.30 69.32 2.61 16.20
-Time: 11:38:23
+Time: 06:32: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 1746.46 57.58 73.74 460.61 14561.62 230.30 7280.81 114.40 31.28 238.09 6.12 80.30
+hda 0.00 71.00 0.00 10.00 0.00 648.00 0.00 324.00 64.80 0.01 1.40 0.50 0.50
-Time: 11:38:24
+Time: 06:32: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.98 0.00 76.24 0.00 1322.77 0.00 661.39 0.00 17.35 1.69 21.91 12.69 96.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: 11:38:25
+Time: 06:32: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 117.17 0.00 1042.42 0.00 521.21 0.00 8.90 1.09 8.65 7.35 86.16
+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:38:26
+Time: 06:32: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.98 12.75 109.80 4.90 980.39 141.18 490.20 70.59 9.78 1.87 17.40 7.15 81.96
+hda 0.98 0.00 9.80 0.00 109.80 0.00 54.90 0.00 11.20 0.18 17.90 6.00 5.88
-Time: 11:38:27
+Time: 06:32: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 3.00 5.00 79.00 30.00 3848.00 296.00 1924.00 148.00 38.02 7.86 71.69 5.02 54.70
+hda 0.00 3520.20 23.23 70.71 274.75 29818.18 137.37 14909.09 320.34 25.47 53.03 2.40 22.53
-Time: 11:38:28
+Time: 06:32: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 954.00 85.00 48.00 3392.00 8016.00 1696.00 4008.00 85.77 15.16 114.36 5.32 70.80
+hda 0.00 1281.19 16.83 226.73 134.65 10994.06 67.33 5497.03 45.69 65.68 352.14 3.72 90.50
-Time: 11:38:29
+Time: 06:32: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 7.84 0.00 101.96 0.00 2392.16 0.00 1196.08 0.00 23.46 0.59 5.77 5.77 58.82
+hda 0.00 22.22 19.19 13.13 185.86 282.83 92.93 141.41 14.50 0.07 2.22 1.72 5.56
-Time: 11:38:30
+Time: 06:32: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 81.19 0.00 3794.06 0.00 1897.03 0.00 46.73 2.04 25.16 6.35 51.58
+hda 0.00 2448.51 35.64 108.91 403.96 21679.21 201.98 10839.60 152.77 27.19 74.05 2.42 34.95
-Time: 11:38:31
+Time: 06:32: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 4.00 26.00 105.00 9.00 2560.00 280.00 1280.00 140.00 24.91 1.15 10.08 3.21 36.60
+hda 0.00 3722.00 0.00 281.00 0.00 31824.00 0.00 15912.00 113.25 144.90 382.11 3.56 100.10
-Time: 11:38:32
+Time: 06:32: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 153.00 0.00 1832.00 0.00 916.00 0.00 11.97 0.79 5.16 5.01 76.60
+hda 1.02 1668.37 26.53 266.33 269.39 14424.49 134.69 7212.24 50.17 43.73 338.07 3.06 89.49
-Time: 11:38:33
+Time: 06:32: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 1635.35 130.30 60.61 1042.42 13575.76 521.21 6787.88 76.57 16.95 88.07 5.01 95.56
+hda 0.00 1257.84 1.96 126.47 15.69 11074.51 7.84 5537.25 86.35 1.21 9.43 1.27 16.27
-Time: 11:38:34
+Time: 06:32: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 2.94 0.00 132.35 1.96 1709.80 7.84 854.90 3.92 12.79 1.76 13.69 6.46 86.76
+hda 0.00 3917.17 0.00 184.85 0.00 32816.16 0.00 16408.08 177.53 35.57 192.42 2.61 48.18
-Time: 11:38:35
+Time: 06:32: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 149.49 0.00 1414.14 0.00 707.07 0.00 9.46 1.82 11.95 6.29 94.04
+hda 0.00 1611.88 1.98 180.20 15.84 14352.48 7.92 7176.24 78.87 0.52 2.85 1.21 21.98
-Time: 11:38:36
+Time: 06:32: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 12.75 123.53 0.00 996.08 1356.86 498.04 678.43 19.05 2.45 10.17 6.07 75.00
+hda 0.00 2450.00 3.00 182.00 24.00 21040.00 12.00 10520.00 113.86 7.56 40.86 2.08 38.50
-Time: 11:38:37
+Time: 06:32: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 25.25 100.00 258.59 791.92 1486.87 395.96 743.43 6.35 68.32 162.92 2.82 101.11
+hda 0.00 2464.65 2.02 364.65 16.16 22634.34 8.08 11317.17 61.77 4.08 11.13 1.27 46.46
-Time: 11:38:38
+Time: 06:32: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 2714.00 71.00 164.00 568.00 23792.00 284.00 11896.00 103.66 127.75 296.49 4.26 100.10
+hda 0.00 297.06 0.00 72.55 0.00 2956.86 0.00 1478.43 40.76 0.12 1.66 1.50 10.88
-Time: 11:38:39
+Time: 06:32: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 682.00 75.00 73.00 608.00 5968.00 304.00 2984.00 44.43 148.35 512.14 6.76 100.10
+hda 0.00 3755.00 0.00 314.00 0.00 32552.00 0.00 16276.00 103.67 71.23 226.85 2.77 87.00
-Time: 11:38:40
+Time: 06:32: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 3074.26 51.49 159.41 617.82 25861.39 308.91 12930.69 125.56 147.20 1025.10 4.70 99.11
+hda 0.00 1858.59 1.01 385.86 8.08 18545.45 4.04 9272.73 47.96 14.70 25.67 1.54 59.70
-Time: 11:38:41
+Time: 06:32: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 1096.00 6.00 391.00 48.00 11824.00 24.00 5912.00 29.90 141.98 219.84 2.52 100.10
+hda 0.00 1813.86 4.95 266.34 95.05 16063.37 47.52 8031.68 59.56 10.71 56.73 1.91 51.68
-Time: 11:38:42
+Time: 06:32: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 2699.00 3.00 341.00 56.00 24304.00 28.00 12152.00 70.81 114.95 680.58 2.90 99.60
+hda 1.00 2307.00 3.00 281.00 40.00 20704.00 20.00 10352.00 73.04 2.08 7.31 1.82 51.70
-Time: 11:38:43
+Time: 06:32: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 774.26 5.94 226.73 47.52 6946.53 23.76 3473.27 30.06 24.75 137.47 3.06 71.09
+hda 0.00 1051.00 0.00 429.00 0.00 11840.00 0.00 5920.00 27.60 0.68 1.59 1.02 43.70
-Time: 11:38:44
+Time: 06:32: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 1081.19 0.99 103.96 7.92 9481.19 3.96 4740.59 90.42 1.02 9.76 1.18 12.38
+hda 0.00 833.00 0.00 380.00 0.00 9712.00 0.00 4856.00 25.56 0.41 1.06 0.91 34.70
-Time: 11:38:45
+Time: 06:32: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 109.09 7.07 124.24 56.57 1866.67 28.28 933.33 14.65 1.07 8.12 0.87 11.41
+hda 0.00 609.09 0.00 252.53 0.00 6884.85 0.00 3442.42 27.26 0.53 2.10 1.05 26.57
-Time: 11:38:46
+Time: 06:32: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 3913.46 0.00 186.54 0.00 32800.00 0.00 16400.00 175.84 34.68 185.92 2.85 53.08
+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:38:47
+Time: 06:32: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 860.00 9.00 227.00 72.00 8696.00 36.00 4348.00 37.15 2.54 10.75 1.33 31.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: 11:38:48
+Time: 06:32: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 287.88 2.02 170.71 16.16 3676.77 8.08 1838.38 21.38 1.20 6.95 0.67 11.62
+hda 0.00 1142.00 0.00 148.00 0.00 10360.00 0.00 5180.00 70.00 1.62 10.97 0.81 12.00
-Time: 11:38:49
+Time: 06:32: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 471.57 0.00 46.08 0.00 4141.18 0.00 2070.59 89.87 0.21 4.66 2.40 11.08
+hda 0.00 3719.00 0.00 269.00 0.00 31904.00 0.00 15952.00 118.60 6.62 24.63 1.36 36.50
-Time: 11:38:50
+Time: 06:32: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 2273.00 3.00 133.00 24.00 19248.00 12.00 9624.00 141.71 6.94 51.04 2.16 29.40
+hda 0.00 3309.00 2.00 228.00 16.00 28296.00 8.00 14148.00 123.10 11.76 51.13 1.63 37.50
-Time: 11:38:51
+Time: 06:32: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 1278.79 0.00 226.26 0.00 12056.57 0.00 6028.28 53.29 2.55 11.27 0.78 17.58
+hda 0.00 3242.42 41.41 150.51 2892.93 27498.99 1446.46 13749.49 158.36 7.31 18.93 2.35 45.05
-Time: 11:38:52
+Time: 06:32: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 1180.81 7.07 263.64 64.65 11571.72 32.32 5785.86 42.99 2.14 7.82 0.84 22.63
+hda 0.99 3164.36 29.70 193.07 839.60 27200.00 419.80 13600.00 125.87 19.47 48.97 1.81 40.30
-Time: 11:38:53
+Time: 06:32: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 183.33 130.39 28.43 6156.86 1717.65 3078.43 858.82 49.58 4.20 25.78 5.49 87.16
+hda 0.00 2648.51 0.00 227.72 0.00 22827.72 0.00 11413.86 100.24 32.67 138.99 2.12 48.22
-Time: 11:38:54
+Time: 06:32: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 321.43 29.59 218.37 2253.06 4293.88 1126.53 2146.94 26.40 4.22 17.54 1.72 42.76
+hda 0.00 524.00 0.00 399.00 0.00 7848.00 0.00 3924.00 19.67 71.18 148.64 1.96 78.30
-Time: 11:38:55
+Time: 06:32: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 15.84 0.00 1528.71 0.00 764.36 0.00 96.50 0.09 5.56 4.88 7.72
+hda 0.00 227.00 0.00 368.00 0.00 3784.00 0.00 1892.00 10.28 40.38 178.18 1.47 54.10
-Time: 11:38:56
+Time: 06:32: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 0.00 0.00 0.00 0.00 0.00 0.01 11.00 11.00 1.10
+hda 1.00 330.00 27.00 136.00 496.00 3728.00 248.00 1864.00 25.91 0.62 3.81 2.67 43.50
-Time: 11:38:57
+Time: 06:32: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 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.01 7.50 7.50 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: 11:38:58
+Time: 06:32: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 92.16 0.00 861.76 0.00 7874.51 0.00 3937.25 9.14 73.78 77.52 0.84 72.06
+hda 0.00 2943.00 0.00 110.00 0.00 24424.00 0.00 12212.00 222.04 14.32 130.22 2.71 29.80
-Time: 11:38:59
+Time: 06:32: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 3986.00 0.00 176.00 0.00 33488.00 0.00 16744.00 190.27 71.88 393.23 5.15 90.70
+hda 0.00 3646.53 2.97 149.50 23.76 30368.32 11.88 15184.16 199.32 6.12 40.16 2.36 35.94
-Time: 11:39:00
+Time: 06:33: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 726.00 2.00 95.00 128.00 6408.00 64.00 3204.00 67.38 0.75 108.10 1.54 14.90
+hda 0.00 166.67 16.16 43.43 137.37 1680.81 68.69 840.40 30.51 0.21 3.54 3.20 19.09
-Time: 11:39:01
+Time: 06:33: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.93 678.70 8.33 183.33 592.59 6903.70 296.30 3451.85 39.11 3.71 19.37 2.13 40.74
+hda 0.00 243.56 30.69 19.80 332.67 2106.93 166.34 1053.47 48.31 0.90 17.92 4.02 20.30
-Time: 11:39:02
+Time: 06:33: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 2.80 320.56 50.47 42.06 4336.45 2900.93 2168.22 1450.47 78.22 1.43 15.44 4.65 42.99
+hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 10.00 10.00 0.99
-Time: 11:39:03
+Time: 06:33: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 504.30 1.08 125.81 137.63 5049.46 68.82 2524.73 40.88 0.46 3.61 0.43 5.48
+hda 0.00 0.00 2.02 0.00 16.16 0.00 8.08 0.00 8.00 0.03 13.00 13.00 2.63
-Time: 11:39:04
+Time: 06:33: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 1114.00 6.00 193.00 56.00 10456.00 28.00 5228.00 52.82 0.72 3.64 0.76 15.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: 11:39:05
+Time: 06:33: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 1092.00 0.00 78.00 0.00 9360.00 0.00 4680.00 120.00 0.29 3.69 0.82 6.40
+hda 0.00 50.50 0.00 5.94 0.00 451.49 0.00 225.74 76.00 0.00 0.83 0.50 0.30
-Time: 11:39:06
+Time: 06:33: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 1241.41 6.06 129.29 48.48 10965.66 24.24 5482.83 81.37 0.51 3.79 1.00 13.54
+hda 0.00 2204.00 0.00 103.00 0.00 18456.00 0.00 9228.00 179.18 13.25 128.65 3.07 31.60
-Time: 11:39:07
+Time: 06:33: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 155.45 0.00 44.55 0.00 1600.00 0.00 800.00 35.91 0.02 0.51 0.51 2.28
+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:39:08
+Time: 06:33: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 580.20 6.93 350.50 63.37 7960.40 31.68 3980.20 22.45 8.27 10.17 0.94 33.56
+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:39:09
+Time: 06:33: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 368.27 0.00 178.85 0.00 3900.00 0.00 1950.00 21.81 3.23 43.23 0.92 16.54
+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:39:10
+Time: 06:33: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 312.12 0.00 112.12 0.00 3393.94 0.00 1696.97 30.27 0.11 1.02 1.01 11.31
+hda 0.00 7.07 0.00 3.03 0.00 80.81 0.00 40.40 26.67 0.00 0.33 0.33 0.10
-Time: 11:39:11
+Time: 06:33: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 390.10 2.97 223.76 23.76 4918.81 11.88 2459.41 21.80 1.59 7.03 0.66 15.05
+hda 0.00 2246.00 2.00 79.00 16.00 18600.00 8.00 9300.00 229.83 10.20 125.95 3.78 30.60
-Time: 11:39:12
+Time: 06:33: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 548.51 0.00 156.44 0.00 5639.60 0.00 2819.80 36.05 0.18 1.18 1.16 18.22
+hda 0.00 0.00 1.96 0.00 15.69 0.00 7.84 0.00 8.00 0.02 9.50 9.50 1.86
-Time: 11:39:13
+Time: 06:33: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 52.53 3.03 124.24 24.24 1422.22 12.12 711.11 11.37 1.21 9.51 0.49 6.26
+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:39:14
+Time: 06:33: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 0.00 100.99 0.00 1774.26 0.00 887.13 0.00 17.57 0.30 2.98 2.98 30.10
+hda 0.00 0.00 93.00 0.00 744.00 0.00 372.00 0.00 8.00 0.06 0.59 0.59 5.50
-Time: 11:39:15
+Time: 06:33: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 35.35 72.73 8.08 824.24 347.47 412.12 173.74 14.50 0.32 3.90 3.90 31.52
+hda 0.00 6.00 0.00 3.00 0.00 72.00 0.00 36.00 24.00 0.00 0.00 0.00 0.00
-Time: 11:39:16
+Time: 06:33: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 2281.19 0.99 192.08 7.92 19786.14 3.96 9893.07 102.52 6.79 35.18 2.16 41.78
+hda 0.00 2988.00 0.00 109.00 0.00 24776.00 0.00 12388.00 227.30 16.79 154.06 3.17 34.60
-Time: 11:39:17
+Time: 06:33: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 2292.00 2.00 270.00 16.00 20528.00 8.00 10264.00 75.53 5.49 20.17 1.51 41.20
+hda 0.00 0.00 0.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 14.00 14.00 1.39
-Time: 11:39:18
+Time: 06:33: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 3569.00 0.00 232.00 0.00 30408.00 0.00 15204.00 131.07 12.55 54.10 1.77 41.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: 11:39:19
+Time: 06:33: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 3152.48 0.00 207.92 0.00 26891.09 0.00 13445.54 129.33 12.85 61.80 1.87 38.91
+hda 0.00 0.00 5.00 0.00 40.00 0.00 20.00 0.00 8.00 0.03 5.20 5.20 2.60
-Time: 11:39:20
+Time: 06:33: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 2989.90 0.00 229.29 0.00 25745.45 0.00 12872.73 112.28 26.24 114.46 1.81 41.62
+hda 0.00 7.07 0.00 3.03 0.00 80.81 0.00 40.40 26.67 0.00 0.33 0.33 0.10
-Time: 11:39:21
+Time: 06:33: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 2800.00 0.00 238.61 0.00 24308.91 0.00 12154.46 101.88 19.41 81.35 1.93 46.04
+hda 0.00 2320.59 0.98 82.35 7.84 19223.53 3.92 9611.76 230.78 8.72 104.69 3.02 25.20
-Time: 11:39:22
+Time: 06:33: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.99 411.88 4.95 601.98 55.45 9093.07 27.72 4546.53 15.07 54.58 67.95 1.15 69.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: 11:39:23
+Time: 06:33: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 26.26 12.12 289.90 121.21 1632.32 60.61 816.16 5.81 32.81 153.70 1.63 49.29
+hda 0.00 0.00 0.00 1.00 0.00 8.00 0.00 4.00 8.00 0.00 3.00 3.00 0.30
-Time: 11:39:24
+Time: 06:33: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
+hda 2.00 0.00 204.00 0.00 1744.00 0.00 872.00 0.00 8.55 0.56 2.71 2.55 52.00
+
+Time: 06:33: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 1.98 494.06 103.96 17.82 1108.91 4102.97 554.46 2051.49 42.80 0.95 7.08 5.43 66.14
+
+Time: 06:33: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 3.00 1093.00 136.00 43.00 5896.00 9080.00 2948.00 4540.00 83.66 7.87 44.41 5.16 92.40
+
+Time: 06:33: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 8.91 0.00 113.86 0.00 11746.53 0.00 5873.27 0.00 103.17 0.90 7.99 3.48 39.60
+
+Time: 06:33: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 9.09 1.01 115.15 1.01 9115.15 24.24 4557.58 12.12 78.68 1.11 8.86 4.65 54.04
-Time: 11:39:25
+Time: 06:33: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 2874.00 0.00 105.00 0.00 23832.00 0.00 11916.00 226.97 13.52 128.76 2.79 29.30
+hda 0.00 444.44 67.68 86.87 654.55 4242.42 327.27 2121.21 31.69 3.67 24.22 2.69 41.52
-Time: 11:39:26
+Time: 06:33: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 3577.00 0.00 167.00 0.00 29952.00 0.00 14976.00 179.35 6.15 36.81 1.92 32.10
+hda 0.00 126.73 72.28 5.94 570.30 1061.39 285.15 530.69 20.86 0.48 6.14 5.89 46.04
-Time: 11:39:27
+Time: 06:33: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 162.00 15.00 38.00 208.00 1600.00 104.00 800.00 34.11 0.23 4.30 2.77 14.70
+hda 0.00 3396.00 4.00 278.00 32.00 30640.00 16.00 15320.00 108.77 96.22 124.55 3.10 87.30
-Time: 11:39:28
+Time: 06:33: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 192.93 3.03 57.58 24.24 2004.04 12.12 1002.02 33.47 0.42 6.93 0.75 4.55
+hda 0.00 1509.00 12.00 199.00 96.00 12856.00 48.00 6428.00 61.38 117.34 682.73 4.74 100.10
-Time: 11:39:29
+Time: 06:33: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 5.88 0.00 47.06 0.00 23.53 0.00 8.00 0.06 10.17 10.17 5.98
+hda 0.00 584.00 69.00 78.00 552.00 4856.00 276.00 2428.00 36.79 6.85 280.50 5.78 84.90
-Time: 11:39:30
+Time: 06:33: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 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.03 13.50 13.50 2.70
+hda 0.00 320.20 56.57 134.34 460.61 3983.84 230.30 1991.92 23.28 35.44 44.11 4.96 94.75
-Time: 11:39:31
+Time: 06:33: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 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 9.00 9.00 0.90
+hda 0.00 1514.85 27.72 110.89 221.78 12689.11 110.89 6344.55 93.14 33.40 429.04 7.15 99.11
-Time: 11:39:32
+Time: 06:33: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 41.00 0.00 6.00 0.00 376.00 0.00 188.00 62.67 0.00 0.67 0.50 0.30
+hda 0.00 3133.33 13.13 152.53 105.05 27547.47 52.53 13773.74 166.93 55.19 98.94 5.51 91.21
-Time: 11:39:33
+Time: 06:33: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 1923.53 0.00 238.24 0.00 17560.78 0.00 8780.39 73.71 50.78 170.93 1.87 44.61
+hda 0.00 1162.38 5.94 157.43 47.52 9758.42 23.76 4879.21 60.02 117.68 672.41 6.07 99.11
-Time: 11:39:34
+Time: 06:33: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 15.00 0.00 36.00 0.00 136.00 0.00 68.00 3.78 0.84 308.33 1.67 6.00
+hda 0.00 473.74 59.60 80.81 476.77 3967.68 238.38 1983.84 31.65 8.51 396.66 5.26 73.84
-Time: 11:39:35
+Time: 06:33: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 6.00 0.00 112.00 0.00 56.00 0.00 18.67 0.02 3.00 3.00 1.80
+hda 0.00 950.50 127.72 24.75 1021.78 7968.32 510.89 3984.16 58.96 1.95 6.31 3.97 60.50
-Time: 11:39:36
+Time: 06:33: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 23.76 0.00 300.99 0.00 150.50 0.00 12.67 0.10 4.25 3.25 7.72
+hda 0.00 1807.92 33.66 139.60 269.31 16031.68 134.65 8015.84 94.08 15.99 61.45 4.22 73.17
-Time: 11:39:37
+Time: 06: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 89.00 0.00 1200.00 0.00 600.00 0.00 13.48 0.15 1.65 1.71 15.20
+hda 0.00 2083.17 15.84 176.24 118.81 18700.99 59.41 9350.50 97.98 65.97 189.52 4.74 91.09
-Time: 11:39:38
+Time: 06:33: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 1398.00 103.00 121.00 1392.00 13232.00 696.00 6616.00 65.29 68.16 109.72 2.76 61.80
+hda 0.00 1691.92 4.04 125.25 40.40 14311.11 20.20 7155.56 111.00 141.11 682.45 7.82 101.11
-Time: 11:39:39
+Time: 06:33: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 286.14 12.87 175.25 229.70 2621.78 114.85 1310.89 15.16 35.04 415.67 2.67 50.30
+hda 0.00 1436.36 4.04 125.25 32.32 12210.10 16.16 6105.05 94.69 128.58 839.17 7.82 101.11
-Time: 11:39:40
+Time: 06:33: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 1087.00 7.00 133.00 48.00 9008.00 24.00 4504.00 64.69 26.57 964.79 5.79 81.00
+
+Time: 06:33: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 4436.00 4.00 209.00 64.00 38048.00 32.00 19024.00 178.93 87.72 246.88 3.73 79.50
+
+Time: 06: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 1.00 2266.00 52.00 91.00 2328.00 19160.00 1164.00 9580.00 150.27 128.71 392.80 7.00 100.10
+
+Time: 06:33: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 3873.27 2.97 209.90 39.60 32522.77 19.80 16261.39 152.97 142.70 864.75 4.66 99.11
+
+Time: 06:33: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.00 1196.00 18.00 137.00 520.00 9960.00 260.00 4980.00 67.61 95.54 802.18 6.46 100.10
+
+Time: 06:33: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 1863.00 3.00 118.00 40.00 15520.00 20.00 7760.00 128.60 9.37 371.69 4.02 48.60
+
+Time: 06:33: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: 11:39:41
+Time: 06:33: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.98 0.00 7.84 7.84 3.92 3.92 16.00 0.01 14.00 15.00 1.47
+
+Time: 06:33: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 984.85 12.12 128.28 121.21 8896.97 60.61 4448.48 64.23 2.12 15.11 2.54 35.66
+
+Time: 06:33: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 1266.00 11.00 217.00 88.00 11896.00 44.00 5948.00 52.56 2.34 7.53 3.07 70.10
+
+Time: 06:33: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 1243.56 6.93 154.46 55.45 11271.29 27.72 5635.64 70.18 12.40 52.18 4.20 67.82
+
+Time: 06:33: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 1113.00 4.00 202.00 32.00 10400.00 16.00 5200.00 50.64 1.92 31.89 3.72 76.70
+
+Time: 06:33: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 1746.53 4.95 236.63 63.37 15865.35 31.68 7932.67 65.93 3.88 16.05 1.98 47.82
+
+Time: 06:33: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 298.00 9.00 60.00 104.00 2864.00 52.00 1432.00 43.01 0.17 2.39 1.80 12.40
+
+Time: 06:33: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 23.00 0.00 248.00 0.00 124.00 0.00 10.78 0.10 4.13 3.43 7.90
+
+Time: 06:33: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 6.12 0.00 3.06 0.00 73.47 0.00 36.73 24.00 0.00 0.00 0.00 0.00
+
+Time: 06:34: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: 11:39:42
+Time: 06:34: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: 11:39:43
+Time: 06:34: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 2020.20 1.01 210.10 16.16 19030.30 8.08 9515.15 90.22 57.27 114.96 1.91 40.40
+hda 0.00 819.19 0.00 59.60 0.00 7038.38 0.00 3519.19 118.10 4.13 69.10 3.08 18.38
-Time: 11:39:44
+Time: 06:34: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 318.81 0.99 207.92 0.00 3049.50 0.00 1524.75 14.60 37.45 334.10 1.94 40.50
+hda 0.00 0.00 0.00 2.00 0.00 8.00 0.00 4.00 4.00 0.00 7.00 0.50 0.10
-Time: 11:39:45
+Time: 06:34: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
+hda 0.00 8.00 0.00 12.00 0.00 160.00 0.00 80.00 13.33 0.01 0.42 0.17 0.20
+
+Time: 06:34: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.96 0.00 47.52 0.00 23.76 0.00 12.00 0.06 15.50 4.00 1.58
-Time: 11:39:46
+Time: 06:34: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: 11:39:47
+Time: 06:34: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 236.00 0.00 21.00 0.00 2056.00 0.00 1028.00 97.90 0.11 5.43 0.52 1.10
+
+Time: 06:34: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: 11:39:48
+Time: 06:34: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 2112.12 0.00 98.99 0.00 17688.89 0.00 8844.44 178.69 11.61 117.28 2.99 29.60
+hda 0.00 92.93 0.00 130.30 0.00 1785.86 0.00 892.93 13.71 1.88 14.44 0.26 3.33
-Time: 11:39:49
+Time: 06:34: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: 11:39:50
+Time: 06:34: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 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 11.00 11.00 1.10
+
+Time: 06:34: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 249.49 0.00 29.29 0.00 2230.30 0.00 1115.15 76.14 0.12 4.07 0.52 1.52
+
+Time: 06:34: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: 11:39:52
+Time: 06:34: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 2.00 15.00 1.00 120.00 24.00 60.00 12.00 9.00 0.09 5.44 3.50 5.60
+hda 0.00 6.00 0.00 3.00 0.00 72.00 0.00 36.00 24.00 0.00 0.00 0.00 0.00
-Time: 11:39:53
+Time: 06:34: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 9.00 0.00 184.00 0.00 14704.00 0.00 7352.00 0.00 79.91 1.73 9.42 3.80 69.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: 11:39:54
+Time: 06:34: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 6.93 1060.40 87.13 39.60 9877.23 8800.00 4938.61 4400.00 147.38 5.34 42.16 4.12 52.28
+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:39:55
+Time: 06:34: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 2.00 437.00 22.00 17.00 400.00 3632.00 200.00 1816.00 103.38 0.49 12.64 4.69 18.30
+hda 0.00 156.44 0.00 17.82 0.00 1394.06 0.00 697.03 78.22 0.06 3.11 0.44 0.79
-Time: 11:39:56
+Time: 06:34: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: 11:39:57
+Time: 06:34: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 3158.59 4.04 286.87 32.32 27959.60 16.16 13979.80 96.22 27.25 73.41 1.84 53.64
+hda 3.00 7.00 39.00 3.00 768.00 80.00 384.00 40.00 20.19 0.54 12.12 7.83 32.90
-Time: 11:39:58
+Time: 06:34: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 6858.00 0.00 291.00 0.00 57344.00 0.00 28672.00 197.06 69.07 217.90 3.44 100.10
+hda 2.00 0.00 66.00 0.00 928.00 0.00 464.00 0.00 14.06 0.78 12.18 7.88 52.00
-Time: 11:39:59
+Time: 06:34: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 4407.00 0.00 334.00 0.00 39336.00 0.00 19668.00 117.77 102.58 232.88 2.93 97.80
+hda 4.81 0.00 56.73 0.00 1469.23 0.00 734.62 0.00 25.90 0.46 8.03 5.88 33.37
-Time: 11:40:00
+Time: 06:34: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 5075.00 6.00 294.00 160.00 43160.00 80.00 21580.00 144.40 142.42 455.58 3.34 100.10
+hda 0.00 215.00 11.00 28.00 216.00 1944.00 108.00 972.00 55.38 0.29 7.18 2.82 11.00
-Time: 11:40:01
+Time: 06:34: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.00 4133.00 13.00 211.00 1056.00 34600.00 528.00 17300.00 159.18 146.12 564.85 4.47 100.10
+hda 1.00 0.00 19.00 0.00 384.00 0.00 192.00 0.00 20.21 0.20 11.16 7.53 14.30
-Time: 11:40:02
+Time: 06:34: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.97 555.45 27.72 131.68 1077.23 4697.03 538.61 2348.51 36.22 99.45 761.43 6.22 99.11
+hda 0.00 1890.91 13.13 161.62 153.54 16420.20 76.77 8210.10 94.84 2.32 13.27 1.53 26.77
-Time: 11:40:03
+Time: 06:34: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 1.00 6330.00 23.00 130.00 536.00 52536.00 268.00 26268.00 346.88 72.04 372.97 6.54 100.00
+hda 3.03 0.00 85.86 0.00 8953.54 0.00 4476.77 0.00 104.28 0.94 10.92 3.34 28.69
-Time: 11:40:04
+Time: 06:34: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 2.00 1445.00 25.00 201.00 584.00 12064.00 292.00 6032.00 55.96 73.73 550.26 4.37 98.70
+hda 1.96 0.00 53.92 0.00 1058.82 0.00 529.41 0.00 19.64 0.38 7.07 6.04 32.55
-Time: 11:40:05
+Time: 06:34: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 23.00 10.00 14.00 120.00 232.00 60.00 116.00 14.67 0.31 55.46 6.42 15.40
+hda 2.00 0.00 33.00 0.00 760.00 0.00 380.00 0.00 23.03 0.20 5.97 5.67 18.70
-Time: 11:40:06
+Time: 06:34: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
+hda 0.00 7.07 5.05 4.04 56.57 88.89 28.28 44.44 16.00 0.03 3.11 3.11 2.83
-Time: 11:40:07
+Time: 06:34: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 3380.20 13.86 319.80 110.89 30027.72 55.45 15013.86 90.33 88.56 181.49 2.09 69.60
-Time: 11:40:08
+Time: 06:34: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 1915.00 5.00 236.00 40.00 17216.00 20.00 8608.00 71.60 1.33 5.51 1.04 25.10
+hda 0.00 658.59 3.03 79.80 24.24 5470.71 12.12 2735.35 66.34 9.44 458.85 5.26 43.54
-Time: 11:40:09
+Time: 06:34: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 1454.46 30.69 128.71 776.24 12665.35 388.12 6332.67 84.32 4.00 25.11 2.66 42.38
+hda 0.00 2345.54 5.94 131.68 55.45 19976.24 27.72 9988.12 145.55 5.43 20.06 1.77 24.36
-Time: 11:40:10
+Time: 06:34: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 970.00 1.00 295.00 8.00 10120.00 4.00 5060.00 34.22 1.30 4.41 1.61 47.60
+hda 0.00 2698.00 32.00 138.00 256.00 22848.00 128.00 11424.00 135.91 11.27 79.25 4.44 75.40
-Time: 11:40:11
+Time: 06:34: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 1306.93 0.00 137.62 0.00 11556.44 0.00 5778.22 83.97 3.31 24.09 1.69 23.27
+hda 0.00 1700.00 34.65 120.79 269.31 14249.50 134.65 7124.75 93.40 6.77 46.71 3.84 59.70
-Time: 11:40:12
+Time: 06:34: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 206.00 1.00 48.00 32.00 2032.00 16.00 1016.00 42.12 0.11 2.16 1.24 6.10
+hda 0.00 4860.61 7.07 267.68 64.65 42286.87 32.32 21143.43 154.15 94.74 181.23 3.65 100.20
-Time: 11:40:13
+Time: 06:34: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
+hda 0.00 1143.56 4.95 171.29 39.60 10415.84 19.80 5207.92 59.33 142.20 665.63 5.62 99.11
-Time: 11:40:14
+Time: 06:34: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 622.22 5.05 161.62 40.40 6270.71 20.20 3135.35 37.87 145.92 957.09 6.07 101.11
-Time: 11:40:15
+Time: 06:34: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 0.00 1046.00 6.00 301.00 40.00 10528.00 20.00 5264.00 34.42 145.30 568.48 3.26 100.10
-Time: 11:40:16
+Time: 06:34: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 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 1678.22 2.97 160.40 31.68 14083.17 15.84 7041.58 86.40 70.33 506.92 6.07 99.11
-Time: 11:40:17
+Time: 06:34: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 603.92 0.00 42.16 0.00 5168.63 0.00 2584.31 122.60 1.09 25.79 1.60 6.76
+hda 0.00 2606.93 3.96 253.47 23.76 23849.50 11.88 11924.75 92.74 92.66 278.48 3.85 99.11
-Time: 11:40:18
+Time: 06:34: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 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 12.00 12.00 1.20
+hda 0.00 918.18 0.00 92.93 0.00 7870.71 0.00 3935.35 84.70 144.74 704.74 10.88 101.11
-Time: 11:40:19
+Time: 06:34: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 3675.76 1.01 197.98 8.08 31224.24 4.04 15612.12 156.95 146.10 973.76 5.08 101.11
-Time: 11:40:20
+Time: 06:34: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 6.93 0.00 134.65 0.00 67.33 0.00 19.43 0.08 11.29 5.71 3.96
+hda 0.00 184.00 0.00 190.00 0.00 1792.00 0.00 896.00 9.43 95.29 815.21 5.27 100.10
-Time: 11:40:21
+Time: 06:34: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 6656.44 0.00 217.82 0.00 55247.52 0.00 27623.76 253.64 52.70 252.19 4.51 98.22
-Time: 11:40:22
+Time: 06:34: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 279.41 0.00 25.49 0.00 2439.22 0.00 1219.61 95.69 0.10 3.77 0.62 1.57
+hda 0.00 246.53 0.00 299.01 0.00 4998.02 0.00 2499.01 16.72 87.01 177.86 2.86 85.64
-Time: 11:40:23
+Time: 06:34: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 87.00 0.00 1760.00 0.00 880.00 0.00 20.23 1.20 13.53 3.47 30.20
+hda 0.00 582.00 0.00 267.00 0.00 6744.00 0.00 3372.00 25.26 116.29 535.01 3.75 100.10
-Time: 11:40:24
+Time: 06:34: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 84.00 0.00 1720.00 0.00 860.00 0.00 20.48 0.93 11.33 3.08 25.90
+hda 0.00 931.31 0.00 259.60 0.00 9648.48 0.00 4824.24 37.17 114.82 349.28 3.89 101.11
-Time: 11:40:25
+Time: 06:34: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
+hda 0.00 39.60 0.00 129.70 7.92 340.59 3.96 170.30 2.69 52.73 684.82 7.59 98.42
+
+Time: 06:34: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 798.00 5.00 170.00 32.00 7768.00 16.00 3884.00 44.57 1.93 9.50 4.43 77.50
+
+Time: 06:34: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 1029.41 0.98 172.55 7.84 9592.16 3.92 4796.08 55.32 4.97 30.22 4.00 69.41
+
+Time: 06:34: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 1787.76 3.06 182.65 24.49 15779.59 12.24 7889.80 85.10 15.80 84.35 3.75 69.69
+
+Time: 06:34: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 711.88 0.99 241.58 7.92 7611.88 3.96 3805.94 31.41 0.58 2.95 2.00 48.51
+
+Time: 06:34: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 1417.17 3.03 111.11 24.24 12226.26 12.12 6113.13 107.33 2.22 19.47 2.06 23.54
+
+Time: 06:34: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 288.00 4.00 71.00 32.00 2872.00 16.00 1436.00 38.72 0.20 2.68 1.57 11.80
+
+Time: 06:34: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 1.00 0.00 1.00 0.00 16.00 0.00 8.00 16.00 0.00 3.00 3.00 0.30
-Time: 11:40:26
+Time: 06:34: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: 11:40:27
+Time: 06:34: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 91.00 0.00 21.00 0.00 896.00 0.00 448.00 42.67 0.05 2.57 0.38 0.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: 11:40:28
+Time: 06:34: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: 11:40:29
+Time: 06:34: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 763.37 0.00 92.08 0.00 6843.56 0.00 3421.78 74.32 6.65 72.17 2.80 25.74
+
+Time: 06:34: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 1.01 0.00 8.08 0.00 4.04 8.00 0.00 3.00 3.00 0.30
+
+Time: 06:35: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: 11:40:30
+Time: 06:35: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: 11:40:31
+Time: 06:35: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 3.81 0.00 68.57 0.00 34.29 0.00 18.00 0.05 13.25 3.50 1.33
+hda 5.94 12.87 79.21 15.84 1908.91 229.70 954.46 114.85 22.50 1.92 20.20 6.49 61.68
-Time: 11:40:32
+Time: 06:35: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 91.67 0.93 36.11 7.41 1029.63 3.70 514.81 28.00 0.23 6.33 0.72 2.69
+hda 4.04 233.33 72.73 27.27 1987.88 2084.85 993.94 1042.42 40.73 1.97 19.76 6.36 63.64
-Time: 11:40:33
+Time: 06:35: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 12.87 0.00 168.32 0.00 2344.55 0.00 1172.28 13.93 16.27 28.05 0.86 14.55
+hda 0.00 0.00 2.00 1.00 32.00 8.00 16.00 4.00 13.33 0.04 11.67 8.33 2.50
-Time: 11:40:34
+Time: 06:35: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 6.06 0.00 768.69 0.00 6197.98 0.00 3098.99 8.06 112.97 148.72 1.32 101.11
+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:40:35
+Time: 06:35: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 73.00 21.00 446.00 176.00 4184.00 88.00 2092.00 9.34 112.06 146.89 2.14 100.10
+hda 0.00 0.00 7.00 0.00 56.00 0.00 28.00 0.00 8.00 0.06 9.14 4.71 3.30
-Time: 11:40:36
+Time: 06:35: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 6.00 55.00 59.00 440.00 552.00 220.00 276.00 8.70 113.90 612.40 8.82 100.50
+hda 1.00 0.00 5.00 0.00 64.00 0.00 32.00 0.00 12.80 0.00 0.80 0.80 0.40
-Time: 11:40:37
+Time: 06:35: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 27.72 45.54 137.62 364.36 435.64 182.18 217.82 4.37 39.61 742.19 5.14 94.16
+hda 0.00 290.00 1.00 41.00 16.00 2656.00 8.00 1328.00 63.62 0.37 8.88 0.90 3.80
-Time: 11:40:38
+Time: 06:35: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 52.00 0.00 424.00 8.00 212.00 4.00 8.31 1.04 15.87 15.13 78.70
+hda 0.00 0.00 4.95 0.99 63.37 7.92 31.68 3.96 12.00 0.08 13.00 4.83 2.87
-Time: 11:40:39
+Time: 06:35: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 2.00 0.00 82.00 1.00 784.00 0.00 392.00 0.00 9.45 1.49 19.53 9.55 79.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: 11:40:40
+Time: 06:35: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 90.10 0.00 697.03 0.00 348.51 0.00 7.74 1.74 20.35 9.04 81.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: 11:40:41
+Time: 06:35: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 73.00 0.00 592.00 0.00 296.00 0.00 8.11 0.70 9.42 8.92 65.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: 11:40:42
+Time: 06:35: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 449.50 71.29 19.80 1869.31 3762.38 934.65 1881.19 61.83 5.98 63.00 8.32 75.74
+hda 0.00 191.00 0.00 32.00 0.00 1784.00 0.00 892.00 55.75 0.20 6.28 0.44 1.40
-Time: 11:40:43
+Time: 06:35: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 2.00 0.00 115.00 1.00 4176.00 0.00 2088.00 0.00 36.00 3.54 31.97 8.63 100.10
+hda 0.00 3.03 0.00 17.17 0.00 161.62 0.00 80.81 9.41 0.03 1.88 0.35 0.61
-Time: 11:40:44
+Time: 06:35: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 2.02 0.00 103.03 0.00 1931.31 0.00 965.66 0.00 18.75 3.13 30.94 9.72 100.10
+hda 0.98 0.00 8.82 0.00 94.12 0.00 47.06 0.00 10.67 0.10 11.78 4.56 4.02
-Time: 11:40:45
+Time: 06:35: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 2.97 117.82 87.13 6.93 1536.63 998.02 768.32 499.01 26.95 2.41 25.60 9.21 86.63
+hda 1.00 0.00 15.00 0.00 216.00 0.00 108.00 0.00 14.40 0.07 4.87 2.13 3.20
-Time: 11:40:46
+Time: 06:35: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.98 0.00 93.07 0.00 1227.72 0.00 613.86 0.00 13.19 1.71 18.71 9.80 91.19
+hda 0.00 0.00 28.28 0.00 242.42 0.00 121.21 0.00 8.57 0.16 5.68 3.71 10.51
-Time: 11:40:47
+Time: 06:35: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 402.02 67.68 48.48 541.41 4783.84 270.71 2391.92 45.84 60.06 81.57 7.52 87.37
+hda 0.00 498.99 57.58 47.47 460.61 4371.72 230.30 2185.86 46.00 2.49 23.73 5.54 58.18
-Time: 11:40:48
+Time: 06:35: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 377.23 27.72 267.33 221.78 4229.70 110.89 2114.85 15.09 111.92 476.83 3.36 99.11
+hda 0.00 1624.51 53.92 137.25 643.14 14094.12 321.57 7047.06 77.09 6.98 36.52 2.58 49.41
-Time: 11:40:49
+Time: 06:35: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 114.00 68.00 34.00 544.00 952.00 272.00 476.00 14.67 8.61 290.54 8.32 84.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: 11:40:50
+Time: 06:35: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 2981.00 74.00 42.00 592.00 25072.00 296.00 12536.00 221.24 57.61 77.47 8.52 98.80
+hda 0.00 2006.00 3.00 85.00 24.00 17624.00 12.00 8812.00 200.55 24.11 57.99 4.90 43.10
-Time: 11:40:51
+Time: 06:35: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 3295.00 35.00 119.00 280.00 27328.00 140.00 13664.00 179.27 112.48 736.01 6.50 100.10
+hda 0.00 1915.00 0.00 281.00 8.00 17280.00 4.00 8640.00 61.52 107.60 325.02 3.56 100.10
-Time: 11:40:52
+Time: 06:35: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 1752.53 54.55 57.58 509.09 14852.53 254.55 7426.26 137.01 122.37 680.13 9.02 101.11
+hda 0.00 3648.51 0.99 182.18 0.00 31231.68 0.00 15615.84 170.51 128.52 512.83 5.41 99.11
-Time: 11:40:53
+Time: 06:35: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 1941.58 36.63 100.99 293.07 16300.99 146.53 8150.50 120.58 144.19 894.91 7.20 99.11
+hda 0.00 4350.00 0.00 223.00 0.00 36592.00 0.00 18296.00 164.09 144.70 771.41 4.49 100.10
-Time: 11:40:54
+Time: 06:35: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 1913.00 39.00 107.00 312.00 16072.00 156.00 8036.00 112.22 139.94 1085.56 6.86 100.10
+hda 1.01 1247.47 12.12 174.75 121.21 11280.81 60.61 5640.40 61.02 148.98 490.69 5.41 101.11
-Time: 11:40:55
+Time: 06:35: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 1.01 1505.05 46.46 93.94 541.41 12816.16 270.71 6408.08 95.14 149.43 586.47 7.20 101.11
+hda 0.00 1386.14 0.00 177.23 0.00 12625.74 0.00 6312.87 71.24 138.51 936.21 5.59 99.11
-Time: 11:40:56
+Time: 06:35: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 729.00 61.00 60.00 480.00 6352.00 240.00 3176.00 56.46 148.38 1154.74 8.27 100.10
+hda 0.00 2883.00 0.00 191.00 0.00 24608.00 0.00 12304.00 128.84 145.00 771.90 5.24 100.10
-Time: 11:40:57
+Time: 06:35: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 752.00 98.00 48.00 784.00 6528.00 392.00 3264.00 50.08 149.57 847.88 6.86 100.10
+hda 0.00 1826.26 0.00 162.63 0.00 15911.11 0.00 7955.56 97.84 145.08 876.54 6.22 101.11
-Time: 11:40:58
+Time: 06:35: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 1026.73 82.18 94.06 1037.62 8720.79 518.81 4360.40 55.37 151.17 1303.94 5.62 99.11
+hda 0.00 1364.00 0.00 195.00 0.00 11448.00 0.00 5724.00 58.71 124.20 864.96 5.13 100.10
-Time: 11:40:59
+Time: 06:35: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 5627.00 22.00 283.00 8.00 47344.00 4.00 23672.00 155.25 143.76 750.76 3.28 100.10
+hda 0.00 6227.72 0.00 185.15 0.00 52134.65 0.00 26067.33 281.58 76.59 325.06 5.33 98.61
-Time: 11:41:00
+Time: 06:35: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 6391.00 0.00 259.00 0.00 53176.00 0.00 26588.00 205.31 143.25 520.36 3.86 100.10
+hda 0.00 4181.19 0.00 233.66 0.00 35089.11 0.00 17544.55 150.17 137.34 593.80 4.24 99.11
-Time: 11:41:01
+Time: 06:35: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 2809.00 8.00 234.00 168.00 23248.00 84.00 11624.00 96.76 70.10 455.62 4.13 99.90
+hda 0.00 1786.87 9.09 171.72 72.73 14828.28 36.36 7414.14 82.41 32.64 418.83 4.95 89.49
-Time: 11:41:02
+Time: 06:35: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 1637.00 91.00 52.00 928.00 13648.00 464.00 6824.00 101.93 26.66 100.99 6.76 96.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: 11:41:03
+Time: 06:35: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.00 7.00 99.00 27.00 1144.00 112.00 572.00 56.00 9.97 3.34 128.43 5.25 66.10
+hda 0.00 1536.73 0.00 310.20 0.00 14775.51 0.00 7387.76 47.63 6.02 19.40 1.52 47.14
-Time: 11:41:04
+Time: 06:35: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 2.00 0.00 23.00 0.00 672.00 0.00 336.00 0.00 29.22 0.18 8.26 5.48 12.60
+hda 0.00 1691.26 1.94 183.50 23.30 15005.83 11.65 7502.91 81.05 21.03 113.33 4.25 78.83
-Time: 11:41:05
+Time: 06:35: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 7.00 0.00 56.00 0.00 28.00 0.00 8.00 0.03 4.14 4.14 2.90
+hda 0.00 486.73 7.14 137.76 73.47 4987.76 36.73 2493.88 34.93 1.06 7.39 3.09 44.80
-Time: 11:41:06
+Time: 06:35: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 1.96 0.98 15.69 7.84 7.84 3.92 8.00 0.03 11.00 11.00 3.24
+hda 0.00 1483.00 234.00 121.00 3080.00 12832.00 1540.00 6416.00 44.82 4.26 12.01 1.88 66.70
-Time: 11:41:07
+Time: 06:35: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 1692.00 71.00 219.00 744.00 15312.00 372.00 7656.00 55.37 2.40 7.98 1.33 38.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: 11:41:08
+Time: 06:35: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 2170.30 27.72 247.52 190.10 19326.73 95.05 9663.37 70.91 6.48 23.81 2.44 67.03
+hda 0.00 7.00 4.00 3.00 32.00 80.00 16.00 40.00 16.00 0.07 9.29 4.71 3.30
-Time: 11:41:09
+Time: 06:35: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 469.00 237.00 180.00 2880.00 5184.00 1440.00 2592.00 19.34 1.99 4.74 1.91 79.80
+hda 0.00 1042.72 1.94 60.19 15.53 8831.07 7.77 4415.53 142.38 1.13 18.22 2.36 14.66
-Time: 11:41:10
+Time: 06:35: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 1548.51 1.98 144.55 15.84 13544.55 7.92 6772.28 92.54 2.39 16.34 1.88 27.52
+hda 0.00 500.00 0.00 269.70 0.00 7668.69 0.00 3834.34 28.43 131.27 306.72 3.49 94.04
-Time: 11:41:11
+Time: 06:35: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 203.00 44.00 319.00 416.00 5960.00 208.00 2980.00 17.56 25.31 30.16 1.25 45.30
+hda 0.00 330.00 5.00 204.00 40.00 3160.00 20.00 1580.00 15.31 15.45 297.22 2.50 52.20
-Time: 11:41:12
+Time: 06:35: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 2.97 3.96 499.01 95.05 4023.76 47.52 2011.88 8.19 112.25 206.56 1.99 100.00
+hda 0.00 1779.00 3.00 180.00 32.00 15672.00 16.00 7836.00 85.81 11.19 61.01 3.92 71.80
-Time: 11:41:13
+Time: 06:35: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.01 35.35 56.57 175.76 1850.51 1672.73 925.25 836.36 15.17 114.88 255.45 4.35 101.11
+hda 0.00 974.26 0.99 393.07 0.00 11881.19 0.00 5940.59 30.15 74.56 78.92 2.01 79.31
-Time: 11:41:14
+Time: 06:35: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 3.00 280.00 239.00 3392.00 1048.00 1696.00 524.00 8.55 37.14 221.21 1.67 86.90
+hda 0.00 158.59 2.15 138.04 29.45 2093.25 14.72 1046.63 15.14 80.67 671.56 5.13 71.96
-Time: 11:41:15
+Time: 06:35: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 557.43 142.57 36.63 1512.87 4847.52 756.44 2423.76 35.49 2.70 13.36 2.29 41.09
+hda 0.00 0.00 11.00 1.00 144.00 8.00 72.00 4.00 12.67 0.10 8.33 5.50 6.60
-Time: 11:41:16
+Time: 06:35: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 61.00 4.00 30.00 40.00 648.00 20.00 324.00 20.24 0.79 36.00 2.94 10.00
+hda 0.00 5.05 4.04 16.16 40.40 169.70 20.20 84.85 10.40 0.04 2.15 0.90 1.82
-Time: 11:41:17
+Time: 06:35: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 1.00 0.00 200.00 0.00 5472.00 0.00 2736.00 0.00 27.36 1.28 6.33 1.77 35.50
+hda 0.00 0.00 413.13 0.00 4678.79 0.00 2339.39 0.00 11.33 3.84 9.30 1.51 62.22
-Time: 11:41:18
+Time: 06:35: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 11.00 0.00 208.00 0.00 104.00 0.00 18.91 0.02 2.91 0.73 0.80
+hda 0.00 7.84 21.57 3.92 227.45 94.12 113.73 47.06 12.62 0.18 6.92 3.69 9.41
-Time: 11:41:19
+Time: 06:35: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
+hda 0.00 209.00 5.00 20.00 40.00 1832.00 20.00 916.00 74.88 0.17 6.68 2.36 5.90
-Time: 11:41:20
+Time: 06:35: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 68.69 1.01 17.17 8.08 686.87 4.04 343.43 38.22 0.02 1.11 0.44 0.81
+hda 0.00 0.00 53.00 0.00 752.00 0.00 376.00 0.00 14.19 1.06 19.55 2.09 11.10
-Time: 11:41:21
+Time: 06:35: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.99 0.00 7.92 0.00 3.96 0.00 8.00 0.02 16.00 16.00 1.58
+hda 0.00 115.00 50.00 130.00 352.00 2864.00 176.00 1432.00 17.87 7.80 16.10 0.73 13.20
-Time: 11:41:22
+Time: 06:35: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
+hda 0.00 303.96 0.00 250.50 0.00 4435.64 0.00 2217.82 17.71 112.21 399.91 3.96 99.11
-Time: 11:41:23
+Time: 06:35: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 1.00 2.00 115.00 16.00 24.00 8.00 12.00 0.34 35.07 445.78 5.95 69.60
-Time: 11:41:24
+Time: 06:35: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 214.00 0.00 30.00 0.00 1952.00 0.00 976.00 65.07 0.13 4.37 0.37 1.10
-Time: 11:41:25
+Time: 06:35: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 97.00 0.00 12.00 0.00 1056.00 0.00 528.00 88.00 0.13 2.42 0.42 0.50
+hda 0.00 0.00 3.96 0.00 31.68 0.00 15.84 0.00 8.00 0.05 13.00 13.00 5.15
-Time: 11:41:26
+Time: 06:35: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 29.00 6.00 26.00 64.00 256.00 32.00 128.00 10.00 0.12 7.03 1.00 3.20
+hda 0.00 0.00 16.16 1.01 339.39 8.08 169.70 4.04 20.24 0.18 10.76 4.29 7.37
-Time: 11:41:27
+Time: 06:36: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: 11:41:28
+Time: 06:36: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: 11:41:29
+Time: 06:36: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
+hda 0.00 268.00 2.00 25.00 16.00 2344.00 8.00 1172.00 87.41 0.16 5.96 1.22 3.30
-Time: 11:41:30
+Time: 06:36: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 33.66 0.00 12.87 0.00 380.20 0.00 190.10 29.54 0.02 1.15 0.23 0.30
+hda 1.00 0.00 3.00 0.00 128.00 0.00 64.00 0.00 42.67 0.04 9.67 10.33 3.10
-Time: 11:41:31
+Time: 06:36: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 1.98 0.00 7.92 0.00 3.96 4.00 0.00 0.50 0.00 0.00
+hda 0.99 0.00 31.68 0.00 617.82 0.00 308.91 0.00 19.50 0.28 9.09 4.62 14.65
-Time: 11:41:32
+Time: 06:36: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
+hda 0.00 0.00 53.00 0.00 488.00 0.00 244.00 0.00 9.21 0.41 7.77 7.77 41.20
-Time: 11:41:33
+Time: 06:36: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 16.00 0.00 184.00 0.00 92.00 0.00 11.50 0.08 4.81 2.44 3.90
+hda 0.00 0.00 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.01 7.50 7.50 1.50
-Time: 11:41:34
+Time: 06:36: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 8.00 0.00 72.00 0.00 36.00 0.00 9.00 0.10 12.38 4.62 3.70
+hda 0.00 238.00 0.00 25.00 0.00 2104.00 0.00 1052.00 84.16 0.12 4.76 0.48 1.20
-Time: 11:41:35
+Time: 06:36: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 487.88 11.11 81.82 129.29 5696.97 64.65 2848.48 62.70 3.47 29.76 1.37 12.73
+hda 2.00 0.00 50.00 0.00 872.00 0.00 436.00 0.00 17.44 0.31 6.28 6.28 31.40
-Time: 11:41:36
+Time: 06:36: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 3918.00 0.00 341.00 0.00 33024.00 0.00 16512.00 96.84 97.34 283.65 2.94 100.10
+hda 0.00 0.00 92.00 0.00 776.00 0.00 388.00 0.00 8.43 0.55 6.00 6.00 55.20
-Time: 11:41:37
+Time: 06:36: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 1008.91 0.00 23.76 0.00 8364.36 0.00 4182.18 352.00 1.30 98.71 5.50 13.07
+hda 1.00 0.00 29.00 0.00 664.00 0.00 332.00 0.00 22.90 0.00 0.14 0.14 0.40
-Time: 11:41:38
+Time: 06:36: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 7074.75 0.00 328.28 0.00 59935.35 0.00 29967.68 182.57 96.97 195.92 3.08 101.11
+hda 0.00 0.00 1.00 0.00 32.00 0.00 16.00 0.00 32.00 0.01 9.00 9.00 0.90
-Time: 11:41:39
+Time: 06:36: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 4811.88 0.99 278.22 7.92 41100.99 3.96 20550.50 147.23 121.73 438.59 3.55 99.21
+hda 0.00 88.00 0.00 11.00 0.00 792.00 0.00 396.00 72.00 0.02 1.73 0.45 0.50
-Time: 11:41:40
+Time: 06:36: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 5538.00 0.00 299.00 0.00 46608.00 0.00 23304.00 155.88 143.84 472.81 3.34 100.00
+hda 0.99 0.00 1.98 0.00 126.73 0.00 63.37 0.00 64.00 0.00 0.50 0.50 0.10
-Time: 11:41:41
+Time: 06:36: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 5615.15 0.00 265.66 0.00 46989.90 0.00 23494.95 176.88 145.19 523.73 3.81 101.11
+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:41:42
+Time: 06:36: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 2180.00 29.00 217.00 664.00 18048.00 332.00 9024.00 76.07 64.14 424.63 4.05 99.70
+hda 0.00 0.00 1.01 0.00 8.08 0.00 4.04 0.00 8.00 0.00 0.00 0.00 0.00
-Time: 11:41:43
+Time: 06:36: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 1195.96 0.00 48.48 0.00 9955.56 0.00 4977.78 205.33 3.28 67.73 3.27 15.86
+hda 0.00 0.00 8.91 0.00 95.05 0.00 47.52 0.00 10.67 0.11 12.56 5.89 5.25
-Time: 11:41:44
+Time: 06:36: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 2861.39 0.00 243.56 0.00 24847.52 0.00 12423.76 102.02 3.92 15.93 1.54 37.43
+hda 0.00 230.00 9.00 31.00 144.00 2088.00 72.00 1044.00 55.80 0.22 5.60 1.35 5.40
-Time: 11:41:45
+Time: 06:36: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 594.06 200.00 174.26 2447.52 6146.53 1223.76 3073.27 22.96 1.41 3.88 1.41 52.67
+hda 0.00 1637.62 8.91 21.78 87.13 13600.00 43.56 6800.00 445.94 4.16 14.32 5.29 16.24
-Time: 11:41:46
+Time: 06:36: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 1496.97 17.17 519.19 161.62 17858.59 80.81 8929.29 33.60 32.86 26.21 0.93 49.90
+hda 0.00 14.29 70.41 48.98 571.43 171.43 285.71 85.71 6.22 3.52 61.68 3.66 43.67
-Time: 11:41:47
+Time: 06:36: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 6.00 0.00 533.00 8.00 4296.00 4.00 2148.00 8.08 112.11 192.85 1.88 100.10
+hda 0.00 0.00 36.63 0.00 293.07 0.00 146.53 0.00 8.00 0.04 1.19 1.19 4.36
-Time: 11:41:48
+Time: 06:36: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 623.53 1.96 337.25 7.84 6839.22 3.92 3419.61 20.18 41.70 203.35 1.55 52.55
+hda 0.00 1458.00 0.00 77.00 0.00 12544.00 0.00 6272.00 162.91 1.83 13.82 1.25 9.60
-Time: 11:41:49
+Time: 06:36: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 2487.00 0.00 257.00 0.00 21960.00 0.00 10980.00 85.45 4.87 18.83 2.35 60.30
+hda 0.00 3923.76 7.92 204.95 63.37 32784.16 31.68 16392.08 154.31 19.32 93.29 3.56 75.84
-Time: 11:41:50
+Time: 06:36: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 474.00 1.00 169.00 8.00 5136.00 4.00 2568.00 30.26 0.22 1.50 1.24 21.00
+hda 0.00 7808.08 3.03 320.20 404.04 65818.18 202.02 32909.09 204.88 54.09 127.19 2.88 93.13
-Time: 11:41:51
+Time: 06:36: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 12.12 0.00 145.45 0.00 72.73 0.00 12.00 0.08 7.00 4.00 4.85
+hda 0.00 5764.00 5.00 318.00 40.00 48976.00 20.00 24488.00 151.75 112.69 300.17 3.10 100.10
-Time: 11:41:52
+Time: 06:36: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 4.04 0.00 348.48 0.00 4080.81 0.00 2040.40 0.00 11.71 2.07 5.95 1.06 36.77
+hda 0.99 6003.96 14.85 298.02 142.57 50320.79 71.29 25160.40 161.29 142.08 452.68 3.17 99.11
-Time: 11:41:53
+Time: 06:36: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 17.82 0.00 198.02 0.00 99.01 0.00 11.11 0.13 7.11 3.00 5.35
+hda 0.00 2915.15 9.09 245.45 145.45 24250.51 72.73 12125.25 95.84 53.21 325.12 3.90 99.39
-Time: 11:41:54
+Time: 06:36: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.00 0.00 16.00 0.00 8.00 0.00 16.00 0.01 10.00 10.00 1.00
+hda 1.98 0.00 33.66 0.00 871.29 0.00 435.64 0.00 25.88 0.30 8.97 6.79 22.87
-Time: 11:41:55
+Time: 06:36: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 62.00 232.00 18.00 5680.00 640.00 2840.00 320.00 25.28 6.82 27.28 2.02 50.50
+hda 0.00 150.00 3.00 14.00 64.00 1312.00 32.00 656.00 80.94 0.06 3.35 1.71 2.90
-Time: 11:41:56
+Time: 06:36: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: 11:41:57
+Time: 06:36: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 3.03 0.00 4.04 0.00 56.57 0.00 28.28 14.00 0.00 0.00 0.00 0.00
+
+Time: 06:36: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 2703.96 0.00 5.94 0.00 22368.32 0.00 11184.16 3765.33 0.47 2.83 1.17 0.69
+
+Time: 06:36: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 23.00 0.00 89.00 0.00 200.00 0.00 100.00 2.25 10.14 118.99 2.61 23.20
+
+Time: 06:36: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.99 0.00 7.92 0.00 3.96 0.00 8.00 0.02 16.00 16.00 1.58
+hda 0.00 141.41 0.00 11.11 0.00 1220.20 0.00 610.10 109.82 0.04 3.55 0.64 0.71
-Time: 11:41:58
+Time: 06:36: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: 11:41:59
+Time: 06:36: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 314.00 0.00 141.00 0.00 4536.00 0.00 2268.00 32.17 14.91 20.76 0.92 13.00
+
+Time: 06:36: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 436.63 0.00 129.70 0.00 4586.14 0.00 2293.07 35.36 112.28 536.37 7.64 99.11
+
+Time: 06:36: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 1392.86 0.00 272.45 0.00 13346.94 0.00 6673.47 48.99 122.46 384.25 3.75 102.14
+
+Time: 06:36: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 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 9.00 9.00 0.90
+hda 0.00 190.20 0.00 159.80 0.00 1843.14 0.00 921.57 11.53 84.71 975.03 4.63 73.92
-Time: 11:42:00
+Time: 06:36: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 61.00 0.00 29.00 0.00 720.00 0.00 360.00 24.83 0.07 2.31 0.24 0.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: 11:42:01
+Time: 06:36: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: 11:42:02
+Time: 06:36: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: 11:42:03
+Time: 06:36: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 1.98 0.00 15.84 0.00 7.92 0.00 8.00 0.04 18.00 9.00 1.78
+hda 0.00 1825.25 0.00 82.83 0.00 15264.65 0.00 7632.32 184.29 7.36 88.84 2.41 20.00
-Time: 11:42:04
+Time: 06:36: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 5.00 0.00 48.00 0.00 24.00 0.00 9.60 0.02 3.60 0.80 0.40
+hda 0.00 147.06 0.00 10.78 0.00 1262.75 0.00 631.37 117.09 0.03 3.18 0.55 0.59
-Time: 11:42:05
+Time: 06:36: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 97.98 0.00 45.45 0.00 1147.47 0.00 573.74 25.24 0.16 3.56 0.22 1.01
+hda 1.02 0.00 3.06 0.00 130.61 0.00 65.31 0.00 42.67 0.04 13.00 7.00 2.14
-Time: 11:42:06
+Time: 06:36: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 2.00 0.00 13.00 0.00 136.00 0.00 68.00 10.46 0.01 0.92 0.15 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: 11:42:07
+Time: 06:36: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: 11:42:08
+Time: 06:36: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 2323.00 0.00 106.00 0.00 19432.00 0.00 9716.00 183.32 11.80 111.32 2.58 27.40
+
+Time: 06:36: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 165.00 0.00 12.00 0.00 1416.00 0.00 708.00 118.00 0.04 3.58 0.58 0.70
+
+Time: 06:36: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: 11:42:09
+Time: 06:36: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: 11:42:10
+Time: 06:36: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 52.00 2.00 16.00 24.00 544.00 12.00 272.00 31.56 0.06 3.11 1.44 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: 11:42:11
+Time: 06:36: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 29.70 2.97 316.83 23.76 158.42 11.88 10.42 0.23 7.18 2.64 8.61
+hda 0.00 1069.31 0.00 47.52 0.00 8934.65 0.00 4467.33 188.00 2.03 42.79 2.35 11.19
-Time: 11:42:12
+Time: 06:36: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 96.97 0.00 783.84 0.00 391.92 0.00 8.08 0.73 7.49 4.58 44.44
+hda 0.00 148.51 0.00 10.89 0.00 1275.25 0.00 637.62 117.09 0.04 3.45 0.64 0.69
-Time: 11:42:13
+Time: 06:36: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 9.80 31.37 3.92 392.16 109.80 196.08 54.90 14.22 1.03 29.06 7.97 28.14
+hda 0.00 35.35 0.00 5.05 0.00 331.31 0.00 165.66 65.60 0.01 1.40 0.40 0.20
-Time: 11:42:14
+Time: 06:36: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.01 0.00 8.08 0.00 4.04 0.00 8.00 0.01 5.00 5.00 0.51
+hda 0.00 0.00 3.00 1.00 24.00 0.00 12.00 0.00 6.00 0.03 8.00 7.50 3.00
-Time: 11:42:15
+Time: 06:36: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 7057.00 6.00 281.00 48.00 59248.00 24.00 29624.00 206.61 55.06 176.51 3.19 91.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: 11:42:16
+Time: 06:36: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 5787.00 6.00 293.00 56.00 48984.00 28.00 24492.00 164.01 108.63 284.74 3.35 100.10
+hda 0.00 1823.00 0.00 85.00 0.00 15264.00 0.00 7632.00 179.58 8.18 96.18 2.62 22.30
-Time: 11:42:17
+Time: 06:36: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.99 2972.28 20.79 253.47 182.18 25592.08 91.09 12796.04 93.98 110.75 393.19 3.61 99.11
+hda 1.00 116.00 11.00 18.00 720.00 1072.00 360.00 536.00 61.79 0.11 3.79 2.83 8.20
-Time: 11:42:18
+Time: 06:36: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 1.01 459.60 38.38 106.06 678.79 3846.46 339.39 1923.23 31.33 8.44 274.08 4.60 66.46
+hda 0.00 20.79 1.98 7.92 15.84 229.70 7.92 114.85 24.80 0.04 4.10 3.80 3.76
-Time: 11:42:19
+Time: 06:37: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
+hda 0.00 2623.76 1.98 280.20 142.57 23231.68 71.29 11615.84 82.84 7.72 27.37 1.28 36.14
-Time: 11:42:20
+Time: 06:37: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 49.00 1.00 7.00 8.00 448.00 4.00 224.00 57.00 0.02 2.12 2.00 1.60
+hda 0.00 5361.62 2.02 171.72 56.57 45527.27 28.28 22763.64 262.37 75.54 151.39 3.14 54.55
-Time: 11:42:21
+Time: 06:37: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
+hda 0.00 2200.99 0.00 291.09 0.00 18851.49 0.00 9425.74 64.76 119.10 538.10 3.40 99.11
-Time: 11:42:22
+Time: 06:37: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 0.00 2475.76 1.01 257.58 8.08 21713.13 4.04 10856.57 84.00 4.96 61.52 1.79 46.36
-Time: 11:42:23
+Time: 06:37: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 2798.00 0.00 117.00 0.00 24776.00 0.00 12388.00 211.76 34.40 117.66 2.63 30.80
+hda 0.00 3726.26 0.00 54.55 0.00 31337.37 0.00 15668.69 574.52 7.24 15.31 1.39 7.58
-Time: 11:42:24
+Time: 06:37: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 70.71 0.00 211.11 0.00 1608.08 0.00 804.04 7.62 6.90 123.17 0.48 10.10
+hda 0.00 551.49 0.99 182.18 7.92 4800.00 3.96 2400.00 26.25 33.67 218.10 3.01 55.15
-Time: 11:42:25
+Time: 06:37: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 9.00 2.00 6.00 16.00 120.00 8.00 60.00 17.00 0.02 2.88 2.88 2.30
+hda 0.00 1616.00 1.00 186.00 8.00 14416.00 4.00 7208.00 77.13 0.56 2.97 1.03 19.20
-Time: 11:42:26
+Time: 06:37: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 3164.36 0.00 318.81 0.00 28950.50 0.00 14475.25 90.81 15.38 37.89 1.33 42.48
-Time: 11:42:27
+Time: 06:37: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 174.75 5.05 553.54 40.40 5268.69 20.20 2634.34 9.50 138.38 237.66 1.81 101.11
-Time: 11:42:28
+Time: 06:37: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 968.00 1.00 181.00 8.00 8648.00 4.00 4324.00 47.56 4.71 74.85 2.70 49.20
-Time: 11:42:29
+Time: 06:37: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 2900.00 0.00 20.00 0.00 24248.00 0.00 12124.00 1212.40 3.89 11.25 1.75 3.50
+hda 0.00 1354.00 0.00 285.00 0.00 14048.00 0.00 7024.00 49.29 19.85 11.91 1.38 39.20
-Time: 11:42:30
+Time: 06:37: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 30.61 0.00 120.41 0.00 302.04 0.00 151.02 2.51 16.62 169.09 2.56 30.82
+hda 0.00 3656.44 0.00 417.82 0.00 32720.79 0.00 16360.40 78.31 90.66 211.69 2.08 86.73
-Time: 11:42:31
+Time: 06:37: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 728.28 1.01 211.11 8.08 6448.48 4.04 3224.24 30.44 56.10 353.46 4.03 85.45
-Time: 11:42:32
+Time: 06:37: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
+hda 0.00 2500.00 0.00 323.00 0.00 22584.00 0.00 11292.00 69.92 0.68 2.12 1.04 33.70
-Time: 11:42:33
+Time: 06:37: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
+hda 0.99 2718.81 0.00 285.15 102.97 24023.76 51.49 12011.88 84.61 1.28 4.43 1.58 45.15
-Time: 11:42:34
+Time: 06:37: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 2445.45 0.00 16.16 0.00 20363.64 0.00 10181.82 1260.00 2.89 10.88 2.12 3.43
+hda 0.00 1027.27 3.03 316.16 16.16 10747.47 8.08 5373.74 33.72 0.47 1.54 1.43 45.56
-Time: 11:42:35
+Time: 06:37: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 22.77 0.00 89.11 0.00 237.62 0.00 118.81 2.67 9.90 141.04 2.67 23.76
+hda 0.00 823.76 0.00 282.18 0.00 8855.45 0.00 4427.72 31.38 0.32 1.12 1.10 30.99
-Time: 11:42:36
+Time: 06:37: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 625.25 0.00 236.36 0.00 6884.85 0.00 3442.42 29.13 0.62 2.61 1.09 25.66
-Time: 11:42:37
+Time: 06:37: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 111.88 0.00 8.91 0.00 974.26 0.00 487.13 109.33 0.02 2.56 0.56 0.50
-Time: 11:42:38
+Time: 06:37: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 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
-Time: 11:42:39
+Time: 06:37: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 1907.00 0.00 21.00 0.00 15968.00 0.00 7984.00 760.38 2.51 9.10 1.67 3.50
+hda 0.00 920.79 0.00 137.62 0.00 8491.09 0.00 4245.54 61.70 1.50 10.91 0.76 10.40
-Time: 11:42:40
+Time: 06:37: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 27.00 0.00 75.00 0.00 272.00 0.00 136.00 3.63 6.47 117.25 2.40 18.00
+hda 0.00 2730.30 0.00 265.66 0.00 23967.68 0.00 11983.84 90.22 11.49 43.25 1.49 39.60
-Time: 11:42:41
+Time: 06:37: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
+hda 0.00 2115.69 6.86 145.10 62.75 18086.27 31.37 9043.14 119.43 3.38 22.25 1.71 25.98
+
+Time: 06:37: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 3591.84 22.45 198.98 359.18 30448.98 179.59 15224.49 139.13 11.68 49.59 2.13 47.24
+
+Time: 06:37: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 2223.76 5.94 170.30 118.81 19033.66 59.41 9516.83 108.67 10.53 63.65 1.93 34.06
-Time: 11:42:42
+Time: 06:37: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 3.96 0.00 95.05 0.00 47.52 0.00 24.00 0.09 23.75 6.50 2.57
+hda 0.00 3058.16 0.00 219.39 0.00 26220.41 0.00 13110.20 119.52 25.27 115.17 1.89 41.53
-Time: 11:42:43
+Time: 06:37: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.00 0.00 121.00 0.00 976.00 0.00 488.00 8.07 1.06 8.73 0.21 2.60
+hda 0.00 2607.92 1.98 182.18 15.84 22320.79 7.92 11160.40 121.29 27.91 151.55 2.57 47.33
-Time: 11:42:44
+Time: 06:37: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 3496.00 3.00 59.00 152.00 29552.00 76.00 14776.00 479.10 15.68 46.27 2.56 15.90
+hda 0.00 767.00 7.00 397.00 64.00 10440.00 32.00 5220.00 26.00 8.13 6.41 1.13 45.80
-Time: 11:42:45
+Time: 06:37: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 5392.08 0.00 318.81 0.00 45671.29 0.00 22835.64 143.25 143.80 350.03 3.11 99.11
+hda 0.00 98.02 8.91 400.00 95.05 2867.33 47.52 1433.66 7.24 85.76 223.14 2.19 89.41
-Time: 11:42:46
+Time: 06:37: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 2648.00 0.00 334.00 0.00 22760.00 0.00 11380.00 68.14 80.58 376.99 2.82 94.30
+hda 0.00 0.00 1.96 0.00 15.69 0.00 7.84 0.00 8.00 0.02 10.00 10.00 1.96
-Time: 11:42:47
+Time: 06:37: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 1212.00 1.00 126.00 8.00 10704.00 4.00 5352.00 84.35 1.35 10.62 1.57 20.00
+hda 0.00 2808.08 2.02 102.02 16.16 23280.81 8.08 11640.40 223.92 9.57 92.03 2.34 24.34
-Time: 11:42:48
+Time: 06:37: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 4095.00 0.00 191.00 0.00 34288.00 0.00 17144.00 179.52 30.05 157.31 2.65 50.70
+hda 0.00 3410.89 0.00 142.57 0.00 28427.72 0.00 14213.86 199.39 5.48 38.43 2.35 33.47
-Time: 11:42:49
+Time: 06:37: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 3268.00 1.00 247.00 8.00 28128.00 4.00 14064.00 113.45 5.83 23.43 1.42 35.20
+hda 0.00 160.61 11.11 45.45 113.13 1648.48 56.57 824.24 31.14 0.17 2.96 2.27 12.83
-Time: 11:42:50
+Time: 06:37: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 3049.50 0.99 313.86 7.92 26899.01 3.96 13449.50 85.46 1.43 4.62 1.08 34.06
+hda 3.00 331.00 97.00 27.00 1800.00 2864.00 900.00 1432.00 37.61 1.28 10.19 3.91 48.50
-Time: 11:42:51
+Time: 06:37: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 3836.36 0.00 123.23 0.00 32169.70 0.00 16084.85 261.05 23.25 70.16 2.61 32.12
+hda 0.00 0.00 62.00 0.00 1096.00 0.00 548.00 0.00 17.68 0.21 3.60 2.85 17.70
-Time: 11:42:52
+Time: 06:37: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 2210.00 0.00 516.00 0.00 21320.00 0.00 10660.00 41.32 18.76 64.37 1.31 67.40
+hda 0.99 0.00 53.47 0.00 966.34 0.00 483.17 0.00 18.07 0.36 6.70 4.31 23.07
-Time: 11:42:53
+Time: 06:37: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 2905.94 0.00 300.99 0.00 25655.45 0.00 12827.72 85.24 1.70 5.65 1.73 51.98
+hda 0.00 0.00 15.00 0.00 160.00 0.00 80.00 0.00 10.67 0.06 4.00 4.00 6.00
-Time: 11:42:54
+Time: 06:37: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 1.01 1462.63 3.03 432.32 137.37 15167.68 68.69 7583.84 35.16 0.67 1.53 1.18 51.52
+hda 1.01 48.48 25.25 8.08 969.70 452.53 484.85 226.26 42.67 0.05 1.39 0.55 1.82
-Time: 11:42:55
+Time: 06:37: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 1072.00 0.00 475.00 0.00 12376.00 0.00 6188.00 26.05 0.69 1.47 1.07 50.60
+hda 0.00 2114.00 0.00 71.00 0.00 17680.00 0.00 8840.00 249.01 11.65 81.70 3.32 23.60
-Time: 11:42:56
+Time: 06:37: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 263.37 0.00 80.20 0.00 2740.59 0.00 1370.30 34.17 0.12 1.56 1.52 12.18
+hda 0.00 15.00 4.00 27.00 64.00 136.00 32.00 68.00 6.45 0.89 217.35 2.65 8.20
-Time: 11:42:57
+Time: 06:37: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: 11:42:58
+Time: 06:37: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 1.01 0.00 131.31 0.00 1058.59 0.00 529.29 8.06 1.42 10.78 0.16 2.12
+hda 1.98 0.00 24.75 0.00 578.22 0.00 289.11 0.00 23.36 0.11 4.56 4.56 11.29
-Time: 11:42:59
+Time: 06:37: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 2404.90 0.00 210.78 0.00 20933.33 0.00 10466.67 99.31 7.08 33.54 1.57 33.04
+hda 2.97 5.94 73.27 2.97 1592.08 71.29 796.04 35.64 21.82 0.23 3.08 3.08 23.47
-Time: 11:43:00
+Time: 06:37: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 3267.00 9.00 290.00 72.00 28480.00 36.00 14240.00 95.49 5.23 17.52 1.61 48.10
+hda 0.00 2175.00 0.00 72.00 0.00 18040.00 0.00 9020.00 250.56 9.72 109.19 3.26 23.50
-Time: 11:43:01
+Time: 06:37: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 3558.59 0.00 272.73 0.00 30650.51 0.00 15325.25 112.39 22.75 83.42 2.25 61.41
+hda 0.00 21.00 219.00 10.00 1880.00 184.00 940.00 92.00 9.01 0.81 11.67 3.14 71.80
-Time: 11:43:02
+Time: 06:37: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 4841.00 0.00 184.00 0.00 41104.00 0.00 20552.00 223.39 15.57 43.63 1.80 33.20
+hda 5.05 0.00 241.41 0.00 3854.55 0.00 1927.27 0.00 15.97 0.50 2.05 1.69 40.71
-Time: 11:43:03
+Time: 06:37: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 2584.16 0.00 247.52 0.00 22011.88 0.00 11005.94 88.93 39.60 155.34 2.71 67.03
+hda 1.98 0.00 8.91 0.00 403.96 0.00 201.98 0.00 45.33 0.03 4.33 3.67 3.27
-Time: 11:43:04
+Time: 06:37: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 792.00 1.00 571.00 16.00 11608.00 8.00 5804.00 20.32 26.18 35.70 1.10 62.80
+hda 0.00 3.03 661.62 0.00 5333.33 32.32 2666.67 16.16 8.11 0.64 0.82 0.83 54.95
-Time: 11:43:05
+Time: 06:37: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 31.00 0.00 406.00 0.00 2608.00 0.00 1304.00 6.42 54.33 169.29 1.44 58.30
+hda 0.00 2199.02 643.14 49.02 5294.12 18203.92 2647.06 9101.96 33.95 12.88 8.85 1.39 95.98
-Time: 11:43:06
+Time: 06:37: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 2717.17 0.00 44.44 0.00 22561.62 0.00 11280.81 507.64 9.66 45.52 3.02 13.43
+hda 2.94 10.78 56.86 30.39 1607.84 101.96 803.92 50.98 19.60 2.64 108.82 4.75 41.47
-Time: 11:43:07
+Time: 06:37: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 2209.80 0.00 112.75 0.00 18345.10 0.00 9172.55 162.71 6.72 121.75 2.38 26.86
+hda 2.02 0.00 62.63 2.02 2400.00 16.16 1200.00 8.08 37.38 0.35 5.42 4.75 30.71
-Time: 11:43:08
+Time: 06:37: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 1325.25 0.00 148.48 0.00 11563.64 0.00 5781.82 77.88 3.34 25.34 1.71 25.35
+hda 0.00 0.00 80.00 0.00 1512.00 0.00 756.00 0.00 18.90 0.54 6.56 5.67 45.40
-Time: 11:43:09
+Time: 06:37: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 3.00 2.00 100.00 0.00 2600.00 24.00 1300.00 12.00 26.24 0.82 7.39 5.61 56.10
-Time: 11:43:10
+Time: 06:37: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 845.00 0.00 122.00 0.00 7736.00 0.00 3868.00 63.41 11.46 93.95 2.25 27.50
+hda 1.98 1725.74 76.24 58.42 1695.05 14304.95 847.52 7152.48 118.82 7.51 47.41 4.85 65.25
-Time: 11:43:11
+Time: 06:37: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
+hda 1.01 10.10 80.81 7.07 1696.97 96.97 848.48 48.48 20.41 0.66 21.80 5.60 49.19
-Time: 11:43:12
+Time: 06:37: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 1.00 0.00 129.00 0.00 1664.00 0.00 832.00 0.00 12.90 0.66 5.08 4.31 55.60
-Time: 11:43:13
+Time: 06:37: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 42.00 0.00 5.00 0.00 376.00 0.00 188.00 75.20 0.00 0.60 0.40 0.20
+hda 0.00 0.00 29.70 0.00 237.62 0.00 118.81 0.00 8.00 0.13 4.63 4.43 13.17
-Time: 11:43:14
+Time: 06:37: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 71.00 3.00 9.00 24.00 640.00 12.00 320.00 55.33 0.03 2.75 1.92 2.30
-Time: 11:43:15
+Time: 06:37: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 2637.00 0.00 296.00 0.00 24704.00 0.00 12352.00 83.46 64.34 154.71 1.51 44.80
+hda 0.00 1948.00 0.00 69.00 0.00 16136.00 0.00 8068.00 233.86 6.40 92.75 2.91 20.10
-Time: 11:43:16
+Time: 06:38: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 69.31 0.00 160.40 0.00 609.90 0.00 304.95 3.80 28.54 292.44 2.27 36.44
+hda 1.00 0.00 123.00 0.00 1088.00 0.00 544.00 0.00 8.85 0.34 2.76 1.81 22.30
-Time: 11:43:17
+Time: 06:38: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 6.00 117.00 16.00 1136.00 176.00 568.00 88.00 9.86 1.10 8.26 4.32 57.40
-Time: 11:43:18
+Time: 06:38: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
+hda 4.00 1.00 140.00 1.00 3496.00 24.00 1748.00 12.00 24.96 2.55 13.91 5.96 84.10
-Time: 11:43:19
+Time: 06:38: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 4.00 493.00 160.00 20.00 9888.00 4096.00 4944.00 2048.00 77.69 5.59 34.28 5.05 90.90
-Time: 11:43:20
+Time: 06:38: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 2503.00 0.00 265.00 0.00 23392.00 0.00 11696.00 88.27 62.35 154.84 1.64 43.40
+hda 10.00 519.00 94.00 54.00 2312.00 4600.00 1156.00 2300.00 46.70 8.04 49.47 5.63 83.30
-Time: 11:43:21
+Time: 06:38: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 808.00 0.00 231.00 0.00 7064.00 0.00 3532.00 30.58 48.37 301.67 2.93 67.60
+hda 0.00 24.75 80.20 3.96 760.40 213.86 380.20 106.93 11.58 1.35 23.49 8.95 75.35
-Time: 11:43:22
+Time: 06:38: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 4.00 104.00 26.00 832.00 240.00 416.00 120.00 8.25 3.50 27.50 6.67 86.70
-Time: 11:43:23
+Time: 06:38: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 2001.01 39.39 207.07 323.23 18367.68 161.62 9183.84 75.84 63.23 124.23 3.59 88.48
-Time: 11:43:24
+Time: 06:38: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 1102.97 47.52 69.31 380.20 9227.72 190.10 4613.86 82.24 76.75 359.35 8.48 99.11
-Time: 11:43:25
+Time: 06:38: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 2.00 2821.00 20.00 90.00 440.00 23360.00 220.00 11680.00 216.36 15.33 138.90 3.91 43.00
+hda 0.00 2993.07 47.52 131.68 380.20 25497.03 190.10 12748.51 144.40 53.12 563.54 5.52 99.01
-Time: 11:43:26
+Time: 06:38: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 8.00 12.00 80.00 24.00 40.00 12.00 5.20 0.46 25.40 7.45 14.90
+hda 0.00 1363.27 77.55 111.22 620.41 11730.61 310.20 5865.31 65.43 140.02 327.65 5.41 102.14
-Time: 11:43:27
+Time: 06:38: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 1246.00 0.00 190.00 0.00 11744.00 0.00 5872.00 61.81 6.87 22.77 0.76 14.40
+hda 0.00 45.54 40.59 89.11 324.75 388.12 162.38 194.06 5.50 89.41 1100.53 7.64 99.11
-Time: 11:43:28
+Time: 06:38: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 6961.00 0.00 225.00 0.00 58136.00 0.00 29068.00 258.38 105.29 363.56 4.45 100.10
+hda 0.00 2324.75 21.78 155.45 174.26 20182.18 87.13 10091.09 114.86 38.07 339.43 5.55 98.32
-Time: 11:43:29
+Time: 06:38: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 5653.00 3.00 266.00 32.00 47688.00 16.00 23844.00 177.40 112.74 384.44 3.72 100.10
+hda 0.00 181.82 44.44 53.54 355.56 1535.35 177.78 767.68 19.30 57.69 364.18 10.32 101.11
-Time: 11:43:30
+Time: 06:38: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 4986.00 0.00 333.00 0.00 42448.00 0.00 21224.00 127.47 143.54 434.91 3.01 100.10
+hda 0.00 2624.75 91.09 35.64 728.71 22265.35 364.36 11132.67 181.44 76.90 290.82 7.82 99.11
-Time: 11:43:31
+Time: 06:38: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 5432.32 0.00 273.74 0.00 45785.86 0.00 22892.93 167.26 144.65 511.81 3.69 101.11
+hda 0.00 461.62 81.82 56.57 646.46 3951.52 323.23 1975.76 33.23 145.41 677.07 7.31 101.11
-Time: 11:43:32
+Time: 06:38: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 4344.12 0.00 282.35 0.00 36227.45 0.00 18113.73 128.31 127.62 493.98 3.48 98.14
+hda 0.00 727.72 46.53 104.95 380.20 6851.49 190.10 3425.74 47.74 143.50 969.20 6.54 99.11
-Time: 11:43:33
+Time: 06:38: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 2516.00 1.00 156.00 8.00 20904.00 4.00 10452.00 133.20 14.67 262.20 4.24 66.50
+hda 0.00 640.00 30.00 199.00 224.00 5744.00 112.00 2872.00 26.06 131.05 1061.60 4.37 100.10
-Time: 11:43:34
+Time: 06:38: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 7.00 0.00 3.00 0.00 80.00 0.00 40.00 26.67 0.00 0.33 0.33 0.10
+hda 0.00 1955.00 4.00 166.00 40.00 17552.00 20.00 8776.00 103.48 99.13 376.69 5.89 100.10
-Time: 11:43:35
+Time: 06:38: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 850.51 1.01 178.79 8.08 9107.07 4.04 4553.54 50.70 3.50 18.46 0.67 12.12
+hda 0.00 2288.89 6.06 119.19 40.40 19595.96 20.20 9797.98 156.77 119.06 959.15 8.07 101.11
-Time: 11:43:36
+Time: 06:38: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 3033.00 0.00 356.00 0.00 27112.00 0.00 13556.00 76.16 3.73 10.60 1.30 46.20
+hda 0.00 1757.43 5.94 144.55 126.73 15073.27 63.37 7536.63 101.00 142.33 711.46 6.59 99.11
-Time: 11:43:37
+Time: 06:38: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 757.43 27.72 265.35 308.91 8174.26 154.46 4087.13 28.95 1.10 3.52 1.97 57.72
+hda 4.00 1371.00 81.00 85.00 2776.00 11736.00 1388.00 5868.00 87.42 143.46 439.85 6.03 100.10
-Time: 11:43:38
+Time: 06:38: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 1344.00 31.00 110.00 216.00 11632.00 108.00 5816.00 84.03 4.23 30.63 2.88 40.60
+hda 0.00 1977.00 12.00 134.00 80.00 16864.00 40.00 8432.00 116.05 146.22 1372.24 6.86 100.10
-Time: 11:43:39
+Time: 06:38: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 29.70 0.00 300.99 0.00 150.50 0.00 10.13 0.36 12.23 3.20 9.50
+hda 0.00 3691.00 7.00 165.00 56.00 30808.00 28.00 15404.00 179.44 145.39 1023.61 5.82 100.10
-Time: 11:43:40
+Time: 06:38: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 11.11 0.00 137.37 0.00 68.69 0.00 12.36 0.05 4.36 2.36 2.63
+hda 0.00 1461.00 11.00 176.00 96.00 12120.00 48.00 6060.00 65.33 72.50 750.95 5.35 100.10
-Time: 11:43:41
+Time: 06:38: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 25.00 0.00 320.00 0.00 160.00 0.00 12.80 0.18 7.28 2.76 6.90
+hda 0.00 3745.54 16.83 169.31 150.50 31223.76 75.25 15611.88 168.55 29.98 165.18 5.05 94.06
-Time: 11:43:42
+Time: 06:38: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 11.88 0.00 118.81 0.00 59.41 0.00 10.00 0.12 10.42 3.50 4.16
+hda 0.00 0.00 67.00 0.00 528.00 0.00 264.00 0.00 7.88 0.52 8.03 7.82 52.40
-Time: 11:43:43
+Time: 06:38: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 531.00 0.00 75.00 64.00 4872.00 32.00 2436.00 65.81 2.10 23.16 1.75 13.10
+hda 0.00 0.00 79.80 0.00 638.38 0.00 319.19 0.00 8.00 0.55 6.92 6.92 55.25
-Time: 11:43:44
+Time: 06:38: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 1.00 52.00 12.00 6.00 88.00 440.00 44.00 220.00 29.33 0.86 68.33 13.33 24.00
+hda 0.00 757.43 69.31 43.56 562.38 6423.76 281.19 3211.88 61.89 2.11 18.43 5.68 64.06
-Time: 11:43:45
+Time: 06:38: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 41.58 0.00 444.55 0.00 4784.16 0.00 2392.08 10.76 42.87 59.83 0.86 38.32
+hda 0.00 519.00 39.00 131.00 312.00 5192.00 156.00 2596.00 32.38 3.57 20.99 5.46 92.90
-Time: 11:43:46
+Time: 06:38: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 161.62 0.00 823.23 0.00 7886.87 0.00 3943.43 9.58 113.25 142.42 1.23 101.11
+hda 0.00 373.74 37.37 63.64 298.99 3490.91 149.49 1745.45 37.52 2.07 20.54 9.15 92.42
-Time: 11:43:47
+Time: 06:38: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 2.00 7.00 140.00 104.00 248.00 52.00 124.00 2.39 15.39 189.56 2.40 35.30
+hda 0.00 706.86 27.45 178.43 219.61 7090.20 109.80 3545.10 35.50 8.21 39.58 4.52 93.04
-Time: 11:43:48
+Time: 06:38: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 65.35 0.00 22.77 0.00 712.87 0.00 356.44 31.30 0.06 2.65 0.26 0.59
+hda 0.00 1233.33 36.36 108.08 290.91 11103.03 145.45 5551.52 78.88 26.34 57.85 6.52 94.14
-Time: 11:43:49
+Time: 06:38: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
+hda 0.00 487.00 31.00 112.00 248.00 4440.00 124.00 2220.00 32.78 7.67 178.07 6.48 92.60
+
+Time: 06:38: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 1046.53 43.56 176.24 364.36 9766.34 182.18 4883.17 46.09 8.24 37.82 4.23 93.07
+
+Time: 06:38: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.01 192.93 148.48 67.68 1729.29 2084.85 864.65 1042.42 17.64 3.21 14.79 4.57 98.89
+
+Time: 06:38: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 327.00 59.00 118.00 544.00 3552.00 272.00 1776.00 23.14 2.15 12.06 5.00 88.50
+
+Time: 06:38: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 1324.75 37.62 98.02 324.75 11382.18 162.38 5691.09 86.31 11.03 81.58 5.45 73.86
+
+Time: 06:38: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 313.00 82.00 57.00 856.00 2960.00 428.00 1480.00 27.45 1.42 10.01 4.88 67.80
+
+Time: 06:38: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 12.12 80.81 4.04 735.35 129.29 367.68 64.65 10.19 2.23 26.63 7.26 61.62
+
+Time: 06:38: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 46.53 53.47 3.96 435.64 403.96 217.82 201.98 14.62 0.50 8.74 7.09 40.69
+
+Time: 06:38: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 106.06 0.00 880.81 0.00 440.40 0.00 8.30 1.03 9.62 7.46 79.09
+
+Time: 06:38: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 11.76 246.08 4.90 5231.37 133.33 2615.69 66.67 21.38 3.03 12.10 2.67 66.96
+
+Time: 06:38: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 968.69 33.33 150.51 363.64 9195.96 181.82 4597.98 52.00 22.98 77.23 2.20 40.51
+
+Time: 06:38: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 174.26 2.97 151.49 23.76 2368.32 11.88 1184.16 15.49 7.75 105.90 2.62 40.40
+
+Time: 06:38: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.00 0.00 24.00 0.00 12.00 0.00 8.00 0.06 18.33 11.33 3.40
+
+Time: 06:38: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 80.00 0.00 1216.00 0.00 608.00 0.00 15.20 0.78 9.35 1.44 11.50
+
+Time: 06:38: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 7.00 292.00 3.00 3240.00 80.00 1620.00 40.00 11.25 2.43 8.34 1.23 36.20
+
+Time: 06:38: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 181.00 0.00 21.00 0.00 1616.00 0.00 808.00 76.95 0.11 5.14 0.52 1.10
-Time: 11:43:50
+Time: 06:38: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 16.83 0.00 134.65 0.00 67.33 0.00 8.00 0.15 9.12 9.12 15.35
+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: 11:43:51
+Time: 06:38: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 42.57 0.00 522.77 0.00 261.39 0.00 12.28 0.16 3.84 3.81 16.24
+hda 0.00 0.00 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 7.00 7.00 0.70
-Time: 11:43:52
+Time: 06:38: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 5.00 0.00 91.00 0.00 5904.00 0.00 2952.00 0.00 64.88 0.59 6.32 4.87 44.30
+hda 0.00 0.00 1.01 0.00 8.08 0.00 4.04 0.00 8.00 0.01 10.00 10.00 1.01
-Time: 11:43:53
+Time: 06:38: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 7.92 116.83 145.54 40.59 5718.81 1259.41 2859.41 629.70 37.49 1.66 9.01 3.99 74.36
+hda 0.00 6.93 0.00 2.97 0.00 79.21 0.00 39.60 26.67 0.00 0.33 0.33 0.10
-Time: 11:43:54
+Time: 06:38: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 21.78 0.00 871.29 0.00 435.64 0.00 40.00 0.29 13.18 8.86 19.31
+hda 0.00 210.10 0.00 21.21 0.00 1850.51 0.00 925.25 87.24 0.13 6.24 0.57 1.21
-Time: 11:43:55
+Time: 06:38: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: 11:43:56
+Time: 06:38: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 1.01 0.00 7.07 0.00 492.93 0.00 246.46 0.00 69.71 0.05 7.43 5.14 3.64
+hda 0.00 0.00 1.01 1.01 8.08 8.08 4.04 4.04 8.00 0.02 7.50 7.50 1.52
-Time: 11:43:57
+Time: 06:38: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: 11:43:58
+Time: 06:38: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 12.00 0.00 7.00 0.00 152.00 0.00 76.00 21.71 0.00 0.29 0.29 0.20
+hda 0.00 7.00 6.00 3.00 64.00 80.00 32.00 40.00 16.00 0.09 9.44 3.22 2.90
-Time: 11:43:59
+Time: 06:38: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 2.00 0.00 16.00 0.00 8.00 0.00 8.00 0.02 9.50 9.50 1.90
+hda 0.00 253.00 0.00 38.00 0.00 2328.00 0.00 1164.00 61.26 0.35 9.13 0.47 1.80
-Time: 11:44:00
+Time: 06:38: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 1.00 96.00 2.00 776.00 32.00 388.00 16.00 8.24 0.94 9.55 7.12 69.80
+hda 0.00 1.01 0.00 1.01 0.00 16.16 0.00 8.08 16.00 0.00 3.00 3.00 0.30
-Time: 11:44:01
+Time: 06:39: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 108.91 0.00 895.05 0.00 447.52 0.00 8.22 1.72 15.80 6.43 70.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: 11:44:02
+Time: 06:39: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 2.02 0.00 28.28 0.00 1478.79 0.00 739.39 0.00 52.29 0.21 7.50 5.07 14.34
+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:44:03
+Time: 06:39: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 165.00 20.00 20.00 424.00 2192.00 212.00 1096.00 65.40 0.75 7.65 2.88 11.50
+hda 0.00 5.05 0.00 3.03 0.00 64.65 0.00 32.32 21.33 0.00 0.33 0.33 0.10
-Time: 11:44:04
+Time: 06:39: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.99 484.16 25.74 104.95 348.51 4007.92 174.26 2003.96 33.33 5.30 43.95 3.49 45.64
+hda 0.00 176.00 4.00 11.00 32.00 1496.00 16.00 748.00 101.87 0.06 4.27 1.93 2.90
-Time: 11:44:05
+Time: 06:39: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 6.93 0.00 105.94 0.00 2756.44 7.92 1378.22 3.96 26.09 3.07 28.88 4.21 44.65
+hda 0.00 0.99 15.84 0.99 237.62 15.84 118.81 7.92 15.06 0.48 28.41 8.29 13.96
-Time: 11:44:06
+Time: 06:39: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 94.00 18.00 34.00 144.00 1016.00 72.00 508.00 22.31 0.25 5.04 2.50 13.00
+hda 0.00 0.00 6.93 0.00 118.81 0.00 59.41 0.00 17.14 0.04 5.29 3.14 2.18
-Time: 11:44:07
+Time: 06:39: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 225.00 0.00 85.00 0.00 2776.00 0.00 1388.00 32.66 2.02 12.44 0.33 2.80
+hda 0.00 1823.23 12.12 80.81 161.62 15507.07 80.81 7753.54 168.61 3.90 23.68 1.92 17.88
-Time: 11:44:08
+Time: 06:39: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 6944.00 0.00 366.00 0.00 59424.00 0.00 29712.00 162.36 101.52 195.76 2.62 95.80
+hda 4.00 127.00 102.00 125.00 10400.00 1744.00 5200.00 872.00 53.50 4.41 26.84 2.81 63.70
-Time: 11:44:09
+Time: 06:39: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 5552.00 0.00 287.00 0.00 46720.00 0.00 23360.00 162.79 143.19 485.95 3.49 100.10
+hda 9.09 0.00 90.91 0.00 11466.67 0.00 5733.33 0.00 126.13 0.85 9.33 5.11 46.46
-Time: 11:44:10
+Time: 06:39: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 3394.00 2.00 265.00 32.00 29216.00 16.00 14608.00 109.54 143.79 554.67 3.75 100.10
+hda 2.97 76.24 46.53 88.12 1116.83 1314.85 558.42 657.43 18.06 1.62 12.06 2.87 38.61
-Time: 11:44:11
+Time: 06:39: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 3276.24 14.85 256.44 182.18 27500.99 91.09 13750.50 102.04 110.12 377.55 3.65 99.11
+hda 1.00 0.00 48.00 0.00 944.00 0.00 472.00 0.00 19.67 0.64 13.25 10.04 48.20
-Time: 11:44:12
+Time: 06:39: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 6759.00 0.00 235.00 0.00 56760.00 0.00 28380.00 241.53 102.43 428.23 4.20 98.80
+hda 1.00 567.00 8.00 144.00 184.00 5968.00 92.00 2984.00 40.47 7.59 29.66 1.12 17.10
-Time: 11:44:13
+Time: 06:39: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 4141.00 0.00 265.00 0.00 34344.00 0.00 17172.00 129.60 125.27 550.52 3.78 100.10
+hda 0.00 343.00 0.00 49.00 0.00 2856.00 0.00 1428.00 58.29 3.99 144.49 8.61 42.20
-Time: 11:44:14
+Time: 06:39: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 1584.85 0.00 107.07 0.00 13204.04 0.00 6602.02 123.32 7.09 247.40 3.87 41.41
+hda 0.00 2344.00 0.00 103.00 0.00 20456.00 0.00 10228.00 198.60 15.47 13.65 2.40 24.70
-Time: 11:44:15
+Time: 06:39: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 0.00 3.03 0.00 80.81 0.00 40.40 26.67 0.00 0.33 0.33 0.10
+hda 0.00 3128.00 3.00 215.00 24.00 26768.00 12.00 13384.00 122.90 97.63 371.41 4.59 100.10
+
+Time: 06:39: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 448.51 0.00 201.98 0.00 5196.04 0.00 2598.02 25.73 112.55 343.17 4.91 99.11
-Time: 11:44:16
+Time: 06:39: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 663.37 3.96 33.66 47.52 5576.24 23.76 2788.12 149.47 1.67 44.45 3.13 11.78
+hda 0.00 1577.78 2.02 196.97 16.16 14569.70 8.08 7284.85 73.30 91.30 541.54 4.59 91.31
-Time: 11:44:17
+Time: 06:39: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 2597.03 0.00 309.90 0.00 23255.45 0.00 11627.72 75.04 3.20 10.34 1.23 38.02
+hda 0.00 2763.00 0.00 229.00 0.00 23920.00 0.00 11960.00 104.45 146.16 626.16 4.37 100.10
-Time: 11:44:18
+Time: 06:39: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 4.00 1001.00 39.00 262.00 960.00 10112.00 480.00 5056.00 36.78 1.35 4.31 2.43 73.20
+hda 0.00 2752.00 0.00 188.00 0.00 23296.00 0.00 11648.00 123.91 143.14 761.13 5.32 100.10
-Time: 11:44:19
+Time: 06:39: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 1269.00 92.00 73.00 1456.00 10880.00 728.00 5440.00 74.76 5.43 20.38 5.90 97.40
+hda 0.00 1180.39 0.00 207.84 0.00 11215.69 0.00 5607.84 53.96 142.04 758.44 4.72 98.14
-Time: 11:44:20
+Time: 06:39: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 8.00 13.00 26.00 104.00 120.00 52.00 60.00 5.74 1.48 92.15 6.56 25.60
+hda 0.00 1815.00 4.00 191.00 32.00 16056.00 16.00 8028.00 82.50 141.19 671.16 5.13 100.10
-Time: 11:44:21
+Time: 06:39: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 426.00 4.00 525.00 48.00 9408.00 24.00 4704.00 17.88 50.64 63.04 1.02 53.80
+hda 0.00 2249.00 0.00 181.00 0.00 19192.00 0.00 9596.00 106.03 140.19 811.31 5.53 100.10
-Time: 11:44:22
+Time: 06:39: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 23.76 1.98 600.00 0.00 4990.10 0.00 2495.05 8.29 110.87 192.69 1.65 99.11
+hda 0.00 3.03 18.18 86.87 193.94 40.40 96.97 20.20 2.23 79.58 802.55 9.62 101.11
-Time: 11:44:23
+Time: 06:39: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 11.00 220.00 136.00 880.00 68.00 440.00 4.40 28.21 174.10 1.90 44.00
+hda 0.00 6316.00 0.00 247.00 0.00 53312.00 0.00 26656.00 215.84 101.82 379.13 4.04 99.70
-Time: 11:44:24
+Time: 06:39: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 30.61 0.00 424.49 0.00 212.24 0.00 13.87 0.40 13.00 4.20 12.86
+hda 0.00 4474.26 0.00 184.16 0.00 37330.69 0.00 18665.35 202.71 142.38 648.12 5.38 99.11
-Time: 11:44:25
+Time: 06:39: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 11.00 0.00 104.00 0.00 52.00 0.00 9.45 0.07 6.45 1.36 1.50
+hda 0.00 1771.72 0.00 201.01 0.00 14755.56 0.00 7377.78 73.41 108.14 874.27 5.03 101.11
-Time: 11:44:26
+Time: 06:39: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 631.68 0.99 63.37 15.84 5560.40 7.92 2780.20 86.65 2.59 40.23 2.06 13.27
+hda 0.00 1799.02 0.98 102.94 7.84 15137.25 3.92 7568.63 145.74 5.88 136.67 3.21 33.33
-Time: 11:44:27
+Time: 06:39: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: 11:44:28
+Time: 06:39: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.14 0.00 3.06 0.00 81.63 0.00 40.82 26.67 0.00 0.33 0.33 0.10
+
+Time: 06:39: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 1511.88 0.00 219.80 0.00 13853.47 0.00 6926.73 63.03 2.01 9.16 2.22 48.71
+
+Time: 06:39: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 938.38 0.00 222.22 0.00 9292.93 0.00 4646.46 41.82 13.39 60.19 3.63 80.61
+
+Time: 06:39: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 1246.53 2.97 121.78 23.76 10938.61 11.88 5469.31 87.87 12.87 103.32 5.02 62.57
+
+Time: 06:39: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 1226.00 0.00 321.00 0.00 12376.00 0.00 6188.00 38.55 0.77 2.39 1.37 44.00
+
+Time: 06:39: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 1328.00 5.00 100.00 40.00 11424.00 20.00 5712.00 109.18 1.90 18.10 2.20 23.10
+
+Time: 06:39: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 293.94 2.02 55.56 16.16 2795.96 8.08 1397.98 48.84 0.17 2.96 1.58 9.09
+
+Time: 06:39: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.99 0.00 7.92 0.00 3.96 0.00 8.00 0.01 15.00 15.00 1.49
+
+Time: 06:39: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: 11:44:29
+Time: 06:39: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 2.00 7.00 1.00 232.00 24.00 116.00 12.00 32.00 0.18 22.75 4.25 3.40
+
+Time: 06:39: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 3.03 0.00 64.65 0.00 32.32 21.33 0.00 0.33 0.33 0.10
+
+Time: 06:39: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 796.00 0.00 49.00 0.00 6760.00 0.00 3380.00 137.96 2.10 42.96 3.29 16.10
+
+Time: 06:39: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: 11:44:30
+Time: 06:39: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: 11:44:31
+Time: 06:39: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 2.97 0.00 6.93 0.00 79.21 0.00 39.60 11.43 0.00 0.29 0.14 0.10
+
+Time: 06:39: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 72.73 1.01 17.17 8.08 719.19 4.04 359.60 40.00 0.04 2.22 1.22 2.22
+hda 0.00 4.08 3.06 3.06 24.49 57.14 12.24 28.57 13.33 0.07 10.67 7.00 4.29
-Time: 11:44:32
+Time: 06:39: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 206.86 0.00 22.55 0.00 1835.29 0.00 917.65 81.39 0.11 4.91 0.43 0.98
+
+Time: 06:39: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: 11:44:33
+Time: 06:39: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: 11:44:34
+Time: 06:39: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 1.00 0.00 8.00 0.00 4.00 0.00 8.00 0.01 13.00 13.00 1.30
+hda 0.00 68.00 1.00 118.00 8.00 1488.00 4.00 744.00 12.57 1.78 14.97 0.38 4.50
-Time: 11:44:35
+Time: 06:39: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 4.95 1.98 2.97 15.84 63.37 7.92 31.68 16.00 0.03 5.80 5.20 2.57
-Time: 11:44:36
+Time: 06:39: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 1.00 86.00 27.00 49.00 280.00 1096.00 140.00 548.00 18.11 0.47 6.21 1.83 13.90
+hda 1.00 216.00 18.00 28.00 224.00 1952.00 112.00 976.00 47.30 0.37 8.07 1.91 8.80
-Time: 11:44:37
+Time: 06:39: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 2.97 0.00 23.76 0.00 11.88 0.00 8.00 0.02 5.33 5.33 1.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: 11:44:38
+Time: 06:39: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: 11:44:39
+Time: 06:39: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 3.03 0.00 24.24 0.00 12.12 8.00 0.01 3.00 1.00 0.30
+
+Time: 06:39: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: 11:44:40
+Time: 06:39: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 206.93 0.00 22.77 0.00 1837.62 0.00 918.81 80.70 0.11 4.70 0.48 1.09
+
+Time: 06:39: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: 11:44:41
+Time: 06:39: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 35.64 0.00 19.80 0.00 443.56 0.00 221.78 22.40 0.04 1.90 0.35 0.69
+hda 0.99 0.00 8.91 0.00 126.73 0.00 63.37 0.00 14.22 0.09 10.33 6.78 6.04
-Time: 11:44:42
+Time: 06:39: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 3.00 0.00 32.00 0.00 16.00 0.00 10.67 0.05 15.33 7.33 2.20
+hda 0.00 0.00 2.04 0.00 16.33 0.00 8.16 0.00 8.00 0.02 11.50 11.50 2.35
-Time: 11:44:43
+Time: 06:39: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 1.01 0.00 15.15 0.00 177.78 0.00 88.89 0.00 11.73 0.08 5.53 3.47 5.25
+hda 0.00 0.00 14.85 0.00 126.73 0.00 63.37 0.00 8.53 0.23 15.27 6.93 10.30
-Time: 11:44:44
+Time: 06:39: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 32.00 0.00 16.00 0.00 8.00 0.03 8.25 5.25 2.10
+hda 0.00 1877.00 3.00 187.00 24.00 16784.00 12.00 8392.00 88.46 35.45 67.67 3.91 74.20
-Time: 11:44:45
+Time: 06:40: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.99 0.00 49.50 0.00 483.17 0.00 241.58 0.00 9.76 0.40 8.16 4.60 22.77
+hda 0.00 0.00 12.87 35.64 182.18 15.84 91.09 7.92 4.08 7.14 608.00 7.41 35.94
-Time: 11:44:46
+Time: 06:40: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 1821.00 12.00 193.00 168.00 16136.00 84.00 8068.00 79.53 15.23 70.79 2.76 56.50
+hda 0.00 6.00 38.00 4.00 440.00 80.00 220.00 40.00 12.38 0.45 10.93 4.02 16.90
-Time: 11:44:47
+Time: 06:40: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 5.00 0.00 16.00 0.00 8.00 3.20 0.01 147.00 1.60 0.80
+hda 1.00 641.00 28.00 47.00 512.00 6168.00 256.00 3084.00 89.07 5.95 17.85 3.83 28.70
-Time: 11:44:48
+Time: 06:40: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 6597.98 3.03 238.38 24.24 55256.57 12.12 27628.28 228.99 47.93 129.06 3.46 83.64
+hda 1.01 4556.57 13.13 222.22 298.99 38028.28 149.49 19014.14 162.85 63.70 238.33 4.30 101.11
-Time: 11:44:49
+Time: 06:40: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 6030.69 0.00 288.12 0.00 50891.09 0.00 25445.54 176.63 94.32 306.00 3.44 99.11
+hda 2.97 5674.26 19.80 207.92 887.13 47817.82 443.56 23908.91 213.88 114.12 308.29 4.35 99.11
-Time: 11:44:50
+Time: 06:40: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 4277.00 17.00 290.00 2592.00 36736.00 1296.00 18368.00 128.10 125.58 395.13 3.26 100.10
+hda 1.20 1442.04 16.82 145.65 504.50 12331.53 252.25 6165.77 79.01 80.74 601.40 4.49 73.00
-Time: 11:44:51
+Time: 06:40: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 5131.68 0.00 333.66 0.00 43841.58 0.00 21920.79 131.39 141.83 310.88 2.97 99.11
+hda 0.99 4980.20 11.88 339.60 126.73 43746.53 63.37 21873.27 124.82 51.83 111.18 2.55 89.80
-Time: 11:44:52
+Time: 06:40: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 5349.49 0.00 246.46 0.00 44387.88 0.00 22193.94 180.10 142.16 690.18 4.10 101.11
+hda 1.00 4453.00 6.00 228.00 56.00 37440.00 28.00 18720.00 160.24 142.06 455.82 4.28 100.10
-Time: 11:44:53
+Time: 06:40: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 2244.55 0.00 191.09 0.00 18645.54 0.00 9322.77 97.58 35.18 380.51 4.24 80.99
+hda 0.00 2497.03 3.96 203.96 31.68 20760.40 15.84 10380.20 100.00 118.35 675.02 4.77 99.11
-Time: 11:44:54
+Time: 06:40: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 814.00 0.00 59.00 0.00 6992.00 0.00 3496.00 118.51 1.03 17.37 1.68 9.90
+hda 0.00 4899.00 0.00 233.00 0.00 40720.00 0.00 20360.00 174.76 34.40 259.49 3.86 89.90
-Time: 11:44:55
+Time: 06:40: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 2538.38 13.13 307.07 266.67 22755.56 133.33 11377.78 71.90 4.20 13.13 1.57 50.30
+hda 0.00 27.00 0.00 1.00 0.00 224.00 0.00 112.00 224.00 0.00 4.00 4.00 0.40
-Time: 11:44:56
+Time: 06:40: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 449.50 6.93 612.87 142.57 10241.58 71.29 5120.79 16.75 54.21 47.84 0.94 58.02
+hda 0.00 2640.40 8.08 255.56 64.65 23515.15 32.32 11757.58 89.44 12.41 23.05 1.74 45.86
-Time: 11:44:57
+Time: 06:40: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 1120.20 0.00 609.09 0.00 13826.26 0.00 6913.13 22.70 114.22 187.27 1.66 101.11
+hda 0.00 695.00 4.00 176.00 40.00 6624.00 20.00 3312.00 37.02 8.11 79.82 4.42 79.60
-Time: 11:44:58
+Time: 06:40: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 11.00 1.00 153.00 8.00 424.00 4.00 212.00 2.81 12.22 240.66 1.92 29.60
+hda 0.00 656.44 0.99 197.03 0.00 6827.72 0.00 3413.86 34.48 0.44 2.25 1.68 33.27
-Time: 11:44:59
+Time: 06:40: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
+hda 0.00 1197.98 0.00 53.54 0.00 10012.12 0.00 5006.06 187.02 3.11 58.02 3.09 16.57
+
+Time: 06:40: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 693.00 0.00 214.00 0.00 8208.00 0.00 4104.00 38.36 82.30 123.77 3.35 71.70
+
+Time: 06:40: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 95.05 0.99 335.64 7.92 3453.47 3.96 1726.73 10.28 117.75 481.78 2.94 99.11
+
+Time: 06:40: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 795.00 0.00 318.00 0.00 8848.00 0.00 4424.00 27.82 117.29 280.53 3.15 100.10
+
+Time: 06:40: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 382.00 0.00 345.00 0.00 5816.00 0.00 2908.00 16.86 114.10 280.09 2.90 100.10
+
+Time: 06:40: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 364.36 0.00 134.65 0.00 3192.08 0.00 1596.04 23.71 58.19 808.88 7.36 99.11
+
+Time: 06:40: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 305.00 5.00 93.00 40.00 3184.00 20.00 1592.00 32.90 6.02 113.95 9.43 92.40
-Time: 11:45:00
+Time: 06:40: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 1461.00 2.00 139.00 16.00 12800.00 8.00 6400.00 90.89 1.01 7.16 1.87 26.30
+hda 0.00 1482.83 5.05 170.71 40.40 13268.69 20.20 6634.34 75.72 21.73 91.93 4.03 70.91
-Time: 11:45:01
+Time: 06:40: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 2108.91 5.94 300.00 126.73 19271.29 63.37 9635.64 63.40 4.45 14.54 1.80 55.05
+hda 0.00 1092.08 4.95 203.96 39.60 10241.58 19.80 5120.79 49.21 2.90 40.55 3.51 73.27
-Time: 11:45:02
+Time: 06:40: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 1.98 4.95 63.37 12.87 1758.42 142.57 879.21 71.29 24.94 1.25 16.38 7.12 54.26
+hda 0.00 291.00 2.00 112.00 16.00 3216.00 8.00 1608.00 28.35 0.27 2.39 2.18 24.90
-Time: 11:45:03
+Time: 06:40: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 2.02 13.13 36.36 5.05 743.43 145.45 371.72 72.73 21.46 0.63 15.20 7.90 32.73
+hda 0.00 0.00 15.00 0.00 176.00 0.00 88.00 0.00 11.73 0.09 5.93 3.40 5.10
-Time: 11:45:04
+Time: 06:40: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.01 0.00 195.96 0.00 2343.43 0.00 1171.72 0.00 11.96 1.24 6.31 1.13 22.22
+hda 1.02 0.00 24.49 0.00 293.88 0.00 146.94 0.00 12.00 0.14 5.54 1.87 4.59
-Time: 11:45:05
+Time: 06:40: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.99 0.00 9.90 0.00 126.73 0.00 63.37 0.00 12.80 0.09 8.50 3.50 3.47
+hda 0.00 5.88 8.82 2.94 94.12 70.59 47.06 35.29 14.00 0.09 7.75 2.58 3.04
-Time: 11:45:06
+Time: 06:40: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 108.00 3.00 32.00 32.00 1120.00 16.00 560.00 32.91 0.14 4.34 0.94 3.30
+hda 0.00 0.00 1.01 0.00 16.16 0.00 8.08 0.00 16.00 0.01 9.00 9.00 0.91
-Time: 11:45:07
+Time: 06:40: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 213.13 0.00 5737.37 0.00 2868.69 0.00 26.92 1.25 5.88 1.61 34.34
+hda 0.00 214.85 0.00 24.75 0.00 1916.83 0.00 958.42 77.44 0.14 5.60 0.52 1.29
-Time: 11:45:08
+Time: 06:40: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: 11:45:09
+Time: 06:40: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: 11:45:10
+Time: 06:40: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 6.93 0.00 2.97 0.00 79.21 0.00 39.60 26.67 0.00 0.33 0.33 0.10
+
+Time: 06:40: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 8.91 0.00 126.73 0.00 63.37 0.00 14.22 0.08 8.78 3.44 3.07
+hda 1.00 0.00 8.00 0.00 120.00 0.00 60.00 0.00 15.00 0.07 9.00 3.50 2.80
-Time: 11:45:11
+Time: 06:40: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 72.73 1.01 15.15 8.08 703.03 4.04 351.52 44.00 0.02 1.50 0.81 1.31
+hda 0.00 218.00 0.00 21.00 0.00 1912.00 0.00 956.00 91.05 0.12 5.52 0.57 1.20
-Time: 11:45:12
+Time: 06:40: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: 11:45:13
+Time: 06:40: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: 11:45:14
+Time: 06:40: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 6.93 0.00 2.97 0.00 79.21 0.00 39.60 26.67 0.00 0.33 0.33 0.10
+
+Time: 06: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.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:45:15
+Time: 06: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.00 0.00 0.00 48.00 0.00 24.00 0.00 0.00 0.03 0.00 0.00 0.60
+hda 0.00 193.07 15.84 32.67 174.26 1805.94 87.13 902.97 40.82 0.33 6.82 1.20 5.84
-Time: 11:45:16
+Time: 06: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 103.00 19.00 65.00 168.00 1360.00 84.00 680.00 18.19 0.41 5.21 0.69 5.80
+hda 0.00 0.00 5.00 0.00 64.00 0.00 32.00 0.00 12.80 0.06 12.80 4.40 2.20
-Time: 11:45:17
+Time: 06: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
+hda 0.00 0.99 0.00 1.98 0.00 23.76 0.00 11.88 12.00 0.00 2.00 1.50 0.30
-Time: 11:45:18
+Time: 06: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 2.00 0.00 64.00 0.00 32.00 0.00 32.00 0.02 8.00 8.00 1.60
+hda 0.00 6.12 6.12 3.06 212.24 73.47 106.12 36.73 31.11 0.15 16.11 3.00 2.76
-Time: 11:45:19
+Time: 06: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 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:45:20
+Time: 06: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 201.01 0.00 22.22 0.00 1785.86 0.00 892.93 80.36 0.07 3.05 0.55 1.21
+
+Time: 06: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: 11:45:21
+Time: 06: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 0.99 0.99 7.92 7.92 3.96 3.96 8.00 0.01 6.50 6.50 1.29
+
+Time: 06: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 2.00 7.00 14.00 3.00 248.00 80.00 124.00 40.00 19.29 0.09 5.18 2.24 3.80
+
+Time: 06: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 0.00 23.00 0.00 192.00 0.00 96.00 0.00 8.35 0.15 6.61 4.04 9.30
+
+Time: 06: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 712.75 55.88 42.16 447.06 6039.22 223.53 3019.61 66.16 1.67 17.03 4.10 40.20
+
+Time: 06: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 1.98 0.00 5.94 0.00 63.37 0.00 31.68 10.67 0.00 0.67 0.67 0.40
+hda 0.00 15.00 83.00 5.00 768.00 160.00 384.00 80.00 10.55 0.77 8.73 4.67 41.10
-Time: 11:45:22
+Time: 06: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 3.00 0.00 24.00 0.00 12.00 0.00 8.00 0.06 19.00 7.67 2.30
+hda 0.00 196.97 29.29 124.24 234.34 2569.70 117.17 1284.85 18.26 2.92 19.04 0.99 15.15
-Time: 11:45:23
+Time: 06: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 19.00 0.00 208.00 0.00 104.00 0.00 10.95 0.13 6.84 3.05 5.80
+hda 0.00 2115.15 14.14 103.03 113.13 18157.58 56.57 9078.79 155.93 4.77 29.59 2.16 25.25
-Time: 11:45:24
+Time: 06: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 0.00 69.00 0.00 560.00 0.00 280.00 0.00 8.12 0.39 5.70 4.04 27.90
+hda 0.00 3870.59 14.71 226.47 117.65 32376.47 58.82 16188.24 134.73 20.18 88.93 3.07 74.12
-Time: 11:45:25
+Time: 06: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 9.90 60.40 3.96 578.22 110.89 289.11 55.45 10.71 0.62 9.54 4.31 27.72
+hda 0.00 7508.08 2.02 342.42 193.94 63595.96 96.97 31797.98 185.20 65.32 139.77 2.73 94.14
-Time: 11:45:26
+Time: 06: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 504.04 5.05 24.24 32.32 4339.39 16.16 2169.70 149.24 0.12 2.55 0.93 2.73
+hda 0.00 6582.18 6.93 328.71 55.45 55730.69 27.72 27865.35 166.21 112.79 284.00 2.95 99.01
-Time: 11:45:27
+Time: 06: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 4602.00 6.00 208.00 48.00 38840.00 24.00 19420.00 181.72 24.21 91.24 3.24 69.40
+hda 0.00 5758.00 12.00 309.00 104.00 48144.00 52.00 24072.00 150.31 141.89 464.71 3.12 100.10
-Time: 11:45:28
+Time: 06: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 6561.00 12.00 318.00 168.00 55456.00 84.00 27728.00 168.56 105.37 282.36 3.03 100.10
+hda 0.00 1626.26 4.04 325.25 32.32 15660.61 16.16 7830.30 47.66 106.70 285.04 3.07 101.11
-Time: 11:45:29
+Time: 06: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 2769.31 9.90 279.21 95.05 23500.99 47.52 11750.50 81.62 89.36 367.07 3.18 91.88
+hda 0.00 216.16 0.00 54.55 0.00 2004.04 0.00 1002.02 36.74 112.08 1007.69 18.54 101.11
diff --git a/testsuite/normal/pbuilder-build-dsh-sarge.log b/testsuite/normal/pbuilder-build-dsh-sarge.log
index 24d6135..b36b035 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: Sat Jun 19 11:43:25 JST 2004
-pbuilder-time-stamp: 1087613005
+Current time: Wed Jul 14 06:38:04 JST 2004
+pbuilder-time-stamp: 1089754684
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -35,28 +35,28 @@ The following NEW packages will be installed:
liblocale-gettext-perl libmagic1 libtext-charwidth-perl libtext-iconv-perl
libtext-wrapi18n-perl po-debconf
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2685kB of archives.
-After unpacking 10.8MB of additional disk space will be used.
+Need to get 2693kB of archives.
+After unpacking 10.9MB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sarge/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sarge/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sarge/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sarge/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.25 [65.4kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.25 [98.1kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main libmagic1 4.07-2 [213kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main file 4.07-2 [25.6kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.29 [99.1kB]
+Get:7 http://ring.asahi-net.or.jp sarge/main libmagic1 4.09-1 [217kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main file 4.09-1 [25.9kB]
Get:9 http://ring.asahi-net.or.jp sarge/main gettext-base 0.14.1-2 [91.0kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.25 [32.5kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.29 [32.5kB]
Get:11 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
Get:12 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-2 [1555kB]
Get:13 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040212 [23.4kB]
-Get:14 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.11 [66.7kB]
+Get:14 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.12 [66.6kB]
Get:15 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.11 [353kB]
Get:16 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
Get:17 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2685kB in 0s (3181kB/s)
+Fetched 2693kB in 0s (3787kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7380 files and directories currently installed.)
+(Reading database ... 7560 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -65,17 +65,17 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.25_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.25_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libmagic1.
-Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
+Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.25_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -83,7 +83,7 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
Selecting previously deselected package libdshconfig1.
@@ -94,9 +94,9 @@ Setting up liblocale-gettext-perl (1.01-17) ...
Setting up libtext-iconv-perl (1.2-3) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
-Setting up libmagic1 (4.07-2) ...
+Setting up libmagic1 (4.09-1) ...
-Setting up file (4.07-2) ...
+Setting up file (4.09-1) ...
Setting up gettext-base (0.14.1-2) ...
Setting up html2text (1.3.2a-1) ...
@@ -104,14 +104,14 @@ Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
+Setting up po-debconf (0.8.12) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
-Setting up debconf-i18n (1.4.25) ...
-Setting up debconf (1.4.25) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
-Setting up debconf-utils (1.4.25) ...
+Setting up debconf-utils (1.4.29) ...
Setting up debhelper (4.2.11) ...
-> Finished parsing the build-deps
@@ -120,15 +120,15 @@ 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 55.4kB of archives.
-After unpacking 193kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.9.5 [55.4kB]
+Need to get 70.4kB of archives.
+After unpacking 258kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 1.0.4 [70.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 55.4kB in 0s (1331kB/s)
+Fetched 70.4kB in 0s (1472kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 8189 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.9.5_i386.deb) ...
-Setting up fakeroot (0.9.5) ...
+(Reading database ... 8372 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.0.4_i386.deb) ...
+Setting up fakeroot (1.0.4) ...
Copying source file
-> copying [testbuild/dsh_0.25.3-1.dsc]
-> copying [testbuild/dsh_0.25.3.orig.tar.gz]
@@ -143,9 +143,6 @@ 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.3-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>
dpkg-architecture: 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)
dpkg-buildpackage: host architecture is i386
@@ -442,11 +439,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
-Sat Jun 19 02:43:53 UTC 2004
+Tue Jul 13 21:38:56 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
@@ -516,7 +513,7 @@ 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
-Sat Jun 19 02:43:59 UTC 2004
+Tue Jul 13 21:39:02 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
@@ -618,7 +615,7 @@ dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; usi
dh_md5sums
dh_builddeb
dpkg-deb: building package `dsh' in `../dsh_0.25.3-1_i386.deb'.
- dpkg-genchanges
+ dpkg-genchanges -mJunichi Uekawa <dancer@debian.org>
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)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -627,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: 10771 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: 28394 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Sat Jun 19 11:44:02 JST 2004
-pbuilder-time-stamp: 1087613042
+Current time: Wed Jul 14 06:39:05 JST 2004
+pbuilder-time-stamp: 1089754745
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/28062 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/9666 and its subdirectories
diff --git a/testsuite/normal/pbuilder-build-dsh-sid.log b/testsuite/normal/pbuilder-build-dsh-sid.log
index 4ccf68a..24fe151 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: Sat Jun 19 11:39:54 JST 2004
-pbuilder-time-stamp: 1087612794
+Current time: Wed Jul 14 06:33:28 JST 2004
+pbuilder-time-stamp: 1089754408
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -35,28 +35,28 @@ The following NEW packages will be installed:
liblocale-gettext-perl libmagic1 libtext-charwidth-perl libtext-iconv-perl
libtext-wrapi18n-perl po-debconf
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2693kB of archives.
+Need to get 2694kB of archives.
After unpacking 10.9MB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sid/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sid/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sid/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sid/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.28 [68.0kB]
-Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.28 [99.0kB]
+Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.29 [99.1kB]
Get:7 http://ring.asahi-net.or.jp sid/main libmagic1 4.09-1 [217kB]
Get:8 http://ring.asahi-net.or.jp sid/main file 4.09-1 [25.9kB]
Get:9 http://ring.asahi-net.or.jp sid/main gettext-base 0.14.1-2 [91.0kB]
-Get:10 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.28 [32.5kB]
+Get:10 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.29 [32.5kB]
Get:11 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
Get:12 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-2 [1555kB]
Get:13 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040212 [23.4kB]
-Get:14 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.11 [66.7kB]
-Get:15 http://ring.asahi-net.or.jp sid/main debhelper 4.2.11 [353kB]
+Get:14 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.12 [66.6kB]
+Get:15 http://ring.asahi-net.or.jp sid/main debhelper 4.2.15 [355kB]
Get:16 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
Get:17 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2693kB in 0s (3090kB/s)
+Fetched 2694kB in 0s (2708kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7395 files and directories currently installed.)
+(Reading database ... 7605 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -65,9 +65,9 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.28_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.28_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
@@ -75,7 +75,7 @@ Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.28_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -83,9 +83,9 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.15_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -104,31 +104,31 @@ Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
+Setting up po-debconf (0.8.12) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
-Setting up debconf-i18n (1.4.28) ...
-Setting up debconf (1.4.28) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
-Setting up debconf-utils (1.4.28) ...
+Setting up debconf-utils (1.4.29) ...
-Setting up debhelper (4.2.11) ...
+Setting up debhelper (4.2.15) ...
-> 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 55.4kB of archives.
-After unpacking 193kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.9.5 [55.4kB]
+Need to get 70.4kB of archives.
+After unpacking 258kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 1.0.4 [70.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 55.4kB in 0s (1033kB/s)
+Fetched 70.4kB in 0s (942kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 8207 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.9.5_i386.deb) ...
-Setting up fakeroot (0.9.5) ...
+(Reading database ... 8416 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.0.4_i386.deb) ...
+Setting up fakeroot (1.0.4) ...
Copying source file
-> copying [testbuild/dsh_0.25.3-1.dsc]
-> copying [testbuild/dsh_0.25.3.orig.tar.gz]
@@ -143,9 +143,6 @@ 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.3-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>
dpkg-architecture: 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)
dpkg-buildpackage: host architecture is i386
@@ -442,11 +439,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
-Sat Jun 19 02:40:29 UTC 2004
+Tue Jul 13 21:34:12 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
@@ -516,14 +513,14 @@ 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
-Sat Jun 19 02:40:35 UTC 2004
+Tue Jul 13 21:34:18 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
+a: a
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -618,7 +615,7 @@ dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; usi
dh_md5sums
dh_builddeb
dpkg-deb: building package `dsh' in `../dsh_0.25.3-1_i386.deb'.
- dpkg-genchanges
+ dpkg-genchanges -mJunichi Uekawa <dancer@debian.org>
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)
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -626,10 +623,10 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-/usr/lib/pbuilder/pbuilder-buildpackage: line 122: 7261 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-Current time: Sat Jun 19 11:40:40 JST 2004
-pbuilder-time-stamp: 1087612840
+/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 21143 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Wed Jul 14 06:34:23 JST 2004
+pbuilder-time-stamp: 1089754463
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/6920 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/20806 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sarge.log b/testsuite/normal/pbuilder-create-sarge.log
index c35f0b0..7385f77 100644
--- a/testsuite/normal/pbuilder-create-sarge.log
+++ b/testsuite/normal/pbuilder-create-sarge.log
@@ -59,6 +59,7 @@ I: Checking mawk...
I: Checking mount...
I: Checking ncurses-base...
I: Checking ncurses-bin...
+I: Checking passwd...
I: Checking patch...
I: Checking perl...
I: Checking perl-base...
@@ -178,6 +179,8 @@ I: Retrieving ncurses-base
I: Validating ncurses-base
I: Retrieving ncurses-bin
I: Validating ncurses-bin
+I: Retrieving passwd
+I: Validating passwd
I: Retrieving patch
I: Validating patch
I: Retrieving perl
@@ -238,6 +241,7 @@ I: Extracting mawk...
I: Extracting mount...
I: Extracting ncurses-base...
I: Extracting ncurses-bin...
+I: Extracting passwd...
I: Extracting perl-base...
I: Extracting sed...
I: Extracting slang1a-utf8...
@@ -249,7 +253,7 @@ I: Extracting zlib1g...
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.15_i386.deb) ...
+Unpacking base-files (from .../base-files_3.0.16_i386.deb) ...
Selecting previously deselected package base-passwd.
Unpacking base-passwd (from .../base-passwd_3.5.7_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you request:
@@ -260,7 +264,7 @@ 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.15) ...
+Setting up base-files (3.0.16) ...
dpkg: regarding .../archives/dpkg_1.10.22_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
@@ -283,14 +287,14 @@ Making /usr/info a symlink to /usr/share/info.
Selecting previously deselected package libc6.
(Reading database ... 254 files and directories currently installed.)
-Unpacking libc6 (from .../libc6_2.3.2.ds1-12_i386.deb) ...
+Unpacking libc6 (from .../libc6_2.3.2.ds1-13_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-12) ...
+Setting up libc6 (2.3.2.ds1-13) ...
Current default timezone: 'UTC'.
-Local time is now: Sat Jun 19 02:42:48 UTC 2004.
-Universal Time is now: Sat Jun 19 02:42:48 UTC 2004.
+Local time is now: Tue Jul 13 21:37:05 UTC 2004.
+Universal Time is now: Tue Jul 13 21:37:05 UTC 2004.
Run 'tzconfig' if you wish to change it.
Selecting previously deselected package perl-base.
@@ -304,7 +308,7 @@ Setting up mawk (1.3.3-11) ...
I: Unpacking required packages...
(Reading database ... 2405 files and directories currently installed.)
-Preparing to replace base-files 3.0.15 (using .../base-files_3.0.15_i386.deb) ...
+Preparing to replace base-files 3.0.16 (using .../base-files_3.0.16_i386.deb) ...
Unpacking replacement base-files ...
Preparing to replace base-passwd 3.5.7 (using .../base-passwd_3.5.7_i386.deb) ...
Unpacking replacement base-passwd ...
@@ -324,11 +328,11 @@ 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 debianutils.
-dpkg: regarding .../debianutils_2.8.2_i386.deb containing debianutils, pre-dependency problem:
+dpkg: regarding .../debianutils_2.8.3_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.8.2_i386.deb) ...
+Unpacking debianutils (from .../debianutils_2.8.3_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../archives/diff_2.8.1-6_i386.deb) ...
dpkg: regarding .../archives/dpkg_1.10.22_i386.deb containing dpkg, pre-dependency problem:
@@ -360,9 +364,9 @@ dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependen
dpkg: warning - ignoring pre-dependency problem !
Unpacking e2fsprogs (from .../e2fsprogs_1.35-6_i386.deb) ...
Selecting previously deselected package findutils.
-Unpacking findutils (from .../findutils_4.1.20-3_i386.deb) ...
+Unpacking findutils (from .../findutils_4.1.20-4_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
-Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.4-1_i386.deb) ...
+Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package grep.
Unpacking grep (from .../grep_2.5.1.ds1-2_i386.deb) ...
Selecting previously deselected package gzip.
@@ -370,14 +374,14 @@ Unpacking gzip (from .../archives/gzip_1.3.5-8_i386.deb) ...
Selecting previously deselected package hostname.
Unpacking hostname (from .../hostname_2.13_i386.deb) ...
Selecting previously deselected package initscripts.
-Unpacking initscripts (from .../initscripts_2.85-20_i386.deb) ...
+Unpacking initscripts (from .../initscripts_2.85-22_i386.deb) ...
Selecting previously deselected package libacl1.
Unpacking libacl1 (from .../libacl1_2.2.23-1_i386.deb) ...
Selecting previously deselected package libattr1.
Unpacking libattr1 (from .../libattr1_2.4.16-1_i386.deb) ...
Selecting previously deselected package libblkid1.
Unpacking libblkid1 (from .../libblkid1_1.35-6_i386.deb) ...
-Preparing to replace libc6 2.3.2.ds1-12 (using .../libc6_2.3.2.ds1-12_i386.deb) ...
+Preparing to replace libc6 2.3.2.ds1-13 (using .../libc6_2.3.2.ds1-13_i386.deb) ...
Unpacking replacement libc6 ...
Selecting previously deselected package libcap1.
Unpacking libcap1 (from .../libcap1_1%3a1.10-14_i386.deb) ...
@@ -388,19 +392,19 @@ Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
Selecting previously deselected package libdb3.
Unpacking libdb3 (from .../libdb3_3.2.9-20_i386.deb) ...
Selecting previously deselected package libgcc1.
-Unpacking libgcc1 (from .../libgcc1_1%3a3.3.4-1_i386.deb) ...
+Unpacking libgcc1 (from .../libgcc1_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package libncurses5.
Unpacking libncurses5 (from .../libncurses5_5.4-4_i386.deb) ...
Selecting previously deselected package libpam-modules.
-Unpacking libpam-modules (from .../libpam-modules_0.76-21_i386.deb) ...
+Unpacking libpam-modules (from .../libpam-modules_0.76-22_i386.deb) ...
Selecting previously deselected package libpam-runtime.
-Unpacking libpam-runtime (from .../libpam-runtime_0.76-21_all.deb) ...
+Unpacking libpam-runtime (from .../libpam-runtime_0.76-22_all.deb) ...
Selecting previously deselected package libpam0g.
-Unpacking libpam0g (from .../libpam0g_0.76-21_i386.deb) ...
+Unpacking libpam0g (from .../libpam0g_0.76-22_i386.deb) ...
Selecting previously deselected package libss2.
Unpacking libss2 (from .../libss2_1.35-6_i386.deb) ...
Selecting previously deselected package libstdc++5.
-Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.4-1_i386.deb) ...
+Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package libuuid1.
Unpacking libuuid1 (from .../libuuid1_1.35-6_i386.deb) ...
Selecting previously deselected package login.
@@ -425,24 +429,26 @@ dpkg: regarding .../ncurses-bin_5.4-4_i386.deb containing ncurses-bin, pre-depen
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking ncurses-bin (from .../ncurses-bin_5.4-4_i386.deb) ...
+Selecting previously deselected package passwd.
+Unpacking passwd (from .../passwd_1%3a4.0.3-28.4_i386.deb) ...
Preparing to replace perl-base 5.8.3-3 (using .../perl-base_5.8.3-3_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package sed.
Unpacking sed (from .../archives/sed_4.0.9-5_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
-Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-2_i386.deb) ...
+Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-4_i386.deb) ...
Selecting previously deselected package sysv-rc.
-Unpacking sysv-rc (from .../sysv-rc_2.85-20_all.deb) ...
+Unpacking sysv-rc (from .../sysv-rc_2.85-22_all.deb) ...
Selecting previously deselected package sysvinit.
-dpkg: regarding .../sysvinit_2.85-20_i386.deb containing sysvinit, pre-dependency problem:
+dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem:
sysvinit pre-depends on initscripts
initscripts is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../sysvinit_2.85-20_i386.deb containing sysvinit, pre-dependency problem:
+dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem:
sysvinit pre-depends on sysv-rc (>= 2.85-2) | file-rc (>> 0.7.0)
sysv-rc is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking sysvinit (from .../sysvinit_2.85-20_i386.deb) ...
+Unpacking sysvinit (from .../sysvinit_2.85-22_i386.deb) ...
Selecting previously deselected package tar.
Unpacking tar (from .../tar_1.13.93-4_i386.deb) ...
Selecting previously deselected package util-linux.
@@ -463,15 +469,15 @@ Unpacking zlib1g (from .../zlib1g_1%3a1.2.1.1-3_i386.deb) ...
I: Configuring required packages...
Setting up ncurses-base (5.4-4) ...
-Setting up sysv-rc (2.85-20) ...
+Setting up sysv-rc (2.85-22) ...
-Setting up libpam-runtime (0.76-21) ...
+Setting up libpam-runtime (0.76-22) ...
-Setting up gcc-3.3-base (3.3.4-1) ...
-Setting up libc6 (2.3.2.ds1-12) ...
+Setting up gcc-3.3-base (3.3.4-2) ...
+Setting up libc6 (2.3.2.ds1-13) ...
Current default timezone: 'UTC'.
-Local time is now: Sat Jun 19 02:42:53 UTC 2004.
-Universal Time is now: Sat Jun 19 02:42:53 UTC 2004.
+Local time is now: Tue Jul 13 21:37:15 UTC 2004.
+Universal Time is now: Tue Jul 13 21:37:15 UTC 2004.
Run 'tzconfig' if you wish to change it.
Setting up libcap1 (1.10-14) ...
@@ -480,7 +486,7 @@ Setting up libdb1-compat (2.1.3-7) ...
Setting up libuuid1 (1.35-6) ...
-Setting up libpam0g (0.76-21) ...
+Setting up libpam0g (0.76-22) ...
Setting up bsdutils (2.12-3) ...
@@ -489,9 +495,9 @@ Setting up tar (1.13.93-4) ...
Setting up zlib1g (1.2.1.1-3) ...
-Setting up slang1a-utf8 (1.4.9-2) ...
+Setting up slang1a-utf8 (1.4.9-4) ...
-Setting up libgcc1 (3.3.4-1) ...
+Setting up libgcc1 (3.3.4-2) ...
Setting up mount (2.12-3) ...
@@ -517,7 +523,7 @@ Setting up libblkid1 (1.35-6) ...
Setting up libss2 (1.35-6) ...
-Setting up findutils (4.1.20-3) ...
+Setting up findutils (4.1.20-4) ...
Setting up e2fsprogs (1.35-6) ...
Setting up diff (2.8.1-6) ...
@@ -526,17 +532,17 @@ Setting up libdb3 (3.2.9-20) ...
Setting up util-linux (2.12-3) ...
-Setting up libstdc++5 (3.3.4-1) ...
+Setting up libstdc++5 (3.3.4-2) ...
Setting up coreutils (5.0.91-2) ...
-Setting up debianutils (2.8.2) ...
+Setting up debianutils (2.8.3) ...
Setting up ncurses-bin (5.4-4) ...
-Setting up libpam-modules (0.76-21) ...
+Setting up libpam-modules (0.76-22) ...
-Setting up base-files (3.0.15) ...
+Setting up base-files (3.0.16) ...
Setting up gzip (1.3.5-8) ...
@@ -545,48 +551,50 @@ Setting up bash (2.05b-15) ...
Setting up login (4.0.3-28.4) ...
+Setting up passwd (4.0.3-28.4) ...
+
Setting up dpkg (1.10.22) ...
-Setting up initscripts (2.85-20) ...
+Setting up initscripts (2.85-22) ...
-Setting up sysvinit (2.85-20) ...
+Setting up sysvinit (2.85-22) ...
sysvinit: creating /dev/initctl
init: timeout opening/writing control channel /dev/initctl
I: Installing base packages...
Selecting previously deselected package apt.
-(Reading database ... 3782 files and directories currently installed.)
+(Reading database ... 3959 files and directories currently installed.)
Unpacking apt (from .../archives/apt_0.5.25_i386.deb) ...
Selecting previously deselected package binutils.
Unpacking binutils (from .../binutils_2.14.90.0.7-8_i386.deb) ...
Selecting previously deselected package cpio.
Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ...
Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.3-2_i386.deb) ...
+Unpacking cpp (from .../cpp_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package dpkg-dev.
Unpacking dpkg-dev (from .../dpkg-dev_1.10.22_all.deb) ...
Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.3-2_i386.deb) ...
+Unpacking g++ (from .../g++_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.3-2_i386.deb) ...
+Unpacking gcc (from .../gcc_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-12_i386.deb) ...
+Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-13_i386.deb) ...
Selecting previously deselected package libdb4.0.
-Unpacking libdb4.0 (from .../libdb4.0_4.0.14-1.4_i386.deb) ...
+Unpacking libdb4.0 (from .../libdb4.0_4.0.14-2_i386.deb) ...
Selecting previously deselected package libgdbm3.
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_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.4-1_i386.deb) ...
+Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.4-2_i386.deb) ...
Selecting previously deselected package linux-kernel-headers.
Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-16_i386.deb) ...
Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-7_i386.deb) ...
+Unpacking make (from .../archives/make_3.80-8_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package perl.
@@ -594,36 +602,36 @@ Unpacking perl (from .../archives/perl_5.8.3-3_i386.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.8.3-3_all.deb) ...
Setting up libgdbm3 (1.8.3-2) ...
-Setting up cpp-3.3 (3.3.4-1) ...
+Setting up cpp-3.3 (3.3.4-2) ...
Setting up apt (0.5.25) ...
Setting up patch (2.5.9-1) ...
-Setting up libdb4.0 (4.0.14-1.4) ...
+Setting up libdb4.0 (4.0.14-2) ...
Setting up linux-kernel-headers (2.5.999-test7-bk-16) ...
-Setting up cpp (3.3.3-2) ...
-Setting up make (3.80-7) ...
+Setting up cpp (3.3.4-1) ...
+Setting up make (3.80-8) ...
Setting up cpio (2.5-1.1) ...
Setting up binutils (2.14.90.0.7-8) ...
-Setting up gcc-3.3 (3.3.4-1) ...
-Setting up libc6-dev (2.3.2.ds1-12) ...
-Setting up gcc (3.3.3-2) ...
+Setting up gcc-3.3 (3.3.4-2) ...
+Setting up libc6-dev (2.3.2.ds1-13) ...
+Setting up gcc (3.3.4-1) ...
-Setting up libstdc++5-3.3-dev (3.3.4-1) ...
+Setting up libstdc++5-3.3-dev (3.3.4-2) ...
Setting up perl-modules (5.8.3-3) ...
Setting up perl (5.8.3-3) ...
-Setting up g++-3.3 (3.3.4-1) ...
+Setting up g++-3.3 (3.3.4-2) ...
Setting up dpkg-dev (1.10.22) ...
-Setting up g++ (3.3.3-2) ...
+Setting up g++ (3.3.4-1) ...
I: Base system installed successfully.
-umount: /var/cache/pbuilder/build/24148/./dev/pts: not mounted
-umount: /var/cache/pbuilder/build/24148/./dev/shm: not mounted
-umount: /var/cache/pbuilder/build/24148/./proc/bus/usb: not mounted
+umount: /var/cache/pbuilder/build/5675/./dev/pts: not mounted
+umount: /var/cache/pbuilder/build/5675/./dev/shm: not mounted
+umount: /var/cache/pbuilder/build/5675/./proc/bus/usb: not mounted
-> debootstrap finished
-> copying local configuration
-> Installing apt-lines
@@ -632,9 +640,9 @@ 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 [2958kB]
+Get:1 http://ring.asahi-net.or.jp sarge/main Packages [2984kB]
Get:2 http://ring.asahi-net.or.jp sarge/main Release [81B]
-Fetched 2958kB in 1s (2479kB/s)
+Fetched 2984kB in 1s (2158kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
@@ -650,13 +658,13 @@ The following NEW packages will be installed:
Need to get 6450B of archives.
After unpacking 49.2kB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sarge/main build-essential 10 [6450B]
-Fetched 6450B in 0s (324kB/s)
+Fetched 6450B in 0s (321kB/s)
Selecting previously deselected package build-essential.
-(Reading database ... 7371 files and directories currently installed.)
+(Reading database ... 7551 files and directories currently installed.)
Unpacking build-essential (from .../build-essential_10_i386.deb) ...
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//24148 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//5675 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sid.log b/testsuite/normal/pbuilder-create-sid.log
index 5a4273c..cdad6c3 100644
--- a/testsuite/normal/pbuilder-create-sid.log
+++ b/testsuite/normal/pbuilder-create-sid.log
@@ -59,6 +59,7 @@ I: Checking mawk...
I: Checking mount...
I: Checking ncurses-base...
I: Checking ncurses-bin...
+I: Checking passwd...
I: Checking patch...
I: Checking perl...
I: Checking perl-base...
@@ -178,6 +179,8 @@ I: Retrieving ncurses-base
I: Validating ncurses-base
I: Retrieving ncurses-bin
I: Validating ncurses-bin
+I: Retrieving passwd
+I: Validating passwd
I: Retrieving patch
I: Validating patch
I: Retrieving perl
@@ -238,6 +241,7 @@ I: Extracting mawk...
I: Extracting mount...
I: Extracting ncurses-base...
I: Extracting ncurses-bin...
+I: Extracting passwd...
I: Extracting perl-base...
I: Extracting sed...
I: Extracting slang1a-utf8...
@@ -249,7 +253,7 @@ I: Extracting zlib1g...
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.15_i386.deb) ...
+Unpacking base-files (from .../base-files_3.0.16_i386.deb) ...
Selecting previously deselected package base-passwd.
Unpacking base-passwd (from .../base-passwd_3.5.7_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you request:
@@ -260,7 +264,7 @@ 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.15) ...
+Setting up base-files (3.0.16) ...
dpkg: regarding .../archives/dpkg_1.10.22_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
@@ -289,8 +293,8 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2.ds1-13) ...
Current default timezone: 'UTC'.
-Local time is now: Sat Jun 19 02:38:46 UTC 2004.
-Universal Time is now: Sat Jun 19 02:38:46 UTC 2004.
+Local time is now: Tue Jul 13 21:32:34 UTC 2004.
+Universal Time is now: Tue Jul 13 21:32:34 UTC 2004.
Run 'tzconfig' if you wish to change it.
Selecting previously deselected package perl-base.
@@ -304,15 +308,15 @@ Setting up mawk (1.3.3-11) ...
I: Unpacking required packages...
(Reading database ... 2405 files and directories currently installed.)
-Preparing to replace base-files 3.0.15 (using .../base-files_3.0.15_i386.deb) ...
+Preparing to replace base-files 3.0.16 (using .../base-files_3.0.16_i386.deb) ...
Unpacking replacement base-files ...
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-15_i386.deb containing bash, pre-dependency problem:
+dpkg: regarding .../bash_2.05b-17_i386.deb containing bash, pre-dependency problem:
bash pre-depends on libncurses5 (>= 5.4-1)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking bash (from .../bash_2.05b-15_i386.deb) ...
+Unpacking bash (from .../bash_2.05b-17_i386.deb) ...
Selecting previously deselected package bsdutils.
Unpacking bsdutils (from .../bsdutils_1%3a2.12-7_i386.deb) ...
Selecting previously deselected package coreutils.
@@ -324,11 +328,11 @@ 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 debianutils.
-dpkg: regarding .../debianutils_2.8.2_i386.deb containing debianutils, pre-dependency problem:
+dpkg: regarding .../debianutils_2.8.3_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.8.2_i386.deb) ...
+Unpacking debianutils (from .../debianutils_2.8.3_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../archives/diff_2.8.1-6_i386.deb) ...
dpkg: regarding .../archives/dpkg_1.10.22_i386.deb containing dpkg, pre-dependency problem:
@@ -360,9 +364,9 @@ dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependen
dpkg: warning - ignoring pre-dependency problem !
Unpacking e2fsprogs (from .../e2fsprogs_1.35-6_i386.deb) ...
Selecting previously deselected package findutils.
-Unpacking findutils (from .../findutils_4.1.20-3_i386.deb) ...
+Unpacking findutils (from .../findutils_4.1.20-4_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
-Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.4-1_i386.deb) ...
+Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package grep.
Unpacking grep (from .../grep_2.5.1.ds1-2_i386.deb) ...
Selecting previously deselected package gzip.
@@ -370,7 +374,7 @@ Unpacking gzip (from .../archives/gzip_1.3.5-8_i386.deb) ...
Selecting previously deselected package hostname.
Unpacking hostname (from .../hostname_2.13_i386.deb) ...
Selecting previously deselected package initscripts.
-Unpacking initscripts (from .../initscripts_2.85-20_i386.deb) ...
+Unpacking initscripts (from .../initscripts_2.85-22_i386.deb) ...
Selecting previously deselected package libacl1.
Unpacking libacl1 (from .../libacl1_2.2.23-1_i386.deb) ...
Selecting previously deselected package libattr1.
@@ -388,31 +392,31 @@ Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
Selecting previously deselected package libdb3.
Unpacking libdb3 (from .../libdb3_3.2.9-20_i386.deb) ...
Selecting previously deselected package libgcc1.
-Unpacking libgcc1 (from .../libgcc1_1%3a3.3.4-1_i386.deb) ...
+Unpacking libgcc1 (from .../libgcc1_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package libncurses5.
Unpacking libncurses5 (from .../libncurses5_5.4-4_i386.deb) ...
Selecting previously deselected package libpam-modules.
-Unpacking libpam-modules (from .../libpam-modules_0.76-21_i386.deb) ...
+Unpacking libpam-modules (from .../libpam-modules_0.76-22_i386.deb) ...
Selecting previously deselected package libpam-runtime.
-Unpacking libpam-runtime (from .../libpam-runtime_0.76-21_all.deb) ...
+Unpacking libpam-runtime (from .../libpam-runtime_0.76-22_all.deb) ...
Selecting previously deselected package libpam0g.
-Unpacking libpam0g (from .../libpam0g_0.76-21_i386.deb) ...
+Unpacking libpam0g (from .../libpam0g_0.76-22_i386.deb) ...
Selecting previously deselected package libss2.
Unpacking libss2 (from .../libss2_1.35-6_i386.deb) ...
Selecting previously deselected package libstdc++5.
-Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.4-1_i386.deb) ...
+Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package libuuid1.
Unpacking libuuid1 (from .../libuuid1_1.35-6_i386.deb) ...
Selecting previously deselected package login.
-dpkg: regarding .../login_1%3a4.0.3-28.4_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-29_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-28.4_i386.deb containing login, pre-dependency problem:
+dpkg: regarding .../login_1%3a4.0.3-29_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam-runtime (>= 0.76-14)
libpam-runtime is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking login (from .../login_1%3a4.0.3-28.4_i386.deb) ...
+Unpacking login (from .../login_1%3a4.0.3-29_i386.deb) ...
Preparing to replace mawk 1.3.3-11 (using .../mawk_1.3.3-11_i386.deb) ...
Unpacking replacement mawk ...
Selecting previously deselected package mount.
@@ -425,24 +429,26 @@ dpkg: regarding .../ncurses-bin_5.4-4_i386.deb containing ncurses-bin, pre-depen
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking ncurses-bin (from .../ncurses-bin_5.4-4_i386.deb) ...
+Selecting previously deselected package passwd.
+Unpacking passwd (from .../passwd_1%3a4.0.3-29_i386.deb) ...
Preparing to replace perl-base 5.8.4-2 (using .../perl-base_5.8.4-2_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package sed.
-Unpacking sed (from .../archives/sed_4.0.9-5_i386.deb) ...
+Unpacking sed (from .../archives/sed_4.1.1-1_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
-Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-3.1_i386.deb) ...
+Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9dbs-3_i386.deb) ...
Selecting previously deselected package sysv-rc.
-Unpacking sysv-rc (from .../sysv-rc_2.85-20_all.deb) ...
+Unpacking sysv-rc (from .../sysv-rc_2.85-22_all.deb) ...
Selecting previously deselected package sysvinit.
-dpkg: regarding .../sysvinit_2.85-20_i386.deb containing sysvinit, pre-dependency problem:
+dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem:
sysvinit pre-depends on initscripts
initscripts is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../sysvinit_2.85-20_i386.deb containing sysvinit, pre-dependency problem:
+dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem:
sysvinit pre-depends on sysv-rc (>= 2.85-2) | file-rc (>> 0.7.0)
sysv-rc is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-Unpacking sysvinit (from .../sysvinit_2.85-20_i386.deb) ...
+Unpacking sysvinit (from .../sysvinit_2.85-22_i386.deb) ...
Selecting previously deselected package tar.
Unpacking tar (from .../tar_1.13.93-4_i386.deb) ...
Selecting previously deselected package util-linux.
@@ -459,19 +465,19 @@ dpkg: regarding .../util-linux_2.12-7_i386.deb containing util-linux, pre-depend
dpkg: warning - ignoring pre-dependency problem !
Unpacking util-linux (from .../util-linux_2.12-7_i386.deb) ...
Selecting previously deselected package zlib1g.
-Unpacking zlib1g (from .../zlib1g_1%3a1.2.1.1-3_i386.deb) ...
+Unpacking zlib1g (from .../zlib1g_1%3a1.2.1.1-5_i386.deb) ...
I: Configuring required packages...
Setting up ncurses-base (5.4-4) ...
-Setting up sysv-rc (2.85-20) ...
+Setting up sysv-rc (2.85-22) ...
-Setting up libpam-runtime (0.76-21) ...
+Setting up libpam-runtime (0.76-22) ...
-Setting up gcc-3.3-base (3.3.4-1) ...
+Setting up gcc-3.3-base (3.3.4-3) ...
Setting up libc6 (2.3.2.ds1-13) ...
Current default timezone: 'UTC'.
-Local time is now: Sat Jun 19 02:39:08 UTC 2004.
-Universal Time is now: Sat Jun 19 02:39:08 UTC 2004.
+Local time is now: Tue Jul 13 21:32:42 UTC 2004.
+Universal Time is now: Tue Jul 13 21:32:42 UTC 2004.
Run 'tzconfig' if you wish to change it.
Setting up libcap1 (1.10-14) ...
@@ -480,18 +486,18 @@ Setting up libdb1-compat (2.1.3-7) ...
Setting up libuuid1 (1.35-6) ...
-Setting up libpam0g (0.76-21) ...
+Setting up libpam0g (0.76-22) ...
Setting up bsdutils (2.12-7) ...
Setting up perl-base (5.8.4-2) ...
Setting up tar (1.13.93-4) ...
-Setting up zlib1g (1.2.1.1-3) ...
+Setting up zlib1g (1.2.1.1-5) ...
-Setting up slang1a-utf8 (1.4.9-3.1) ...
+Setting up slang1a-utf8 (1.4.9dbs-3) ...
-Setting up libgcc1 (3.3.4-1) ...
+Setting up libgcc1 (3.3.4-3) ...
Setting up mount (2.12-7) ...
@@ -499,7 +505,7 @@ Setting up libncurses5 (5.4-4) ...
Setting up libattr1 (2.4.16-1) ...
-Setting up sed (4.0.9-5) ...
+Setting up sed (4.1.1-1) ...
Setting up e2fslibs (1.35-6) ...
@@ -517,7 +523,7 @@ Setting up libblkid1 (1.35-6) ...
Setting up libss2 (1.35-6) ...
-Setting up findutils (4.1.20-3) ...
+Setting up findutils (4.1.20-4) ...
Setting up e2fsprogs (1.35-6) ...
Setting up diff (2.8.1-6) ...
@@ -526,37 +532,39 @@ Setting up libdb3 (3.2.9-20) ...
Setting up util-linux (2.12-7) ...
-Setting up libstdc++5 (3.3.4-1) ...
+Setting up libstdc++5 (3.3.4-3) ...
Setting up coreutils (5.0.91-2) ...
-Setting up debianutils (2.8.2) ...
+Setting up debianutils (2.8.3) ...
Setting up ncurses-bin (5.4-4) ...
-Setting up libpam-modules (0.76-21) ...
+Setting up libpam-modules (0.76-22) ...
-Setting up base-files (3.0.15) ...
+Setting up base-files (3.0.16) ...
Setting up gzip (1.3.5-8) ...
Setting up dselect (1.10.22) ...
-Setting up bash (2.05b-15) ...
+Setting up login (4.0.3-29) ...
-Setting up login (4.0.3-28.4) ...
+Setting up passwd (4.0.3-29) ...
Setting up dpkg (1.10.22) ...
-Setting up initscripts (2.85-20) ...
+Setting up bash (2.05b-17) ...
-Setting up sysvinit (2.85-20) ...
+Setting up initscripts (2.85-22) ...
+
+Setting up sysvinit (2.85-22) ...
sysvinit: creating /dev/initctl
init: timeout opening/writing control channel /dev/initctl
I: Installing base packages...
Selecting previously deselected package apt.
-(Reading database ... 3784 files and directories currently installed.)
-Unpacking apt (from .../archives/apt_0.5.25_i386.deb) ...
+(Reading database ... 3976 files and directories currently installed.)
+Unpacking apt (from .../archives/apt_0.5.26_i386.deb) ...
Selecting previously deselected package binutils.
Unpacking binutils (from .../binutils_2.14.90.0.7-8_i386.deb) ...
Selecting previously deselected package cpio.
@@ -564,17 +572,17 @@ Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ...
Selecting previously deselected package cpp.
Unpacking cpp (from .../cpp_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package dpkg-dev.
Unpacking dpkg-dev (from .../dpkg-dev_1.10.22_all.deb) ...
Selecting previously deselected package g++.
Unpacking g++ (from .../g++_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package gcc.
Unpacking gcc (from .../gcc_4%3a3.3.4-1_i386.deb) ...
Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.4-1_i386.deb) ...
+Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package libc6-dev.
Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-13_i386.deb) ...
Selecting previously deselected package libdb4.2.
@@ -582,11 +590,11 @@ Unpacking libdb4.2 (from .../libdb4.2_4.2.52-16_i386.deb) ...
Selecting previously deselected package libgdbm3.
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_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.4-1_i386.deb) ...
+Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.4-3_i386.deb) ...
Selecting previously deselected package linux-kernel-headers.
Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-16_i386.deb) ...
Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-7_i386.deb) ...
+Unpacking make (from .../archives/make_3.80-8_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package perl.
@@ -594,35 +602,35 @@ Unpacking perl (from .../archives/perl_5.8.4-2_i386.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.8.4-2_all.deb) ...
Setting up libgdbm3 (1.8.3-2) ...
-Setting up cpp-3.3 (3.3.4-1) ...
-Setting up apt (0.5.25) ...
+Setting up cpp-3.3 (3.3.4-3) ...
+Setting up apt (0.5.26) ...
Setting up patch (2.5.9-1) ...
Setting up libdb4.2 (4.2.52-16) ...
Setting up linux-kernel-headers (2.5.999-test7-bk-16) ...
Setting up cpp (3.3.4-1) ...
-Setting up make (3.80-7) ...
+Setting up make (3.80-8) ...
Setting up cpio (2.5-1.1) ...
Setting up binutils (2.14.90.0.7-8) ...
-Setting up gcc-3.3 (3.3.4-1) ...
+Setting up gcc-3.3 (3.3.4-3) ...
Setting up libc6-dev (2.3.2.ds1-13) ...
Setting up gcc (3.3.4-1) ...
-Setting up libstdc++5-3.3-dev (3.3.4-1) ...
+Setting up libstdc++5-3.3-dev (3.3.4-3) ...
Setting up perl-modules (5.8.4-2) ...
Setting up perl (5.8.4-2) ...
-Setting up g++-3.3 (3.3.4-1) ...
+Setting up g++-3.3 (3.3.4-3) ...
Setting up dpkg-dev (1.10.22) ...
Setting up g++ (3.3.4-1) ...
I: Base system installed successfully.
-umount: /var/cache/pbuilder/build/1771/./dev/pts: not mounted
-umount: /var/cache/pbuilder/build/1771/./dev/shm: not mounted
-umount: /var/cache/pbuilder/build/1771/./proc/bus/usb: not mounted
+umount: /var/cache/pbuilder/build/16828/./dev/pts: not mounted
+umount: /var/cache/pbuilder/build/16828/./dev/shm: not mounted
+umount: /var/cache/pbuilder/build/16828/./proc/bus/usb: not mounted
-> debootstrap finished
-> copying local configuration
-> Installing apt-lines
@@ -631,9 +639,9 @@ 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 [3075kB]
+Get:1 http://ring.asahi-net.or.jp sid/main Packages [3133kB]
Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3075kB in 1s (2109kB/s)
+Fetched 3133kB in 1s (2239kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
@@ -649,13 +657,13 @@ The following NEW packages will be installed:
Need to get 6450B of archives.
After unpacking 49.2kB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sid/main build-essential 10 [6450B]
-Fetched 6450B in 0s (252kB/s)
+Fetched 6450B in 0s (102kB/s)
Selecting previously deselected package build-essential.
-(Reading database ... 7386 files and directories currently installed.)
+(Reading database ... 7596 files and directories currently installed.)
Unpacking build-essential (from .../build-essential_10_i386.deb) ...
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//1771 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//16828 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sarge.log b/testsuite/normal/pbuilder-execute-sarge.log
index 5e9313b..924873b 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//12840 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//27762 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sid.log b/testsuite/normal/pbuilder-execute-sid.log
index 2e9a406..e2a4cd7 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//24069 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//5594 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sarge.log b/testsuite/normal/pdebuild-internal-sarge.log
index 656ba8d..34b3ca3 100644
--- a/testsuite/normal/pdebuild-internal-sarge.log
+++ b/testsuite/normal/pdebuild-internal-sarge.log
@@ -23,21 +23,21 @@ The following NEW packages will be installed:
debconf debconf-i18n debootstrap liblocale-gettext-perl libssl0.9.7
libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl pbuilder wget
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2930kB of archives.
-After unpacking 9128kB of additional disk space will be used.
+Need to get 2934kB of archives.
+After unpacking 9153kB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sarge/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sarge/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sarge/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sarge/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.25 [65.4kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.25 [98.1kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.29 [99.1kB]
Get:7 http://ring.asahi-net.or.jp sarge/main libssl0.9.7 0.9.7d-3 [2171kB]
Get:8 http://ring.asahi-net.or.jp sarge/main wget 1.9.1-4 [424kB]
Get:9 http://ring.asahi-net.or.jp sarge/main debootstrap 0.2.39 [62.1kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main pbuilder 0.105 [60.1kB]
-Fetched 2930kB in 0s (4162kB/s)
+Get:10 http://ring.asahi-net.or.jp sarge/main pbuilder 0.107 [60.5kB]
+Fetched 2934kB in 0s (3839kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7380 files and directories currently installed.)
+(Reading database ... 7560 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -46,9 +46,9 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.25_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.25_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libssl0.9.7.
Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7d-3_i386.deb) ...
Selecting previously deselected package wget.
@@ -56,20 +56,20 @@ Unpacking wget (from .../archives/wget_1.9.1-4_i386.deb) ...
Selecting previously deselected package debootstrap.
Unpacking debootstrap (from .../debootstrap_0.2.39_i386.deb) ...
Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../pbuilder_0.105_all.deb) ...
+Unpacking pbuilder (from .../pbuilder_0.107_all.deb) ...
Setting up liblocale-gettext-perl (1.01-17) ...
Setting up libtext-iconv-perl (1.2-3) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
-Setting up debconf-i18n (1.4.25) ...
-Setting up debconf (1.4.25) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
Setting up libssl0.9.7 (0.9.7d-3) ...
Setting up wget (1.9.1-4) ...
Setting up debootstrap (0.2.39) ...
-Setting up pbuilder (0.105) ...
+Setting up pbuilder (0.107) ...
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)
@@ -88,30 +88,30 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext gettext-base html2text intltool-debian
libdshconfig1 libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2473kB of archives.
-After unpacking 8748kB 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]
+Need to get 2477kB of archives.
+After unpacking 8769kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.09-1 [217kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main file 4.09-1 [25.9kB]
Get:3 http://ring.asahi-net.or.jp sarge/main gettext-base 0.14.1-2 [91.0kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.25 [32.5kB]
+Get:4 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.29 [32.5kB]
Get:5 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
Get:6 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-2 [1555kB]
Get:7 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040212 [23.4kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.11 [66.7kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.12 [66.6kB]
Get:9 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.11 [353kB]
Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
Get:11 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 2473kB in 0s (3799kB/s)
+Fetched 2477kB in 0s (4005kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 7736 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
+(Reading database ... 7919 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.25_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -119,26 +119,26 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.07-2) ...
+Setting up libmagic1 (4.09-1) ...
-Setting up file (4.07-2) ...
+Setting up file (4.09-1) ...
Setting up gettext-base (0.14.1-2) ...
-Setting up debconf-utils (1.4.25) ...
+Setting up debconf-utils (1.4.29) ...
Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
+Setting up po-debconf (0.8.12) ...
Setting up debhelper (4.2.11) ...
Setting up libdshconfig1 (0.20.11-1) ...
@@ -435,11 +435,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
-Sat Jun 19 02:45:15 UTC 2004
+Tue Jul 13 21:40:40 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
@@ -509,12 +509,13 @@ 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
-Sat Jun 19 02:45:21 UTC 2004
+Tue Jul 13 21:40:46 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
-b: b
c: c
+dsh: Process terminated (before write).
+b: b
a: a
PASS: tests/segv-catcher.sh
l w
@@ -609,4 +610,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/7223 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/22140 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sid.log b/testsuite/normal/pdebuild-internal-sid.log
index 757a369..19b78c2 100644
--- a/testsuite/normal/pdebuild-internal-sid.log
+++ b/testsuite/normal/pdebuild-internal-sid.log
@@ -23,21 +23,21 @@ The following NEW packages will be installed:
debconf debconf-i18n debootstrap liblocale-gettext-perl libssl0.9.7
libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl pbuilder wget
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2933kB of archives.
-After unpacking 9153kB of additional disk space will be used.
+Need to get 2931kB of archives.
+After unpacking 9146kB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sid/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sid/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sid/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sid/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.28 [68.0kB]
-Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.28 [99.0kB]
-Get:7 http://ring.asahi-net.or.jp sid/main libssl0.9.7 0.9.7d-3 [2171kB]
+Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.29 [99.1kB]
+Get:7 http://ring.asahi-net.or.jp sid/main libssl0.9.7 0.9.7d-3.1 [2172kB]
Get:8 http://ring.asahi-net.or.jp sid/main wget 1.9.1-4 [424kB]
-Get:9 http://ring.asahi-net.or.jp sid/main debootstrap 0.2.39 [62.1kB]
-Get:10 http://ring.asahi-net.or.jp sid/main pbuilder 0.106 [60.2kB]
-Fetched 2933kB in 0s (3825kB/s)
+Get:9 http://ring.asahi-net.or.jp sid/main debootstrap 0.2.39.1 [59.4kB]
+Get:10 http://ring.asahi-net.or.jp sid/main pbuilder 0.108 [60.6kB]
+Fetched 2931kB in 0s (3557kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7395 files and directories currently installed.)
+(Reading database ... 7605 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -46,30 +46,30 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.28_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.28_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libssl0.9.7.
-Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7d-3_i386.deb) ...
+Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7d-3.1_i386.deb) ...
Selecting previously deselected package wget.
Unpacking wget (from .../archives/wget_1.9.1-4_i386.deb) ...
Selecting previously deselected package debootstrap.
-Unpacking debootstrap (from .../debootstrap_0.2.39_i386.deb) ...
+Unpacking debootstrap (from .../debootstrap_0.2.39.1_i386.deb) ...
Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../pbuilder_0.106_all.deb) ...
+Unpacking pbuilder (from .../pbuilder_0.108_all.deb) ...
Setting up liblocale-gettext-perl (1.01-17) ...
Setting up libtext-iconv-perl (1.2-3) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
-Setting up debconf-i18n (1.4.28) ...
-Setting up debconf (1.4.28) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
-Setting up libssl0.9.7 (0.9.7d-3) ...
+Setting up libssl0.9.7 (0.9.7d-3.1) ...
Setting up wget (1.9.1-4) ...
-Setting up debootstrap (0.2.39) ...
-Setting up pbuilder (0.106) ...
+Setting up debootstrap (0.2.39.1) ...
+Setting up pbuilder (0.108) ...
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)
@@ -88,30 +88,30 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext gettext-base html2text intltool-debian
libdshconfig1 libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2477kB of archives.
-After unpacking 8769kB of additional disk space will be used.
+Need to get 2479kB of archives.
+After unpacking 8773kB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.09-1 [217kB]
Get:2 http://ring.asahi-net.or.jp sid/main file 4.09-1 [25.9kB]
Get:3 http://ring.asahi-net.or.jp sid/main gettext-base 0.14.1-2 [91.0kB]
-Get:4 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.28 [32.5kB]
+Get:4 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.29 [32.5kB]
Get:5 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
Get:6 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-2 [1555kB]
Get:7 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040212 [23.4kB]
-Get:8 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.11 [66.7kB]
-Get:9 http://ring.asahi-net.or.jp sid/main debhelper 4.2.11 [353kB]
+Get:8 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.12 [66.6kB]
+Get:9 http://ring.asahi-net.or.jp sid/main debhelper 4.2.15 [355kB]
Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
Get:11 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 2477kB in 0s (2688kB/s)
+Fetched 2479kB in 0s (3506kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 7754 files and directories currently installed.)
+(Reading database ... 7962 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.28_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -119,9 +119,9 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.15_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -131,15 +131,15 @@ Setting up libmagic1 (4.09-1) ...
Setting up file (4.09-1) ...
Setting up gettext-base (0.14.1-2) ...
-Setting up debconf-utils (1.4.28) ...
+Setting up debconf-utils (1.4.29) ...
Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
-Setting up debhelper (4.2.11) ...
+Setting up po-debconf (0.8.12) ...
+Setting up debhelper (4.2.15) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
@@ -435,11 +435,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
-Sat Jun 19 02:42:03 UTC 2004
+Tue Jul 13 21:36:04 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
@@ -509,7 +509,7 @@ 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
-Sat Jun 19 02:42:09 UTC 2004
+Tue Jul 13 21:36:10 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
@@ -610,4 +610,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/18465 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/32368 and its subdirectories
diff --git a/testsuite/normal/pdebuild-normal-sarge.log b/testsuite/normal/pdebuild-normal-sarge.log
index f442774..0232583 100644
--- a/testsuite/normal/pdebuild-normal-sarge.log
+++ b/testsuite/normal/pdebuild-normal-sarge.log
@@ -30,8 +30,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Sat Jun 19 11:44:05 JST 2004
-pbuilder-time-stamp: 1087613045
+Current time: Wed Jul 14 06:39:11 JST 2004
+pbuilder-time-stamp: 1089754751
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -63,28 +63,28 @@ The following NEW packages will be installed:
liblocale-gettext-perl libmagic1 libtext-charwidth-perl libtext-iconv-perl
libtext-wrapi18n-perl po-debconf
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2685kB of archives.
-After unpacking 10.8MB of additional disk space will be used.
+Need to get 2693kB of archives.
+After unpacking 10.9MB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sarge/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sarge/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sarge/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sarge/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.25 [65.4kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.25 [98.1kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main libmagic1 4.07-2 [213kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main file 4.07-2 [25.6kB]
+Get:5 http://ring.asahi-net.or.jp sarge/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sarge/main debconf 1.4.29 [99.1kB]
+Get:7 http://ring.asahi-net.or.jp sarge/main libmagic1 4.09-1 [217kB]
+Get:8 http://ring.asahi-net.or.jp sarge/main file 4.09-1 [25.9kB]
Get:9 http://ring.asahi-net.or.jp sarge/main gettext-base 0.14.1-2 [91.0kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.25 [32.5kB]
+Get:10 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.29 [32.5kB]
Get:11 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-1 [89.3kB]
Get:12 http://ring.asahi-net.or.jp sarge/main gettext 0.14.1-2 [1555kB]
Get:13 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040212 [23.4kB]
-Get:14 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.11 [66.7kB]
+Get:14 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.12 [66.6kB]
Get:15 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.11 [353kB]
Get:16 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
Get:17 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2685kB in 0s (2949kB/s)
+Fetched 2693kB in 1s (2656kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7380 files and directories currently installed.)
+(Reading database ... 7560 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -93,17 +93,17 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.25_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.25_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libmagic1.
-Unpacking libmagic1 (from .../libmagic1_4.07-2_i386.deb) ...
+Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.07-2_i386.deb) ...
+Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.25_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -111,7 +111,7 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
Selecting previously deselected package libdshconfig1.
@@ -122,9 +122,9 @@ Setting up liblocale-gettext-perl (1.01-17) ...
Setting up libtext-iconv-perl (1.2-3) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
-Setting up libmagic1 (4.07-2) ...
+Setting up libmagic1 (4.09-1) ...
-Setting up file (4.07-2) ...
+Setting up file (4.09-1) ...
Setting up gettext-base (0.14.1-2) ...
Setting up html2text (1.3.2a-1) ...
@@ -132,14 +132,14 @@ Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
+Setting up po-debconf (0.8.12) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
-Setting up debconf-i18n (1.4.25) ...
-Setting up debconf (1.4.25) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
-Setting up debconf-utils (1.4.25) ...
+Setting up debconf-utils (1.4.29) ...
Setting up debhelper (4.2.11) ...
-> Finished parsing the build-deps
@@ -148,15 +148,15 @@ 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 55.4kB of archives.
-After unpacking 193kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 0.9.5 [55.4kB]
+Need to get 70.4kB of archives.
+After unpacking 258kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 1.0.4 [70.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 55.4kB in 0s (1317kB/s)
+Fetched 70.4kB in 0s (628kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 8189 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.9.5_i386.deb) ...
-Setting up fakeroot (0.9.5) ...
+(Reading database ... 8372 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.0.4_i386.deb) ...
+Setting up fakeroot (1.0.4) ...
Copying source file
-> copying [../dsh_0.25.3-1.dsc]
-> copying [../dsh_0.25.3.orig.tar.gz]
@@ -470,11 +470,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
-Sat Jun 19 02:44:36 UTC 2004
+Tue Jul 13 21:39:49 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
@@ -544,13 +544,13 @@ 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
-Sat Jun 19 02:44:42 UTC 2004
+Tue Jul 13 21:39:55 UTC 2004
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
c: c
-a: a
b: b
+a: a
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -655,8 +655,8 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-Current time: Sat Jun 19 11:44:44 JST 2004
-pbuilder-time-stamp: 1087613084
+/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 16814 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Wed Jul 14 06:39:57 JST 2004
+pbuilder-time-stamp: 1089754797
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/1513 and its subdirectories
-/usr/lib/pbuilder/pbuilder-buildpackage: line 1: 1901 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/16481 and its subdirectories
diff --git a/testsuite/normal/pdebuild-normal-sid.log b/testsuite/normal/pdebuild-normal-sid.log
index 3010a75..5f01d1e 100644
--- a/testsuite/normal/pdebuild-normal-sid.log
+++ b/testsuite/normal/pdebuild-normal-sid.log
@@ -30,8 +30,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Sat Jun 19 11:40:46 JST 2004
-pbuilder-time-stamp: 1087612846
+Current time: Wed Jul 14 06:34:27 JST 2004
+pbuilder-time-stamp: 1089754467
Building the build Environment
-> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage]
-> creating local configuration
@@ -63,28 +63,28 @@ The following NEW packages will be installed:
liblocale-gettext-perl libmagic1 libtext-charwidth-perl libtext-iconv-perl
libtext-wrapi18n-perl po-debconf
0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2693kB of archives.
+Need to get 2694kB of archives.
After unpacking 10.9MB of additional disk space will be used.
Get:1 http://ring.asahi-net.or.jp sid/main liblocale-gettext-perl 1.01-17 [16.8kB]
Get:2 http://ring.asahi-net.or.jp sid/main libtext-iconv-perl 1.2-3 [12.2kB]
Get:3 http://ring.asahi-net.or.jp sid/main libtext-charwidth-perl 0.04-1 [11.0kB]
Get:4 http://ring.asahi-net.or.jp sid/main libtext-wrapi18n-perl 0.06-1 [8442B]
-Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.28 [68.0kB]
-Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.28 [99.0kB]
+Get:5 http://ring.asahi-net.or.jp sid/main debconf-i18n 1.4.29 [68.0kB]
+Get:6 http://ring.asahi-net.or.jp sid/main debconf 1.4.29 [99.1kB]
Get:7 http://ring.asahi-net.or.jp sid/main libmagic1 4.09-1 [217kB]
Get:8 http://ring.asahi-net.or.jp sid/main file 4.09-1 [25.9kB]
Get:9 http://ring.asahi-net.or.jp sid/main gettext-base 0.14.1-2 [91.0kB]
-Get:10 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.28 [32.5kB]
+Get:10 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.29 [32.5kB]
Get:11 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-1 [89.3kB]
Get:12 http://ring.asahi-net.or.jp sid/main gettext 0.14.1-2 [1555kB]
Get:13 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040212 [23.4kB]
-Get:14 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.11 [66.7kB]
-Get:15 http://ring.asahi-net.or.jp sid/main debhelper 4.2.11 [353kB]
+Get:14 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.12 [66.6kB]
+Get:15 http://ring.asahi-net.or.jp sid/main debhelper 4.2.15 [355kB]
Get:16 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
Get:17 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2693kB in 0s (3448kB/s)
+Fetched 2694kB in 0s (3737kB/s)
Selecting previously deselected package liblocale-gettext-perl.
-(Reading database ... 7395 files and directories currently installed.)
+(Reading database ... 7605 files and directories currently installed.)
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ...
@@ -93,9 +93,9 @@ Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.de
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.4.28_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ...
Selecting previously deselected package debconf.
-Unpacking debconf (from .../debconf_1.4.28_all.deb) ...
+Unpacking debconf (from .../debconf_1.4.29_all.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.09-1_i386.deb) ...
Selecting previously deselected package file.
@@ -103,7 +103,7 @@ Unpacking file (from .../archives/file_4.09-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.14.1-2_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.28_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.4.29_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-1_i386.deb) ...
Selecting previously deselected package gettext.
@@ -111,9 +111,9 @@ Unpacking gettext (from .../gettext_0.14.1-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040212_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.11_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.12_all.deb) ...
Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.2.11_all.deb) ...
+Unpacking debhelper (from .../debhelper_4.2.15_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -132,31 +132,31 @@ Setting up html2text (1.3.2a-1) ...
Setting up gettext (0.14.1-2) ...
Setting up intltool-debian (0.30+20040212) ...
-Setting up po-debconf (0.8.11) ...
+Setting up po-debconf (0.8.12) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
-Setting up debconf-i18n (1.4.28) ...
-Setting up debconf (1.4.28) ...
+Setting up debconf-i18n (1.4.29) ...
+Setting up debconf (1.4.29) ...
-Setting up debconf-utils (1.4.28) ...
+Setting up debconf-utils (1.4.29) ...
-Setting up debhelper (4.2.11) ...
+Setting up debhelper (4.2.15) ...
-> 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 55.4kB of archives.
-After unpacking 193kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.9.5 [55.4kB]
+Need to get 70.4kB of archives.
+After unpacking 258kB of additional disk space will be used.
+Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 1.0.4 [70.4kB]
debconf: delaying package configuration, since apt-utils is not installed
-Fetched 55.4kB in 0s (1342kB/s)
+Fetched 70.4kB in 0s (1516kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 8207 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_0.9.5_i386.deb) ...
-Setting up fakeroot (0.9.5) ...
+(Reading database ... 8416 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.0.4_i386.deb) ...
+Setting up fakeroot (1.0.4) ...
Copying source file
-> copying [../dsh_0.25.3-1.dsc]
-> copying [../dsh_0.25.3.orig.tar.gz]
@@ -474,7 +474,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
-Sat Jun 19 02:41:25 UTC 2004
+Tue Jul 13 21:35:08 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
@@ -544,14 +544,14 @@ 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
-Sat Jun 19 02:41:31 UTC 2004
+Tue Jul 13 21:35:14 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
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -656,8 +656,8 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-Current time: Sat Jun 19 11:41:33 JST 2004
-pbuilder-time-stamp: 1087612893
+/usr/lib/pbuilder/pbuilder-buildpackage: line 141: 27034 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Wed Jul 14 06:35:17 JST 2004
+pbuilder-time-stamp: 1089754517
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/12807 and its subdirectories
-/usr/lib/pbuilder/pbuilder-buildpackage: line 1: 13136 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/26701 and its subdirectories
diff --git a/testsuite/normal/vmstat b/testsuite/normal/vmstat
index 1c9f6ca..afd8340 100644
--- a/testsuite/normal/vmstat
+++ b/testsuite/normal/vmstat
@@ -1,456 +1,543 @@
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
- 1 3 0 220544 36868 108908 0 0 1501 114 1117 668 17 8 21 54
- 0 0 0 218184 36968 109640 0 0 672 4 1283 49169 33 10 12 45
- 1 1 0 210072 36976 113504 0 0 292 0 3703 3873 53 11 34 2
- 1 0 0 206216 36984 117028 0 0 0 0 1123 2172 95 5 0 0
- 1 1 0 199432 37008 121276 0 0 1668 204 1363 2599 93 7 0 0
- 1 1 0 195592 37040 124748 0 0 720 0 1075 2063 94 6 0 0
- 2 0 0 192584 37068 126704 0 0 672 12956 1221 1492 93 7 0 0
- 5 0 0 196744 37092 125328 0 0 632 0 1068 2252 91 7 0 2
- 2 0 0 195912 37144 125552 0 0 276 0 1068 1927 84 16 0 0
- 4 0 0 193024 37184 126300 0 0 780 1220 1098 453 92 8 0 0
- 3 1 0 190688 37300 126800 0 0 488 0 1067 2176 80 20 0 0
- 1 2 0 190688 37672 126860 0 0 408 60 1122 1589 74 26 0 0
- 1 1 0 190048 38008 126908 0 0 384 32 1136 746 84 16 0 0
- 1 1 0 189536 38308 126964 0 0 356 0 1091 554 86 14 0 0
- 1 2 0 189168 38660 127020 0 0 408 20 1104 577 83 17 0 0
- 1 1 0 187632 39132 127020 0 0 464 48 1124 546 83 17 0 0
- 1 1 0 186032 39416 128064 0 0 300 0 2272 1497 58 15 0 27
- 3 0 0 184240 39688 129184 0 0 320 0 2572 3869 60 11 0 28
- 0 1 0 181552 39956 131728 0 0 340 0 3981 4394 36 14 0 50
- 2 0 0 178864 40300 133944 0 0 416 40 3781 3595 25 18 0 57
- 0 1 0 177264 40612 135096 0 0 420 0 2318 1790 15 4 0 81
- 3 2 0 174576 40904 137132 0 0 380 8192 3585 3605 26 23 0 51
- 1 1 0 174576 41104 138100 0 0 232 84 2362 2127 39 20 0 42
- 0 1 0 172272 41372 140016 0 0 336 0 3334 2953 32 15 0 53
- 1 2 0 170096 41788 141768 0 0 432 12 3253 3027 37 24 0 39
- 2 1 0 169456 42196 141968 0 0 416 16 1453 988 58 13 0 29
- 0 2 0 164272 42576 146408 0 0 380 7212 6145 7131 15 16 0 69
- 1 0 0 162992 42712 147728 0 0 148 96 2673 2252 39 10 0 51
- 4 0 0 161200 42924 149220 0 0 244 0 2779 4730 75 15 0 11
- 2 0 0 160688 43140 149552 0 0 244 28 1496 2026 72 13 0 16
- 2 0 0 159664 43428 150156 0 0 364 196 1922 1638 47 19 0 34
- 0 1 0 158896 43648 150708 0 0 236 7208 1755 1225 67 18 0 15
- 1 1 0 156400 43848 152304 0 0 684 0 2493 2487 40 20 0 40
- 0 2 0 154352 44304 153896 0 0 520 0 3012 2923 50 17 0 34
- 3 1 0 152112 44704 154664 0 0 468 72 2056 2694 69 15 0 16
- 0 2 0 148992 44856 156980 0 0 2232 148 1540 2104 73 18 0 9
- 0 1 0 144880 44968 158712 0 0 1528 4008 1594 3184 74 14 0 11
- 4 1 0 137904 45180 162748 0 0 1080 0 4983 6323 42 13 0 45
- 2 1 0 130288 45220 165460 0 0 1968 0 2021 2938 71 14 0 15
- 1 0 0 119536 45296 168716 0 0 1228 140 3547 3583 68 14 0 18
- 1 1 0 117360 45312 170224 0 0 968 0 1907 1359 61 16 0 23
- 2 2 0 116080 45324 171360 0 0 516 6724 2085 2944 63 17 0 20
- 0 2 0 114496 45344 172644 0 0 864 0 1738 3037 43 17 0 41
- 0 2 0 108288 45824 177876 0 0 692 0 1181 5225 27 8 0 65
- 0 3 0 105920 46052 179892 0 0 516 696 1141 2459 29 5 0 66
- 0 3 0 83840 47072 199152 0 0 392 852 1357 14748 44 33 0 23
- 2 4 0 68992 47904 211116 0 0 264 11780 1356 7610 39 34 0 27
- 0 5 0 64832 48092 215100 0 0 376 2984 1162 3384 31 13 0 56
- 0 5 0 61632 48672 214972 0 0 216 13196 1241 1669 31 20 0 49
- 0 6 0 61056 48764 214972 0 0 28 5912 1417 1577 20 6 0 74
- 0 2 0 76472 48960 215204 0 0 32 14180 2144 2839 24 9 0 67
- 1 1 0 59656 49140 218304 0 0 16 4992 1123 3326 75 19 0 6
- 2 0 0 49224 49364 224208 0 0 24 1960 1220 7624 76 24 0 0
- 2 0 0 59080 49580 216944 0 0 8 17016 1213 3317 68 32 0 0
- 4 1 0 73672 49636 215640 0 0 36 4100 1247 2711 76 16 0 8
- 2 0 0 60360 49640 215512 0 0 0 592 1114 943 89 11 0 0
- 2 0 0 65352 49696 215796 0 0 8 3624 1441 2462 81 16 0 3
- 4 0 0 59656 49848 215872 0 0 0 7996 1304 5572 87 13 0 0
- 2 0 0 64712 49988 216200 0 0 12 7616 1302 3853 77 22 0 1
- 0 2 0 55240 50052 216180 0 0 20 5404 1258 2329 79 14 0 7
- 1 2 0 56840 50100 218048 0 0 1616 1236 1460 1400 81 14 0 5
- 3 0 0 65608 50128 220772 0 0 2640 1728 1384 1210 82 7 0 11
- 3 0 0 56904 50168 223656 0 0 640 424 1595 3344 85 15 0 0
- 3 0 0 52680 50188 224544 0 0 132 0 1573 1530 96 4 0 0
- 3 0 0 51080 50200 224748 0 0 8 0 1497 1471 95 5 0 0
- 4 1 0 40392 50256 228804 0 0 0 3320 2945 5356 82 18 0 0
- 2 1 0 22024 50344 238148 0 0 0 17148 1669 7366 71 29 0 0
- 3 0 0 35400 50400 225308 0 0 0 2760 1742 1987 87 13 0 0
- 0 3 0 29384 50476 226384 0 0 208 4064 1722 2820 73 14 0 13
- 4 0 0 37624 50608 228128 0 0 1780 1520 1303 2706 76 11 0 13
- 3 0 0 27832 50756 228764 0 0 716 2304 1300 2545 91 9 0 0
- 2 0 0 37112 51060 229568 0 0 88 4824 1226 2826 77 19 0 4
- 2 0 0 25976 51228 229232 0 0 4 4716 1110 3304 85 15 0 0
- 3 0 0 38648 51452 229444 0 0 24 4020 1120 2915 82 16 0 2
- 2 0 0 29240 51600 227648 0 0 0 2468 1077 2058 85 15 0 0
- 2 0 0 24696 51684 227592 0 0 32 2904 1193 1773 83 15 0 2
- 3 0 0 38520 51708 227732 0 0 0 2996 1382 1901 73 16 0 11
- 2 0 0 28216 51708 227648 0 0 0 1720 1133 1943 90 10 0 0
- 1 1 0 24504 51708 227772 0 0 12 1412 1104 1528 88 12 0 0
- 2 1 0 37496 51732 227348 0 0 0 3664 1315 2116 83 15 0 2
- 1 0 0 25912 51736 227384 0 0 0 956 1070 999 90 10 0 0
- 1 0 0 41144 51780 227712 0 0 344 704 1228 1076 59 5 25 11
- 1 1 0 40440 51908 228556 0 0 972 0 1178 1458 56 2 0 42
- 1 0 0 34768 52036 233324 0 0 0 3760 1133 4549 48 15 23 14
- 1 0 0 24912 52200 242708 0 0 4 12208 1283 7810 48 19 0 33
- 0 1 0 9460 52464 257112 0 0 8 17600 1199 10314 52 23 0 25
- 2 0 0 3208 49392 264908 0 0 0 6928 1268 7276 47 30 0 23
- 0 1 0 3288 48892 264044 0 0 0 20524 1237 8778 48 28 0 25
- 0 1 0 3736 48120 263380 0 0 0 11248 1239 6437 37 21 0 41
- 0 2 0 6084 48160 263416 0 0 28 5568 1506 1570 42 17 0 41
- 2 0 0 6724 48184 263540 0 0 60 1796 1656 941 22 13 2 64
- 2 0 0 4776 47864 265340 0 0 0 0 4174 5511 49 13 38 0
- 1 0 0 16808 47472 254272 0 0 0 11916 1111 4447 71 8 0 21
- 0 1 0 8744 47492 262352 0 0 0 9768 1106 780 76 8 0 16
- 1 0 0 7912 47520 262300 0 0 0 5208 1065 946 87 7 0 6
- 1 0 0 41336 47608 229236 0 0 116 1792 1142 3533 75 12 1 12
- 2 0 0 39608 47616 230996 0 0 8 0 1006 3032 91 6 0 3
- 1 0 0 37880 47640 232724 0 0 16 0 1006 2840 91 5 0 4
- 1 0 0 35896 47640 234672 0 0 12 0 1005 2837 96 3 0 1
- 1 0 0 33928 47644 236688 0 0 0 0 1012 2910 97 3 0 0
- 1 1 0 32328 47644 238208 0 0 0 6688 1063 3594 94 6 0 0
- 1 0 0 30864 47652 239780 0 0 0 2524 1240 3058 93 7 0 0
- 1 0 0 29264 47656 241384 0 0 0 0 1006 3325 96 4 0 0
- 2 0 0 27168 47656 243484 0 0 68 0 1014 3094 95 5 0 0
- 2 0 0 25184 47680 245432 0 0 384 0 1066 3588 79 9 0 12
- 0 2 0 23392 47712 247204 0 0 796 4812 1152 3527 75 6 0 19
- 1 0 0 21024 47736 249604 0 0 304 3128 1309 2253 56 7 0 37
- 1 0 0 16944 47744 253716 0 0 68 0 1006 3565 93 6 0 1
- 1 0 0 15408 47748 255284 0 0 0 0 1002 4023 93 7 0 0
- 2 0 0 13744 47748 256916 0 0 0 0 1007 3751 92 8 0 0
- 1 1 0 12144 47748 258468 0 0 0 3760 1023 3149 95 5 0 0
- 1 0 0 10744 47768 259924 0 0 8 7200 1402 2882 85 8 0 7
- 1 0 0 9080 47768 261604 0 0 0 0 1009 3091 94 6 0 0
- 1 0 0 7160 47772 263460 0 0 0 0 1002 2897 95 5 0 0
- 1 0 0 5240 47772 265364 0 0 0 0 1002 3593 93 7 0 0
- 1 1 0 3256 47776 267172 0 0 0 8700 1036 4294 95 5 0 0
- 1 0 0 3192 47528 267512 0 0 0 56 1212 3086 96 4 0 0
- 1 0 0 2876 47436 267888 0 0 0 0 1002 2747 97 3 0 0
- 1 0 0 54368 47092 220248 0 0 24 12 1009 2475 81 18 0 1
- 0 1 0 128160 47212 142832 0 0 1580 0 1091 1208 38 27 0 34
- 0 2 0 116196 47272 153360 0 0 10588 4356 1180 1062 64 6 0 30
- 1 0 0 124328 47800 156180 0 0 392 1904 1589 3239 35 22 14 29
- 1 0 0 98408 48744 178540 0 0 16 0 1006 12499 73 26 0 1
- 2 0 0 64744 49904 208364 0 0 16 5648 1233 13757 67 32 0 1
- 2 0 0 31208 51932 236676 0 0 0 28672 1239 11989 66 34 0 0
- 1 1 0 11392 52696 255252 0 0 0 23700 1397 10369 75 25 0 0
- 4 2 0 7108 52816 259180 0 0 0 18816 1314 2375 34 8 0 58
- 1 3 0 3712 46720 268328 0 0 452 18196 1279 10855 72 17 0 11
- 1 3 0 5072 45728 266712 0 0 328 8400 1169 2179 33 18 0 49
- 1 1 0 3244 43028 265904 0 0 464 22956 1198 1435 51 7 0 42
- 1 2 0 3648 42076 266460 0 0 468 3312 1239 1109 34 4 0 62
- 1 0 0 8796 42132 266528 0 0 60 6148 1148 873 63 6 0 31
- 1 0 0 8732 42132 266528 0 0 0 0 1002 653 98 2 0 0
- 0 0 0 7324 42156 268100 0 0 0 0 2863 2123 60 9 31 0
- 4 0 0 3264 40624 271444 0 0 20 5796 2563 4206 55 21 9 16
- 2 0 0 3464 35888 275444 0 0 392 3964 1370 4330 67 16 0 17
- 2 0 4 3428 33444 278424 0 0 4 9296 1304 3294 34 22 0 45
- 1 0 4 8384 30676 278304 0 0 0 6844 1224 1481 63 14 0 23
- 1 0 4 4160 30836 280828 0 0 16 1016 1135 2112 74 19 3 4
- 2 0 4 3464 28828 282696 0 0 0 0 1002 2531 72 28 0 0
- 0 0 4 7928 27804 280840 0 0 0 0 1008 1370 39 19 42 0
- 2 0 4 7984 27820 280868 0 0 0 0 1002 893 46 19 35 0
- 2 0 4 7920 27828 280848 0 0 0 0 1011 1651 67 33 0 0
- 4 0 4 7664 27840 280856 0 0 0 2636 1174 1855 76 24 0 0
- 1 0 4 6512 27856 280892 0 0 0 0 1089 2397 77 23 0 0
- 1 0 4 7792 27876 280976 0 0 4 0 1263 3195 82 18 0 0
- 5 0 4 6888 27876 281372 0 0 68 0 1557 1956 79 21 0 0
- 5 0 4 6440 27876 281948 0 0 0 0 1674 1625 96 4 0 0
- 2 0 4 6376 27888 281988 0 0 0 1244 1179 3178 63 37 0 0
- 1 1 4 5432 27900 282104 0 0 44 0 1205 2151 70 30 0 0
- 1 0 4 3072 26140 283724 0 0 1696 0 1173 1354 66 34 0 0
- 1 0 4 6392 26076 282812 0 0 0 0 1012 1466 52 48 0 0
- 4 0 4 6328 26096 282796 0 0 0 0 1002 932 60 40 0 0
- 3 0 4 4664 26108 282808 0 0 0 448 1023 924 57 43 0 0
- 1 0 4 5992 26120 282952 0 0 0 0 1010 2563 59 41 0 0
- 1 0 4 3688 25716 282436 0 0 0 0 1020 828 80 20 0 0
- 0 0 4 7624 25688 281752 0 0 0 0 1072 1170 78 20 2 0
- 0 0 4 7624 25688 281752 0 0 0 0 1021 290 11 1 88 0
- 0 0 4 7560 25704 281788 0 0 40 556 1067 2601 52 2 44 2
- 0 0 4 7816 25704 281788 0 0 0 0 1040 1293 22 2 76 0
- 1 1 4 7944 25704 281788 0 0 0 3068 1672 1249 12 4 15 69
- 0 2 4 7944 25712 281796 0 0 16 3112 1732 1170 12 3 0 85
- 1 2 4 8560 25888 281848 0 0 228 248 1133 1422 18 7 0 75
- 1 2 4 7616 26088 281888 0 0 180 308 1246 2340 50 13 0 38
- 1 1 4 8256 26252 282072 0 0 188 104 1082 2201 75 25 0 0
- 6 2 4 8000 26460 282152 0 0 288 4 1099 3948 76 24 0 0
- 1 2 4 9952 26864 282228 0 0 440 0 1137 2462 48 10 0 42
- 2 1 4 56004 27092 238836 0 0 252 0 1099 1233 52 24 0 24
- 1 3 4 147504 27292 141552 0 0 368 1892 1112 1970 54 46 0 0
- 0 3 4 153392 27496 146340 0 0 2624 8 1866 2683 40 11 0 50
- 1 2 4 148960 27644 147368 0 0 1060 0 1101 1188 40 7 0 53
- 0 2 4 145440 27776 148144 0 0 796 504 1119 1788 37 6 0 57
- 2 1 4 140960 27952 149688 0 0 624 0 1117 2390 47 29 0 24
- 2 2 4 135584 28200 150904 0 0 296 2020 1151 2363 78 18 0 4
- 1 3 4 125792 28344 158032 0 0 136 2484 1298 5084 73 27 0 0
- 2 0 4 95968 28612 186460 0 0 256 476 1328 15085 74 26 0 0
- 2 2 4 61408 30048 216368 0 0 268 12536 1242 16737 57 43 0 0
- 2 2 4 25328 31404 248624 0 0 192 10404 1148 15331 68 32 0 0
- 0 5 4 3480 29920 271384 0 0 216 10620 1139 13620 76 22 0 2
- 0 5 4 3496 30032 271432 0 0 160 8228 1144 445 18 2 0 80
- 2 5 4 3176 30144 271500 0 0 180 8036 1177 1261 29 2 0 69
- 2 5 4 3320 30084 271484 0 0 224 6348 1154 1440 27 5 0 68
- 0 5 4 4688 29432 270736 0 0 260 3172 1120 1025 8 4 0 88
- 0 5 4 4384 29816 270736 0 0 384 3264 1136 540 7 3 0 90
- 0 5 4 3424 30140 270784 0 0 372 4404 1207 527 25 3 0 72
- 0 3 4 2936 28864 267040 0 4 192 20860 1304 1240 13 9 0 78
- 0 3 4 2936 28864 267044 0 0 0 25768 1307 469 2 3 0 95
- 0 3 4 3952 28964 267056 0 0 20 15252 1296 513 16 9 0 75
- 0 2 4 4084 29228 267324 0 0 496 6824 1184 1042 24 3 0 73
- 2 1 4 3252 29324 267592 0 0 400 56 1171 1122 46 4 0 50
- 2 0 4 3116 29284 266856 0 0 540 0 1073 1321 98 2 0 0
- 1 0 4 3052 29284 266884 0 0 28 0 1017 1209 97 3 0 0
- 1 0 4 2476 28672 267544 0 0 8 4 2121 1928 71 8 21 1
- 0 1 4 2420 27516 266968 0 0 348 7040 3392 4551 13 20 38 29
- 1 0 4 2676 28052 265844 0 0 120 9604 1344 5233 18 25 0 57
- 0 1 4 3772 28520 266044 0 0 1432 3208 1508 2082 14 12 0 74
- 0 1 4 5564 28632 263060 0 0 12 6060 1236 748 64 15 3 18
- 2 1 4 3448 28776 264256 0 0 212 3664 1370 2422 55 22 0 23
- 0 3 4 8260 28808 262032 0 0 44 2176 1595 2377 22 31 0 47
- 0 2 4 7164 28860 262892 0 0 888 864 1280 1391 28 10 0 62
- 0 2 4 5100 28876 264272 0 0 1412 596 1625 3044 16 8 16 60
- 1 0 4 4880 28832 264004 0 0 1076 0 1239 1610 38 19 0 43
- 3 0 4 6348 28856 264036 0 0 24 2772 1121 1260 58 37 0 5
- 0 1 4 4364 28876 265748 0 0 1704 0 1124 791 50 25 0 26
- 3 0 4 4948 28888 265476 0 0 1136 0 1092 1611 42 48 0 10
- 2 0 4 3284 28896 265488 0 0 0 0 1002 1835 52 48 0 0
- 2 0 4 7264 28868 263160 0 0 4 0 1014 1463 60 40 0 0
- 1 0 4 7144 28888 263180 0 0 4 340 1020 1132 50 49 0 2
- 3 0 4 5928 28900 263196 0 0 0 0 1002 868 56 44 0 0
- 2 0 4 7272 28900 263192 0 0 0 0 1005 927 55 45 0 0
- 2 0 4 6824 28912 263340 0 0 0 0 1002 1381 54 46 0 0
- 1 0 4 8280 28928 262312 0 0 0 0 1002 496 86 14 0 0
- 0 0 4 7804 28952 262452 0 0 32 656 1049 827 17 19 62 2
- 0 0 4 7808 28952 262452 0 0 0 0 1002 162 1 1 98 0
- 0 0 4 7872 28952 262452 0 0 0 0 1005 165 0 0 100 0
- 0 0 4 8064 28952 262452 0 0 0 0 1005 354 1 0 99 0
- 0 0 4 8256 28952 262452 0 0 0 0 1041 277 1 0 99 0
- 0 0 4 8448 28960 262452 0 0 0 196 1017 128 0 2 98 0
- 2 0 4 9448 29000 262528 0 0 0 0 1002 2435 41 22 37 0
- 1 0 4 9384 29008 262652 0 0 92 0 1029 3728 70 26 0 4
- 2 0 4 119388 29016 158488 0 0 36 0 1016 2001 44 54 0 2
- 2 0 4 127316 29628 152092 0 0 64 512 1081 8575 46 52 0 2
- 1 1 4 107812 29976 170780 0 0 0 18820 1358 9816 49 16 0 35
- 1 0 4 69668 31452 204288 0 0 0 128 1022 14729 50 34 0 16
- 1 2 4 26804 32872 242876 0 0 0 32388 1326 17316 60 40 0 0
- 0 2 4 3656 33052 265540 0 0 4 19112 1285 11620 40 28 0 32
- 0 2 4 3672 33052 265540 0 0 0 23700 1301 153 0 1 0 99
- 0 3 4 3672 33052 265540 0 0 0 22140 1262 205 0 1 0 99
- 0 2 4 3668 33152 265792 0 0 272 12764 1237 302 1 5 0 94
- 0 0 4 3720 31348 266824 0 0 60 4932 2960 2275 35 10 34 21
- 1 0 8 3400 28440 268724 0 0 0 11076 2899 7225 22 25 24 29
- 1 0 8 6232 28828 267212 0 0 1160 4384 1371 1222 37 12 0 51
- 2 1 8 7480 28956 267272 0 0 156 8824 1510 870 61 15 0 24
- 1 1 8 6584 28960 267460 0 0 4 2356 1826 828 85 5 0 10
- 0 1 8 5540 28984 267456 0 0 4 3356 4083 3658 22 11 35 31
- 2 0 8 3464 29524 269112 0 0 0 10988 1286 5384 18 26 0 56
- 2 0 8 3660 29916 269700 0 0 4 2692 1177 1559 53 20 0 27
- 0 0 8 8200 29912 266920 0 0 72 0 1014 1391 21 34 40 4
- 0 1 8 5512 29920 268732 0 0 1816 0 1310 407 5 6 59 30
- 1 0 8 4360 29940 269072 0 0 304 0 1057 917 56 35 0 9
- 1 0 8 4288 29952 269052 0 0 8 0 1003 1037 63 36 0 1
- 1 0 8 4764 29932 270276 0 0 2840 320 1252 776 32 21 0 47
- 1 0 8 4564 29940 270276 0 0 0 0 1002 2055 47 53 0 0
- 3 0 8 4512 29956 270280 0 0 4 0 1009 1584 56 42 0 2
- 2 0 8 6492 29784 267716 0 0 0 0 1009 1547 48 52 0 0
- 2 0 8 6560 29804 267724 0 0 4 0 1003 872 58 41 0 1
- 1 0 8 6044 29824 267740 0 0 0 360 1036 918 57 43 0 0
- 2 0 8 6092 29824 267736 0 0 0 0 1002 857 62 38 0 0
- 1 0 8 3484 29824 267900 0 0 0 0 1004 1385 55 45 0 0
- 4 0 8 9092 29728 266080 0 0 0 0 1002 721 81 19 0 0
- 0 0 8 8236 29728 266112 0 0 32 0 1016 371 3 4 91 2
- 0 0 8 8236 29740 266112 0 0 0 568 1050 161 0 0 99 1
- 0 0 8 8236 29740 266112 0 0 0 68 1015 145 0 0 100 0
- 0 0 8 8492 29740 266112 0 0 0 0 1014 676 3 1 96 0
- 0 0 8 8700 29740 266116 0 0 0 0 1062 608 3 1 96 0
- 0 0 8 8700 29740 266116 0 0 0 0 1164 607 5 0 95 0
- 2 0 8 9240 29804 266216 0 0 12 272 1161 5430 62 29 7 2
- 2 0 8 7192 29820 266388 0 0 160 12 1035 570 70 23 0 7
- 2 0 8 83520 30180 195700 0 0 388 0 1098 1179 26 37 0 36
- 2 0 8 143592 30656 138808 0 0 200 56 1047 4788 25 54 0 22
- 1 0 8 100392 31568 179560 0 0 4 0 1003 19392 68 32 0 0
- 2 1 8 63720 33360 210944 0 0 24 25524 1275 12565 40 36 0 24
- 1 2 8 16904 34680 254664 0 0 32 35696 1922 21802 48 27 0 25
- 0 2 8 147180 34804 133316 0 0 92 7708 1259 5667 19 52 0 29
- 0 0 8 189320 34904 90252 0 0 332 16 2793 23221 15 18 36 31
- 1 0 8 179720 34920 99952 0 0 4 0 2705 2760 53 24 23 0
- 1 0 8 179720 34932 99952 0 0 0 224 1009 479 80 20 0 0
- 1 0 8 179720 34932 99952 0 0 0 0 1002 351 82 18 0 0
- 2 0 8 179720 34932 99952 0 0 0 0 1002 287 82 18 0 0
- 2 0 8 179468 34944 99952 0 0 0 13184 1352 619 83 17 0 0
- 2 0 8 178524 34956 100972 0 0 0 0 2216 1928 52 19 29 0
- 0 0 8 175772 34980 103752 0 0 8 60 4369 4221 20 13 65 2
- 3 0 8 172892 34984 106544 0 0 0 0 4368 4521 14 21 65 0
- 0 0 8 171036 34992 108484 0 0 0 0 3484 3633 16 20 64 0
- 3 0 8 168996 35004 110392 0 0 0 0 3401 3312 24 24 52 0
- 0 0 8 166500 35020 113156 0 0 0 12244 4456 4457 16 20 49 14
- 1 0 8 165604 35040 114108 0 0 0 28 2257 2050 43 30 28 0
- 0 0 8 162788 35044 116880 0 0 0 0 4374 4312 12 15 73 0
- 0 0 8 159268 35056 120376 0 0 0 0 5301 5319 12 17 71 0
- 1 0 8 157796 35064 121856 0 0 0 0 2834 2693 39 23 39 0
- 1 0 8 157092 35088 122592 0 0 0 10172 2087 1651 49 24 16 11
- 1 0 8 155940 35108 123740 0 0 0 28 2465 2114 41 19 40 0
- 3 0 8 154020 35116 125464 0 0 0 0 3075 2953 38 17 46 0
- 7 0 8 153316 35128 126300 0 0 0 0 2132 1758 46 20 34 0
- 0 0 8 150564 35136 129048 0 0 0 0 4287 4339 25 17 58 0
- 0 0 8 148324 35152 131244 0 0 0 8080 3740 4926 28 18 50 4
- 2 0 8 146596 35168 133012 0 0 0 40 3218 3202 36 17 47 0
- 0 0 8 145828 35176 133684 0 0 0 0 1871 1408 52 19 29 0
- 2 0 8 128996 36320 149088 0 0 48 20 1469 10925 50 41 10 0
- 2 0 8 100836 37292 174360 0 0 0 484 1126 15755 52 48 0 0
- 0 1 8 97048 37436 174528 0 0 76 25980 1229 2030 15 26 0 59
- 0 3 8 97176 37436 174528 0 0 0 18300 1305 240 0 2 0 98
- 0 1 8 96024 37880 174812 0 0 4 9696 1290 3082 21 18 0 61
- 0 1 8 78792 38152 189824 0 0 0 15628 1117 8568 36 39 0 25
- 2 0 8 94152 38516 174976 0 0 4 6740 1246 2596 36 28 0 37
- 0 1 8 89864 39004 178528 0 0 0 15040 1221 8511 38 28 0 33
- 2 0 8 82312 39744 184900 0 0 4 8912 1258 9118 35 40 0 26
- 3 0 8 89288 40088 177492 0 0 0 20588 1283 3786 16 37 0 48
- 2 0 8 88520 40556 177828 0 0 0 9984 1450 3295 14 22 0 64
- 0 1 8 90696 41288 176316 0 0 68 12336 1365 4731 25 27 0 47
- 2 0 8 89672 42052 176300 0 0 0 5748 1487 2104 35 25 0 40
- 0 0 8 89544 42692 175916 0 0 0 5016 1342 1679 18 16 26 41
- 0 0 8 89544 42692 175916 0 0 0 0 1002 124 0 0 100 0
- 0 0 8 89544 42692 175916 0 0 0 0 1002 164 0 0 100 0
- 0 1 8 86032 42780 178428 0 0 0 3856 1180 2024 15 8 73 4
- 0 2 8 71824 43220 191912 0 0 4 16268 1364 10214 29 24 0 48
- 0 1 8 58144 43544 204692 0 0 32 13852 1274 8569 23 20 0 57
- 4 0 8 43808 43908 217060 0 0 0 14168 1235 7069 20 33 0 47
- 1 0 8 28064 44520 231040 0 0 0 13948 1270 9096 27 27 0 47
- 0 1 8 20512 45096 239368 0 0 0 12920 1313 5039 30 20 0 49
- 0 1 8 21024 45276 239252 0 0 8 4136 1722 909 6 9 0 85
- 2 0 8 16736 45304 244004 0 0 0 240 4517 5625 17 19 54 10
- 1 0 8 19316 45336 241680 0 0 0 11368 1115 4858 63 9 0 28
- 1 0 8 11832 45432 248396 0 0 0 14088 1180 288 61 10 0 29
- 1 0 8 45064 45520 215384 0 0 0 792 1064 2839 84 11 1 4
- 1 0 8 42504 45520 217912 0 0 0 0 1008 3302 95 5 0 0
- 1 0 8 40136 45536 220312 0 0 0 3868 1124 3292 96 4 0 0
- 1 0 8 37448 45540 222968 0 0 0 0 1005 3117 95 5 0 0
- 1 0 8 35144 45540 225272 0 0 0 0 1002 4140 96 4 0 0
- 1 0 8 32712 45548 227640 0 0 0 188 1013 3520 95 5 0 0
- 1 0 8 29832 45548 230520 0 0 0 0 1002 4256 93 7 0 0
- 2 0 8 26632 45560 233772 0 0 0 12660 1460 4962 87 13 0 0
- 1 0 8 21848 45564 238572 0 0 0 0 1002 4068 92 8 0 0
- 1 0 8 19480 45568 240892 0 0 0 0 1002 5106 93 7 0 0
- 1 0 8 17112 45572 243260 0 0 0 0 1005 3832 95 5 0 0
- 1 0 8 14616 45572 245724 0 0 0 0 1006 3779 95 5 0 0
- 1 1 8 12072 45576 248268 0 0 0 15164 1493 3494 94 6 0 0
- 1 0 8 9640 45584 250780 0 0 0 64 1016 4592 93 7 0 0
- 1 0 8 7336 45588 253020 0 0 0 0 1002 3830 97 3 0 0
- 1 0 8 5160 45588 255100 0 0 0 0 1005 3025 97 3 0 0
- 1 0 8 127336 45592 130416 0 0 60 0 1012 1330 54 46 0 0
- 1 0 8 133708 45988 133468 0 0 200 11684 1623 4002 38 32 2 29
- 1 0 8 93964 46824 170844 0 0 0 8 1016 18659 68 32 0 0
- 1 2 8 51020 48348 208028 0 0 0 24840 1387 16085 52 48 0 0
- 1 2 8 10172 49372 246192 0 0 0 24976 1382 18509 62 38 0 0
- 0 2 12 4348 47372 254452 0 4 16 17816 1291 6027 26 20 0 54
- 0 3 12 4348 47372 254452 0 0 0 23824 1329 1140 5 3 0 92
- 0 3 12 4284 47372 254452 0 0 0 26884 1327 1564 7 4 0 89
- 0 1 12 4620 47480 254456 0 0 0 13196 1261 390 1 5 0 94
- 1 0 12 3628 47496 254424 0 0 4 64 1038 257 83 5 0 12
- 0 0 12 3800 46872 254932 0 0 4 40 2224 1538 58 6 36 0
- 3 0 12 3096 44880 255512 0 0 0 11204 3378 5269 17 30 30 24
- 0 1 12 4956 40176 259900 0 0 60 9624 1336 5534 27 25 0 49
- 1 0 12 8004 40436 257364 0 0 96 6152 1205 1620 50 13 0 37
- 1 0 12 4676 40604 260120 0 0 260 1028 1232 3182 57 21 2 20
- 0 0 12 7860 40568 256752 0 0 68 0 1046 3395 54 42 2 2
- 2 0 12 7680 40568 256816 0 0 60 0 1050 1809 7 2 90 1
- 1 0 12 7232 40584 256976 0 0 152 0 1038 1254 56 37 0 7
- 1 0 12 5112 40592 257004 0 0 8 0 1174 1396 66 34 0 0
- 1 0 12 19264 40636 256848 0 0 76 2656 1179 3093 55 24 0 21
- 1 0 12 20416 40652 256848 0 0 0 0 1131 2860 51 49 0 0
- 1 1 12 20032 40664 256848 0 0 0 4444 1952 2423 52 48 0 0
- 3 0 12 18624 40684 257092 0 0 48 2000 1540 1334 56 43 0 1
- 1 0 12 18368 40696 257104 0 0 4 0 1008 1173 47 51 0 2
- 3 0 12 19548 40720 257116 0 0 0 360 1059 1376 58 42 0 0
- 2 0 12 18908 40720 257120 0 0 0 0 1032 1291 60 40 0 0
- 1 0 12 18892 40832 257376 0 0 332 0 1071 1365 76 24 0 0
- 1 1 12 15884 40844 257520 0 0 12 0 1009 1179 63 37 0 0
- 3 1 12 14284 41060 262108 0 0 4544 0 1188 694 84 16 0 0
- 1 0 12 11356 41108 263800 0 0 1724 636 1126 1024 57 14 0 29
- 0 0 12 10652 41108 263800 0 0 0 0 1013 497 21 2 77 0
- 0 0 12 10268 41112 264044 0 0 244 0 1028 349 45 1 52 2
- 0 0 12 10472 41112 264044 0 0 0 0 1014 286 8 1 91 0
- 0 0 12 10600 41112 264044 0 0 0 0 1026 375 4 1 95 0
- 0 0 12 10600 41124 264048 0 0 8 76 1013 176 2 0 96 2
- 1 1 12 10784 41372 264132 0 0 160 0 1047 2693 49 30 21 0
- 1 1 12 8224 41892 264184 0 0 560 16 1141 3560 70 26 0 4
- 1 0 12 4300 42036 264912 0 0 800 0 1048 1632 86 14 0 0
- 1 0 12 137560 42052 131364 0 0 100 0 1021 1095 32 66 0 2
- 3 0 12 147160 42148 133972 0 0 300 3120 1666 2374 51 14 12 23
- 2 1 12 142300 42200 136944 0 0 1128 0 1113 2138 65 31 0 4
- 2 1 12 142684 42300 137512 0 0 368 512 1097 1729 85 12 0 3
- 1 0 12 111004 43096 165264 0 0 8 0 1005 16206 63 37 0 0
- 2 0 12 73244 44380 198820 0 0 0 15604 1389 15130 61 39 0 0
- 1 3 12 35812 45592 232596 0 0 0 24596 1241 14821 66 34 0 0
- 0 4 12 6096 45852 260772 0 0 16 20104 1309 14434 52 35 0 13
- 2 1 12 6292 45852 260772 0 0 0 18284 1347 408 1 7 0 92
- 0 1 12 6268 45948 260848 0 0 92 21312 1219 346 3 2 0 95
- 0 1 12 6636 45996 260848 0 0 0 35088 2250 700 3 4 0 93
- 1 0 12 5748 46020 260812 0 0 0 96 1037 285 89 3 0 8
- 1 0 12 4784 46044 261804 0 0 0 0 2112 2297 76 7 17 0
- 3 0 12 3788 45040 261772 0 4 24 4668 3060 4875 50 21 22 8
- 0 1 12 4872 41612 265396 0 0 0 12704 1405 5826 22 30 0 48
- 2 1 12 6120 41944 262672 0 0 616 2748 1336 2869 29 22 0 48
- 6 1 12 7468 42144 263132 0 0 604 4968 1169 3388 33 10 0 58
- 0 1 12 6824 42228 262448 0 0 40 856 1202 1737 84 8 4 4
- 0 2 12 4476 42288 264792 0 0 24 4460 1780 2120 41 24 0 36
- 0 1 12 8372 41432 261760 0 0 16 2376 1834 2561 44 40 0 17
- 1 0 12 8180 41432 261828 0 0 52 0 1144 1135 24 10 59 7
- 2 0 12 7556 41448 262208 0 0 260 0 1178 1233 68 22 0 10
- 2 0 12 7172 41452 262248 0 0 8 0 1084 1166 61 38 0 1
- 4 0 12 7644 41480 262204 0 0 0 2808 1067 891 58 32 0 10
- 1 0 12 7836 41496 262204 0 0 0 0 1002 1745 48 52 0 0
- 2 0 12 6184 41500 262216 0 0 0 0 1076 1842 56 44 0 0
- 1 0 12 2980 41504 262404 0 0 0 0 1110 2037 64 36 0 0
- 1 0 12 5032 41512 262428 0 0 4 0 1030 2192 51 48 0 1
- 1 0 12 4768 41540 262424 0 0 0 356 1028 1237 61 39 0 0
- 1 0 12 4848 41540 262436 0 0 0 0 1042 1989 61 39 0 0
- 2 0 12 5792 41552 262432 0 0 4 0 1113 1444 62 38 0 0
- 2 0 12 5984 41556 262588 0 0 0 0 1097 2942 57 43 0 0
- 1 0 12 8268 41452 260752 0 0 20 0 1046 998 86 14 0 0
- 0 0 12 7696 41476 260984 0 0 132 548 1110 1415 28 17 50 6
- 0 0 12 7696 41476 260984 0 0 0 0 1008 193 0 1 99 0
- 0 0 12 7696 41476 260984 0 0 0 0 1008 222 1 0 99 0
- 0 0 12 7888 41476 260984 0 0 0 0 1002 173 1 0 99 0
- 0 0 12 8092 41476 260988 0 0 0 0 1020 324 2 0 98 0
- 0 0 12 8028 41488 260988 0 0 0 224 1022 167 0 2 97 1
- 2 0 12 6528 41532 261136 0 0 104 0 1071 2427 39 15 45 0
- 2 0 12 8192 41572 261224 0 0 4 0 1003 3528 71 27 0 2
- 2 0 12 80080 41616 194168 0 0 100 0 1042 2542 50 43 0 7
- 1 0 12 151572 41892 126172 0 0 240 512 1156 3746 32 64 0 4
- 1 0 12 122196 42580 154012 0 0 0 7560 1193 14264 54 27 0 19
- 3 0 12 81300 44012 190692 0 0 0 10972 1162 16637 59 41 0 0
- 1 0 12 48888 45172 219660 0 0 12 28672 1305 12708 61 35 0 4
- 0 2 12 16952 45472 250664 0 0 1288 18496 1265 16721 57 29 0 14
- 0 2 12 17288 45500 250712 0 0 8 24156 1346 486 4 9 0 87
- 0 3 12 17288 45500 250744 0 0 0 21396 1348 639 4 2 0 94
- 0 1 12 17504 45500 250744 0 0 0 11844 1282 638 4 5 0 91
- 1 0 12 15456 45608 251832 0 0 0 9416 2465 1982 37 10 17 36
- 3 1 12 5176 46072 259572 0 0 132 10656 3288 7692 28 23 29 19
- 0 1 12 6856 45660 259712 0 0 0 5296 1302 2381 46 17 0 37
- 0 2 12 7820 45680 259628 0 0 72 5188 1900 1298 8 11 0 81
- 1 0 12 8204 45704 259660 0 0 4 5848 1492 774 25 3 0 72
- 1 0 12 8332 45704 259664 0 0 0 0 1020 461 96 4 0 0
- 1 0 12 6968 44224 261588 0 0 0 0 3929 3987 39 11 50 0
- 0 1 12 3448 43216 264212 0 0 60 13072 1329 6054 28 22 0 50
- 2 2 12 2812 43676 264356 0 0 124 3092 1260 1945 51 25 0 24
- 1 0 12 13460 43524 256696 0 0 1124 112 1154 2425 60 38 0 2
- 0 0 12 13396 43524 256724 0 0 20 0 1041 549 7 4 86 3
- 2 0 12 12180 43548 257940 0 0 1216 0 1225 887 39 27 11 22
- 2 0 12 12184 43552 257952 0 0 8 0 1061 1630 60 39 0 1
- 0 1 12 10392 43580 259168 0 0 1212 560 1170 1515 56 29 0 15
- 3 0 12 8536 43592 260812 0 0 1644 0 1180 1717 44 39 0 17
- 1 0 12 8168 43596 260812 0 0 0 0 1035 2455 47 53 0 0
- 1 0 12 5096 43604 261020 0 0 8 0 1004 1069 56 43 0 1
- 1 0 12 4904 43612 261088 0 0 60 0 1010 1084 47 51 0 2
- 2 0 12 6568 43648 261096 0 0 0 348 1017 907 55 45 0 0
- 2 0 12 7228 43648 261112 0 0 0 0 1059 1363 57 43 0 0
- 1 0 12 5484 43652 261172 0 0 0 0 1008 1117 53 47 0 0
- 1 0 12 7148 43664 261332 0 0 0 0 1063 1936 70 30 0 0
- 0 0 12 7636 43664 260368 0 0 108 0 1090 1650 66 22 9 3
- 0 0 12 7700 43676 260368 0 0 0 680 1103 503 4 0 95 1
- 0 0 12 7636 43676 260400 0 0 32 0 1052 662 5 0 94 1
- 0 0 12 7828 43676 260400 0 0 0 0 1014 267 1 1 98 0
- 0 0 12 8020 43676 260400 0 0 0 0 1014 316 1 0 99 0
- 0 0 12 8100 43676 260400 0 0 0 0 1033 532 4 0 96 0
- 1 0 12 9148 43688 260400 0 0 0 32 1046 671 8 7 84 1
- 1 0 12 8316 43728 260556 0 0 24 0 1058 1285 72 26 0 2
- 2 1 12 9916 43748 260688 0 0 108 0 1067 1179 75 23 0 2
- 0 1 12 152468 44060 122844 0 0 328 0 1152 1878 18 53 0 29
- 1 0 12 135940 45368 139008 0 0 244 56 1114 10605 52 40 0 8
- 1 0 12 100364 46264 172080 0 0 24 2156 1111 15813 55 33 0 12
- 1 2 12 58380 48328 208620 0 0 84 32592 1389 15927 59 41 0 0
- 1 2 12 18028 49080 247076 0 0 8 23924 1341 19202 65 35 0 0
+ 1 2 0 57848 32624 230976 0 0 275 522 1159 597 26 5 52 16
+ 1 0 0 56080 32708 231672 0 0 376 840 1812 73848 39 18 9 34
+ 1 0 0 48592 32712 235608 0 0 20 0 3750 3369 59 12 28 1
+ 1 0 0 44752 32720 239364 0 0 0 0 1294 430 97 3 0 0
+ 1 0 0 41104 32740 242888 0 0 0 0 1307 657 94 6 0 0
+ 4 1 0 41424 32744 243800 0 0 12 14128 1403 650 86 8 0 6
+ 1 0 0 41552 32764 243912 0 0 0 2092 1357 694 83 17 0 0
+ 1 0 0 41424 32764 244016 0 0 0 0 1292 739 83 17 0 0
+ 1 0 0 41296 32764 244132 0 0 0 0 1292 703 87 13 0 0
+ 1 0 0 41168 32764 244248 0 0 0 0 1294 666 87 13 0 0
+ 3 0 0 40912 32776 244372 0 0 0 264 1297 671 87 13 0 0
+ 2 0 0 40976 32784 244472 0 0 0 604 1297 557 89 11 0 0
+ 5 0 0 39632 32804 245632 0 0 4 0 2474 1837 64 13 22 1
+ 0 0 0 37200 32816 247952 0 0 4 0 4024 3763 32 20 47 0
+ 0 0 0 35088 32824 249924 0 0 36 0 3509 3279 53 14 33 0
+ 0 0 0 32400 32840 252496 0 0 0 6816 4192 3929 35 18 38 10
+ 2 0 0 30224 32860 254644 0 0 4 620 3647 3326 39 18 42 1
+ 0 0 0 29072 32884 255712 0 0 4 0 2497 1665 43 14 43 0
+ 0 0 0 26704 32892 258016 0 0 0 0 3838 3466 38 16 46 0
+ 0 0 0 25104 32908 259596 0 0 4 0 3083 2625 45 18 35 2
+ 2 1 0 24848 32908 259820 0 0 0 7568 1606 846 57 17 20 6
+ 1 0 0 19920 32936 264676 0 0 0 732 6730 7210 23 18 56 3
+ 0 0 0 17232 32940 267332 0 0 0 112 4259 3988 42 19 39 0
+ 1 0 0 16656 32948 267892 0 0 0 0 1889 1116 52 15 33 0
+ 0 0 0 15888 32956 268636 0 0 0 0 2045 1370 56 18 26 0
+ 2 0 0 15312 32980 269084 0 0 0 8816 1888 1105 62 17 16 4
+ 1 0 0 14144 32992 270252 0 0 0 548 2529 1825 55 16 29 0
+ 0 0 0 11980 33000 272196 0 0 0 912 3607 2903 46 15 40 0
+ 0 0 0 11352 33012 272952 0 0 0 0 2102 1312 55 16 29 0
+ 1 0 0 10412 33024 273824 0 0 0 360 2202 1426 59 16 25 0
+ 1 0 0 7208 33036 276936 0 0 0 6400 4896 4701 33 18 41 8
+ 1 0 0 5388 33048 278708 0 0 0 324 3216 2575 48 15 36 0
+ 0 0 0 3344 33056 280704 0 0 0 0 3523 3126 52 16 32 0
+ 0 0 0 3576 32816 280756 0 0 0 0 1947 1170 67 15 17 0
+ 0 0 0 4092 32568 280508 0 0 56 0 1907 1129 53 14 31 2
+ 2 2 0 3256 32536 279664 0 0 136 17216 1452 10372 54 32 3 11
+ 1 0 0 3064 31876 280352 0 0 68 3096 1513 7396 43 21 0 36
+ 3 0 0 3128 31872 277868 0 0 92 140 1314 10080 57 40 0 3
+ 0 2 0 3724 32408 273648 0 0 204 10952 1444 3551 37 32 1 30
+ 1 1 0 3660 32408 273816 0 0 0 18376 1570 612 36 3 0 61
+ 3 0 0 3920 32684 272900 0 0 140 4600 1551 876 24 9 1 66
+ 2 1 0 3408 31048 274472 0 0 0 5672 1412 8653 61 25 2 12
+ 1 1 0 17624 26524 264132 0 0 0 16888 1469 2898 33 31 0 35
+ 0 1 0 18208 26936 263060 0 0 12 6744 1468 3517 58 23 4 15
+ 4 0 0 17032 27332 263716 0 0 8 10480 1465 7442 48 24 2 26
+ 0 1 0 16276 27964 263812 0 0 8 11528 1652 5138 38 24 5 34
+ 1 0 0 2896 27864 275948 0 0 0 1060 1337 8842 53 40 1 6
+ 0 1 0 18092 27276 262244 0 0 0 17252 1613 457 24 10 0 67
+ 0 2 0 16556 27712 263304 0 0 4 8204 1669 3040 27 15 4 54
+ 3 0 0 15204 28128 263996 0 0 48 8296 1546 3972 38 21 4 37
+ 3 0 0 19416 28500 261752 0 0 20 10168 1552 3931 39 20 3 37
+ 1 0 0 17752 29276 261932 0 0 0 6248 1750 2080 44 15 10 32
+ 1 0 0 17052 29956 261924 0 0 0 4928 1650 2184 52 16 8 24
+ 0 0 0 16796 30276 261768 0 0 0 3008 1500 1126 29 10 45 17
+ 1 0 0 16732 30276 261880 0 0 0 0 1280 323 20 1 79 0
+ 0 0 0 16604 30276 262004 0 0 0 0 1285 344 20 1 79 0
+ 2 0 0 9504 30512 267664 0 0 0 5180 1433 4334 42 14 38 7
+ 2 0 0 3728 28812 274848 0 0 0 16332 1573 8948 47 22 2 29
+ 2 0 0 3728 28108 275100 0 0 8 14832 1506 8807 45 24 1 31
+ 0 2 0 3152 28460 273880 0 0 1432 12548 1470 6511 36 28 1 34
+ 0 2 0 3088 28652 273044 0 0 424 13736 1514 7981 42 25 1 32
+ 0 3 4 3280 27864 272768 0 0 0 11568 1534 5992 37 19 1 44
+ 0 2 4 4948 28016 272884 0 0 0 4012 1662 616 22 5 1 72
+ 2 0 4 4508 28252 273192 0 0 0 2096 1643 774 46 5 3 46
+ 0 0 4 4088 28436 274684 0 0 248 1532 2954 2690 30 25 18 28
+ 2 0 4 7020 23544 276704 0 0 0 0 3269 8865 68 17 15 0
+ 1 0 4 15356 23564 268652 0 0 0 12212 1407 345 73 5 0 22
+ 2 0 4 8252 23656 275004 0 0 12 15336 1562 729 62 12 1 25
+ 0 3 4 43328 23832 240360 0 0 124 832 1372 614 73 6 3 18
+ 1 0 4 41664 23864 241604 0 0 112 1064 1326 2848 86 8 0 6
+ 1 0 4 39696 23868 243588 0 0 4 0 1281 2504 96 4 0 0
+ 1 0 4 37840 23880 245456 0 0 8 0 1288 2658 94 4 0 2
+ 2 0 4 35856 23880 247444 0 0 0 0 1281 2361 96 4 0 0
+ 2 0 4 33808 23900 249488 0 0 0 228 1287 2582 95 5 0 0
+ 1 0 4 32048 23908 251260 0 0 0 9228 1382 3303 94 6 0 0
+ 1 0 4 30192 23908 253084 0 0 0 0 1280 2699 97 3 0 0
+ 1 0 4 28532 23912 254776 0 0 0 0 1280 3090 94 6 0 0
+ 2 0 4 26164 23912 257156 0 0 0 0 1283 2770 96 4 0 0
+ 1 0 4 24444 23924 258880 0 0 0 40 1286 3934 92 8 0 0
+ 1 0 4 21500 23940 261792 0 0 8 9300 1367 3375 83 6 0 11
+ 2 0 4 17468 23952 265824 0 0 8 0 1282 3236 91 7 0 2
+ 2 0 4 15612 23956 267648 0 0 0 0 1283 3924 95 5 0 0
+ 3 0 4 13500 23956 269760 0 0 372 0 1380 3537 89 7 0 4
+ 1 0 4 11772 23968 271488 0 0 0 36 1292 2936 96 4 0 0
+ 1 0 4 9768 23976 273308 0 0 0 12388 1404 2937 93 7 0 0
+ 2 0 4 7780 23980 275252 0 0 4 0 1444 2854 94 5 0 1
+ 1 0 4 5712 23984 277280 0 0 0 0 1288 2629 94 6 0 0
+ 2 0 4 3608 24004 279340 0 0 20 0 1284 3327 93 5 0 2
+ 1 0 4 3672 23764 279652 0 0 0 40 1283 3949 93 7 0 0
+ 1 0 4 3004 23404 280732 0 0 4 9804 1365 2582 92 4 0 4
+ 2 0 4 3224 21744 282236 0 0 0 0 1284 2313 96 4 0 0
+ 2 2 4 3992 20024 283772 0 0 80 4 1291 2209 89 5 0 6
+ 0 1 4 91440 20824 198996 0 0 828 0 1484 1036 26 32 0 43
+ 0 1 4 141484 21240 155364 0 0 912 2072 1408 702 24 19 0 57
+ 0 1 4 124860 21368 159384 0 0 3968 4540 1474 581 26 3 0 71
+ 2 0 4 116284 21424 166664 0 0 7212 0 1430 682 70 6 0 24
+ 3 0 4 127104 21540 168896 0 0 1836 40 1817 980 57 5 5 33
+ 0 1 4 120000 22796 171588 0 0 372 2072 1444 3179 41 26 0 34
+ 2 0 4 102784 23380 187736 0 0 228 536 1344 9847 53 16 0 31
+ 0 3 4 99712 23404 190536 0 0 16 15324 1564 1814 14 4 0 82
+ 1 1 4 93184 23552 196916 0 0 68 6424 1544 3357 45 8 0 48
+ 1 1 4 86080 24144 203292 0 0 300 2428 1382 3688 32 8 0 60
+ 0 1 4 82568 24500 206232 0 0 200 1972 1464 1845 25 3 0 72
+ 0 1 4 75336 24812 212808 0 0 108 6408 1422 3691 33 10 0 57
+ 1 2 4 71688 24976 215944 0 0 44 13640 1450 1574 22 6 0 72
+ 1 2 4 69000 25068 218380 0 0 20 4924 1458 1371 25 6 0 69
+ 0 2 4 56780 26056 229028 0 0 292 1964 1408 5567 34 17 0 49
+ 1 0 4 45772 27212 237860 0 0 468 4024 1444 5251 36 14 0 50
+ 0 1 4 34828 27748 247256 0 0 128 8096 1438 4275 32 14 0 54
+ 0 5 4 25996 28248 254684 0 0 64 9448 1494 3693 23 11 0 66
+ 1 4 4 18380 28556 261736 0 0 16 8584 1396 4367 40 9 0 51
+ 0 3 4 3728 27348 276632 0 0 16 4540 1420 8880 49 17 0 34
+ 2 1 4 2896 24308 281360 0 0 24 4504 1393 6606 35 16 0 50
+ 0 3 4 3472 21444 284112 0 0 96 20712 1514 6398 59 15 0 26
+ 1 3 4 3256 20228 284704 0 0 1100 7900 1426 531 16 7 0 77
+ 1 4 4 3704 20228 284888 0 0 20 20388 1493 331 30 3 0 67
+ 3 2 4 3304 20264 280256 0 0 264 1008 1454 492 24 6 0 70
+ 1 0 4 3496 19924 279556 0 0 16 7760 1388 478 70 7 0 23
+ 1 0 4 3368 19924 279668 0 0 0 0 1280 422 98 2 0 0
+ 1 0 4 3176 19752 280260 0 4 4 4 2713 2008 56 8 34 2
+ 0 2 4 3304 19716 278492 0 0 72 5620 3211 3174 30 13 28 30
+ 0 2 8 2984 20016 278348 0 0 32 4732 1448 1868 22 11 1 66
+ 2 1 12 3368 19520 278460 0 0 28 6544 1485 4491 40 12 2 47
+ 0 1 12 4712 19880 278224 0 0 20 5008 1525 2229 31 13 4 52
+ 3 0 12 8232 20112 275672 0 0 28 7352 1478 1167 56 13 4 27
+ 0 1 12 3816 20332 278472 0 0 140 1432 1477 1725 70 12 3 15
+ 2 0 12 3600 19772 278304 0 0 36 36 1288 2158 72 28 0 0
+ 0 0 12 7856 19432 276028 0 0 0 0 1281 740 35 12 53 0
+ 4 0 12 7152 19448 276180 0 0 0 0 1281 791 54 20 26 0
+ 2 0 12 5744 19456 276312 0 0 0 0 1282 1052 72 28 0 0
+ 2 0 12 7344 19484 276484 0 0 0 3488 1341 966 74 26 0 0
+ 1 0 12 6632 19496 276596 0 0 0 0 1280 1286 64 36 0 0
+ 3 0 12 6056 19504 276736 0 0 0 80 1292 2281 56 44 0 0
+ 3 0 12 6376 19508 276884 0 0 24 0 1284 1151 69 29 0 2
+ 2 0 12 7076 19496 275152 0 0 0 0 1280 1254 63 37 0 0
+ 2 0 12 7012 19520 275192 0 0 0 1028 1307 965 70 30 0 0
+ 2 0 12 5220 19532 275316 0 0 0 0 1286 968 70 30 0 0
+ 1 0 12 5220 19540 275420 0 0 0 884 1409 1011 72 28 0 0
+ 4 0 12 4364 19548 275600 0 0 4 0 1282 1172 68 32 0 0
+ 2 0 12 7820 19556 275008 0 0 0 0 1284 1170 77 23 0 0
+ 3 0 12 8268 19580 274336 0 0 0 1104 1309 988 83 17 0 0
+ 0 0 12 7468 19580 274444 0 0 0 0 1281 460 22 3 75 0
+ 0 0 12 7340 19588 274560 0 0 0 36 1284 353 21 1 78 0
+ 1 0 12 7404 19588 274676 0 0 0 0 1280 347 20 2 78 0
+ 0 0 12 7468 19588 274776 0 0 0 0 1295 382 19 0 81 0
+ 0 0 12 7532 19600 274896 0 0 0 704 1525 759 22 2 75 1
+ 0 0 12 7548 19600 275008 0 0 0 0 1291 369 21 0 79 0
+ 2 2 12 7748 19784 275656 0 0 580 40 1361 2863 58 24 4 14
+ 4 1 12 4996 19912 275980 0 0 280 0 1330 3384 81 19 0 0
+ 6 0 12 5620 20024 275852 0 0 820 0 1359 5881 80 19 0 1
+ 2 0 12 5428 20052 276076 0 0 44 972 1357 2402 87 11 0 2
+ 2 0 12 93892 20100 192068 0 0 188 0 1317 1254 57 39 0 4
+ 0 1 12 145712 20244 133700 0 0 520 8128 1494 1163 41 30 0 30
+ 2 1 12 139376 20260 138180 0 0 4000 0 1824 1167 71 8 8 13
+ 3 0 12 150232 20348 140712 0 0 528 0 1335 1850 65 13 0 22
+ 2 0 12 146008 20412 143052 0 0 380 0 1322 2426 61 23 0 16
+ 1 0 12 138264 20984 149404 0 0 44 44 1292 6301 58 40 0 2
+ 0 1 12 133720 21160 153512 0 0 40 15164 1655 2682 13 7 0 80
+ 3 0 12 102936 21928 183288 0 0 32 5548 2107 16555 63 20 0 18
+ 2 0 12 86296 22736 197652 0 0 120 14568 1502 6568 47 22 0 32
+ 1 0 12 73368 23632 208544 0 0 132 8300 1446 5889 40 15 0 44
+ 0 3 12 64112 24016 216776 0 0 40 22088 1499 4189 23 14 0 63
+ 0 2 12 60528 24188 219448 0 0 28 6252 1520 866 33 7 0 60
+ 0 2 12 59312 24248 220416 0 0 16 2576 1400 525 21 2 0 77
+ 1 3 12 54960 24472 224160 0 0 28 4104 1532 2038 27 6 0 67
+ 2 2 12 31808 25424 245660 0 0 8 7912 1538 12819 59 23 0 18
+ 0 2 12 28672 25516 248620 0 0 20 4224 1491 1654 32 6 0 62
+ 2 3 12 18624 25628 259404 0 0 0 13460 1441 5851 19 11 0 70
+ 0 4 12 5368 25720 271964 0 0 4 12504 1466 6669 69 22 0 9
+ 1 1 12 5240 25720 272084 0 0 0 3844 1443 372 19 3 0 78
+ 1 2 12 5944 25772 272196 0 0 0 21484 1515 331 21 4 0 75
+ 2 1 12 4832 25828 272300 0 0 0 8684 1595 412 67 5 0 28
+ 1 1 12 4656 25828 272408 0 0 0 1452 1478 451 95 5 0 0
+ 1 1 12 2948 25852 274116 0 0 0 3700 3492 2596 63 10 0 27
+ 0 1 12 4080 24948 273164 0 0 0 3252 2717 1879 24 8 4 64
+10 0 12 2992 25236 273736 0 0 8 2860 1495 1425 28 9 2 61
+ 4 1 12 2864 25464 275560 0 0 16 4060 1455 1926 36 11 2 51
+ 1 0 12 3760 25556 276812 0 0 12 7476 1464 4622 41 13 1 46
+ 2 0 12 4144 25800 278212 0 0 4 5812 1571 2777 36 15 6 43
+ 0 0 12 7496 24640 276700 0 8 12 6368 1423 1309 72 9 2 16
+ 2 0 12 3772 24812 279432 0 0 16 1436 1450 1801 76 15 2 7
+ 0 0 12 8420 24076 276000 0 0 0 8 1281 2362 64 35 1 0
+ 3 0 12 8104 24076 276124 0 0 0 0 1297 378 22 2 76 0
+ 1 0 12 7208 24092 276260 0 0 0 0 1280 1061 68 32 0 0
+ 4 0 12 7776 24100 276372 0 0 0 0 1281 1060 72 28 0 0
+ 5 0 12 7460 24140 276488 0 0 0 3456 1373 904 67 22 0 11
+ 5 0 12 7196 24156 276612 0 0 0 4 1280 1591 59 41 0 0
+ 1 0 12 6380 24160 276724 0 0 0 0 1280 2050 62 38 0 0
+ 5 0 12 5932 24164 277032 0 0 0 0 1282 1149 67 33 0 0
+ 4 2 12 4108 24296 276624 0 0 456 112 1352 1384 64 36 0 0
+ 1 1 12 5600 23860 269048 0 0 1224 956 1389 869 78 22 0 0
+ 1 0 12 13004 23908 268680 0 0 284 84 1300 955 72 28 0 0
+ 2 0 12 12748 23908 268800 0 0 0 0 1281 996 71 29 0 0
+ 3 0 12 14092 23912 268960 0 0 16 0 1284 1087 67 33 0 0
+ 1 0 12 10764 23924 269228 0 0 44 0 1288 1197 72 28 0 0
+ 5 0 12 15056 23964 269564 0 0 0 1288 1325 559 89 11 0 0
+ 0 0 12 13176 23972 269708 0 0 40 44 1290 886 32 13 52 3
+ 0 0 12 13112 23972 269812 0 0 0 0 1280 345 21 0 79 0
+ 1 0 12 13112 23972 269912 0 0 0 0 1281 337 21 1 78 0
+ 0 0 12 13176 23972 270016 0 0 0 0 1280 329 20 2 78 0
+ 0 0 12 13304 23984 270124 0 0 0 856 1308 343 23 0 76 1
+ 0 0 12 13320 23992 270228 0 0 0 116 1300 337 21 1 78 0
+ 4 0 12 13072 24060 270424 0 0 44 0 1289 2348 58 18 23 2
+ 2 0 12 13912 24092 270716 0 0 104 0 1297 2277 79 20 0 1
+ 0 1 12 14520 24128 271308 0 0 64 0 1306 3394 72 23 0 5
+ 2 0 12 88140 24440 199424 0 0 292 2164 1416 983 28 29 0 42
+ 1 0 12 158080 24672 134528 0 0 248 7164 1461 967 39 37 0 24
+ 2 0 12 141824 24908 148240 0 0 80 24 1293 9468 60 37 0 3
+ 2 0 12 110656 25432 177596 0 0 12 8236 1365 15277 75 25 0 0
+ 2 2 12 80048 26304 204972 0 0 0 8628 1496 11372 64 36 0 0
+ 0 5 12 59056 26936 223840 0 0 4 14588 1498 7855 35 22 0 44
+ 2 3 12 31796 27440 249680 0 0 0 14904 1466 12575 69 22 0 9
+ 1 5 12 15220 27524 264320 0 0 60 9868 1483 7660 33 18 0 49
+ 0 5 12 11852 27532 264336 0 0 0 5936 1489 241 2 5 0 93
+ 0 4 12 8524 27536 264336 0 0 0 7852 1457 279 1 1 0 98
+ 1 4 12 7500 27540 264740 0 0 0 12580 1437 293 82 5 0 13
+ 1 1 12 7372 27540 264956 0 0 0 6772 1456 391 36 3 0 61
+ 0 2 12 8780 27680 265064 0 0 0 23196 1504 391 16 5 0 79
+ 0 2 12 8524 27680 265240 0 0 0 19688 1504 318 23 2 0 75
+ 1 2 12 8780 27756 265360 0 0 20 8516 1508 1326 40 5 0 55
+ 1 0 12 5260 27768 267688 0 0 16 8 3950 3563 56 10 21 12
+ 3 1 12 3048 26216 269172 0 0 0 7240 2419 3176 31 19 10 40
+ 0 1 12 2920 25484 270176 0 0 12 7276 1457 3819 30 10 1 59
+ 1 0 12 5320 25836 267344 0 0 36 2896 1438 1072 43 10 3 43
+ 1 1 12 7164 25996 268080 0 0 1532 6380 1619 935 40 12 1 48
+ 1 0 12 6652 26004 268200 0 0 8 36 1297 460 92 4 0 4
+ 0 0 12 5948 26012 268384 0 0 12 40 1360 438 94 1 5 0
+ 2 0 12 4244 26040 268152 0 0 12 3040 4144 3896 42 16 25 17
+ 0 2 12 3668 26176 268748 0 0 0 4848 1480 1213 7 7 0 86
+ 2 1 12 2992 26488 268968 0 0 24 6324 2357 4602 36 10 1 53
+ 1 1 12 4468 26956 268372 0 0 12 5796 1525 2035 33 15 5 48
+ 0 3 12 4468 26984 268396 0 0 0 4516 1618 1483 25 4 0 71
+ 2 0 12 5944 27080 268808 0 0 48 2648 4006 1078 33 3 0 64
+ 1 1 12 7728 27120 266420 0 0 72 4 1293 1953 63 32 0 5
+ 0 0 12 7792 27120 266560 0 0 20 84 1300 497 27 5 68 0
+ 1 0 12 4144 27120 269012 0 0 2316 0 1689 639 28 7 10 55
+ 1 0 12 3632 27140 269240 0 0 116 48 1307 987 65 27 0 8
+ 2 0 12 2864 27160 269388 0 0 20 916 1305 1010 69 26 0 5
+ 0 1 12 4656 27176 268984 0 0 376 0 1333 929 67 23 0 10
+ 4 1 12 4336 27192 269276 0 0 176 1432 1461 1469 60 35 0 5
+ 5 1 12 3248 27192 269392 0 0 0 2240 1534 2181 56 44 0 0
+ 1 0 12 4976 27208 268620 0 0 8 12 1396 1177 66 31 0 3
+ 3 0 12 7088 27188 266192 0 0 0 976 1311 1202 68 32 0 0
+ 1 0 12 6448 27192 266376 0 0 16 0 1296 1732 78 19 0 3
+ 2 0 12 6256 27212 266604 0 0 168 4 1308 1042 70 28 0 2
+ 2 0 12 6576 27212 266716 0 0 0 0 1299 1047 70 30 0 0
+ 2 0 12 6432 27216 266880 0 0 0 0 1297 1124 71 29 0 0
+ 2 0 12 3296 27248 267116 0 0 8 1172 1329 1579 67 31 0 2
+ 1 1 12 6752 27240 264776 0 0 64 0 1312 686 91 9 0 0
+ 0 0 12 7552 27288 265264 0 0 312 0 1347 1301 38 15 44 3
+ 0 0 12 7232 27496 265420 0 0 244 0 1351 545 23 1 43 32
+ 0 0 12 7168 27508 265544 0 0 8 0 1307 511 23 2 75 0
+ 0 0 12 7168 27528 265656 0 0 0 1052 1356 605 20 1 78 1
+ 1 1 12 6592 27672 266068 0 0 448 0 1339 688 66 3 15 16
+ 4 1 12 5904 27928 266276 0 0 380 0 1379 592 61 3 0 36
+ 5 0 12 5520 27952 266588 0 0 328 0 1296 388 98 2 0 0
+ 3 0 12 5200 27952 266624 0 0 16 0 1281 182 100 0 0 0
+ 4 0 12 4624 27968 266704 0 0 0 396 1281 279 97 3 0 0
+ 2 0 12 4312 27972 266876 0 0 64 0 1283 467 95 5 0 0
+ 2 0 12 3628 27996 266252 0 0 0 0 1282 499 92 8 0 0
+ 2 0 12 5108 28024 266432 0 0 4 0 1281 543 89 11 0 0
+ 2 0 12 5236 28032 266652 0 0 48 0 1306 523 82 14 0 4
+ 6 0 12 5176 28036 265088 0 0 72 1044 1336 797 78 18 0 4
+ 0 1 12 124780 28204 150076 0 0 80 6868 1352 1409 36 51 0 13
+ 2 0 12 135260 28924 141952 0 0 300 84 1555 3285 43 31 0 26
+ 2 0 12 104156 29932 170824 0 0 92 0 1326 17173 70 27 0 3
+ 1 1 12 81284 30520 191832 0 0 4 10424 1368 10840 73 27 0 0
+ 2 0 12 57988 31716 212684 0 0 28 16556 1518 11088 67 28 0 5
+ 4 1 12 23620 33136 243876 0 0 200 31704 1638 15949 63 37 0 0
+ 4 3 12 3648 29992 266796 0 0 20 26436 1589 13245 69 24 0 7
+ 1 3 12 81424 30004 148964 0 0 72 23964 1613 1113 17 47 0 37
+ 0 1 12 136116 30204 91796 0 0 148 8228 1497 745 18 16 0 66
+ 1 0 12 132852 30240 94768 0 0 364 0 4285 38648 33 19 38 10
+ 1 0 12 124084 30272 103668 0 0 32 656 1785 1329 72 21 6 1
+ 1 0 12 123956 30272 103780 0 0 0 0 1286 659 85 15 0 0
+ 1 0 12 123892 30272 103888 0 0 0 28 1296 591 85 15 0 0
+ 1 1 12 123636 30272 104008 0 0 0 11296 1340 456 87 13 0 0
+ 2 0 12 123636 30284 104112 0 0 0 100 1316 408 87 13 0 0
+ 1 0 12 123516 30292 104228 0 0 0 604 1291 469 86 14 0 0
+ 0 0 12 123324 30304 104368 0 0 0 0 1347 519 84 13 3 0
+ 1 1 12 121020 30316 106612 0 0 0 3112 4048 3222 33 18 36 13
+ 0 3 12 118268 30324 109304 0 0 0 5860 4551 4146 32 16 0 52
+ 0 3 12 118140 30324 109416 0 0 0 2152 1521 416 19 2 0 79
+ 2 0 12 116348 30344 111352 0 0 0 940 3456 3377 33 13 13 41
+ 1 0 12 114556 30352 113148 0 0 0 0 3317 3458 48 21 32 0
+ 1 0 12 112380 30372 115264 0 0 0 0 3694 3364 39 19 43 0
+ 3 1 12 110332 30380 117336 0 0 0 7452 3624 3309 43 18 37 1
+ 2 0 12 108348 30404 119340 0 0 0 104 3597 3084 40 18 40 2
+ 0 0 12 107900 30416 119756 0 0 0 644 1771 1453 60 22 18 0
+ 1 0 12 103420 30428 124168 0 0 64 0 6229 6715 30 19 49 1
+ 1 0 12 100476 30432 127184 0 0 0 0 4667 4817 42 16 43 0
+ 2 1 12 99644 30440 127844 0 0 0 9624 2115 1411 60 19 15 6
+ 1 0 12 99132 30460 128552 0 0 0 92 2096 1566 60 18 21 1
+ 1 0 12 98492 30484 129132 0 0 0 708 1931 1349 64 17 19 0
+ 0 0 12 96956 30492 130616 0 0 0 0 2916 2266 49 16 35 0
+ 2 0 12 95548 30500 132004 0 0 0 0 2896 2894 56 14 30 0
+ 2 1 12 95036 30508 132604 0 0 0 4404 1918 1403 65 17 18 0
+ 1 0 12 94140 30528 133484 0 0 0 108 2218 1400 60 16 24 0
+ 1 0 12 90812 30540 136808 0 0 0 644 5086 5139 39 17 43 1
+ 0 0 12 87932 30548 139576 0 0 0 164 4406 4075 37 14 48 0
+ 1 0 12 87164 30560 140336 0 0 12 0 2272 1620 51 12 34 3
+ 2 1 12 86524 30568 140896 0 0 0 7544 1913 1515 66 16 12 6
+ 2 0 12 85820 30580 141688 0 0 0 88 2146 1396 73 12 9 6
+ 2 0 12 70972 31660 154960 0 0 360 536 1455 9633 56 27 11 6
+ 1 0 12 50556 32308 174212 0 0 8 116 1320 11873 58 39 0 3
+ 2 0 12 38332 32940 184104 0 0 72 11732 1585 8187 52 44 0 4
+ 0 2 12 36708 33136 184204 0 0 28 24336 1542 1224 19 16 0 65
+ 1 1 12 36580 33204 184396 0 0 4 11704 1602 582 36 4 0 60
+ 1 0 12 35036 33672 184804 0 0 0 7068 1536 3756 49 26 3 21
+ 0 2 12 18012 33952 199972 0 0 0 15212 1399 8586 41 41 0 19
+ 2 0 12 34204 34140 185168 0 0 4 5152 1500 2106 41 20 1 39
+ 0 1 12 25372 34584 192392 0 0 4 11200 1476 6795 55 28 3 14
+ 0 1 12 31324 34872 186088 0 0 0 8572 1741 3856 41 18 2 39
+ 2 0 12 31388 34908 186176 0 0 20 2060 1811 818 7 3 0 90
+ 1 0 12 30556 35300 186452 0 0 4 6428 1459 2855 50 16 3 31
+ 1 1 12 20444 35620 196052 0 0 0 5264 1612 7491 42 25 2 31
+ 0 1 12 14044 35648 202076 0 0 0 16052 1637 9438 29 26 0 45
+ 1 0 12 27612 35968 188760 0 0 4 5460 1539 2160 28 16 3 53
+ 0 1 12 24288 36584 191340 0 0 0 13036 1622 6425 41 30 5 24
+ 1 0 12 29024 37032 187932 0 0 60 8840 1551 3475 45 18 4 32
+ 1 0 12 28128 37836 187924 0 0 0 5640 1643 2145 42 17 10 31
+ 0 1 12 27360 38508 187928 0 0 0 4700 1606 2292 52 17 9 22
+ 1 0 12 27104 38728 187856 0 0 0 2140 1461 1345 34 8 48 11
+ 0 0 12 27040 38736 187964 0 0 0 492 1298 412 22 0 78 0
+ 1 0 12 26912 38736 188064 0 0 0 0 1301 708 20 2 78 0
+ 0 1 12 17184 39000 196516 0 0 0 10184 1485 6518 48 18 26 9
+ 6 0 12 9108 39260 203972 0 0 0 6020 1568 6842 51 18 2 28
+ 0 1 12 3528 37776 215732 0 0 32 17740 1546 9366 60 23 1 16
+ 2 1 12 3320 38072 223240 0 0 176 6936 1564 5256 47 19 1 33
+ 2 0 12 3256 38432 234000 0 0 60 9760 1469 7945 65 26 1 8
+ 2 0 12 2872 37448 244812 0 0 0 12196 1473 7182 39 26 0 34
+ 0 1 12 4640 36760 245504 0 0 12 12008 1559 3329 36 15 2 47
+ 1 1 12 4768 37120 245608 0 0 28 5000 1772 1362 41 13 4 42
+ 1 0 12 4704 37160 246452 0 0 48 852 2399 1577 25 12 15 48
+ 1 0 12 4680 36336 247056 0 0 8 0 3963 7915 56 19 24 1
+ 2 0 12 14124 36320 238168 0 0 8 11524 1399 1819 75 9 0 16
+ 1 0 12 7340 36408 244184 0 0 0 14356 1457 743 66 12 0 22
+ 0 1 12 41708 36644 209948 0 0 324 816 1420 1033 67 7 2 24
+ 2 0 12 39612 36732 211852 0 0 664 1432 1402 3354 78 7 0 15
+ 2 0 12 37308 36752 214164 0 0 540 0 1363 2715 91 4 0 5
+ 2 0 12 35132 36792 216316 0 0 476 0 1355 2586 85 6 0 9
+ 2 0 12 32828 36792 218668 0 0 548 0 1341 2611 94 4 0 2
+ 1 0 12 30868 36804 220648 0 0 0 224 1317 2753 95 5 0 0
+ 1 0 12 29012 36816 222492 0 0 0 8908 1391 3371 93 7 0 0
+ 2 0 12 27220 36816 224300 0 0 32 0 1302 2864 96 4 0 0
+ 1 0 12 25428 36832 226040 0 0 8 0 1297 2738 94 6 0 0
+ 0 1 12 23208 36856 228292 0 0 440 0 1343 3082 88 3 0 9
+ 1 0 12 20648 36888 230856 0 0 648 36 1356 3522 84 6 0 10
+ 1 0 12 19048 36908 232428 0 0 88 9112 1392 3945 84 9 0 7
+ 1 0 12 15080 36916 236324 0 0 1384 0 1575 2261 57 5 0 38
+ 1 0 12 9960 36952 241448 0 0 1580 0 1456 3117 83 8 0 9
+ 1 0 12 8168 36956 243248 0 0 0 0 1304 3958 94 6 0 0
+ 1 2 12 3880 36960 247516 0 0 3660 16 2217 4486 44 7 0 49
+ 1 1 12 4032 35648 248656 0 0 1844 9336 1783 2764 37 6 0 57
+ 1 1 12 2880 34800 250828 0 0 768 0 1345 3387 91 6 0 3
+ 4 0 12 4032 34172 250348 0 0 1236 8 1532 2949 95 5 0 0
+ 1 1 12 3128 33616 251888 0 0 804 0 1472 3167 95 5 0 0
+ 3 0 12 3712 32444 252520 0 0 1500 36 1490 2479 79 5 0 16
+ 3 1 12 3008 31716 253908 0 0 508 7248 1462 1954 74 5 0 21
+ 4 0 12 2880 29960 255876 0 0 952 0 1509 2735 93 6 0 1
+ 3 0 12 3956 29236 256556 0 0 780 0 1505 3092 73 5 0 22
+ 4 0 12 3392 28868 258412 0 0 0 276 1268 4738 93 7 0 0
+ 2 0 12 3200 28808 258688 0 0 12 44 1295 2977 94 6 0 0
+ 2 0 12 3328 27664 259752 0 0 0 8068 1392 2562 95 5 0 0
+ 0 1 12 51888 28196 213264 0 0 744 0 1470 1461 57 20 0 23
+ 1 1 12 127076 28692 139572 0 0 496 88 1429 857 25 26 0 48
+ 0 3 12 121456 28928 135656 0 0 2012 2056 1444 733 27 10 0 63
+ 3 1 12 114672 29104 140736 0 0 5148 4 1496 1109 64 5 0 31
+ 0 2 12 124312 29280 143632 0 0 700 2408 1913 2314 43 11 0 47
+ 0 2 12 121048 30092 144284 0 0 396 0 1397 2511 29 27 0 45
+ 0 2 12 110744 30636 153652 0 0 336 400 1426 6327 39 14 0 46
+ 1 2 12 95512 30828 168240 0 0 116 13472 1606 8303 47 18 0 36
+ 1 2 12 91160 31212 171972 0 0 232 0 1426 2310 28 6 0 66
+ 0 4 12 86296 31404 176620 0 0 156 17176 1521 3141 20 10 0 70
+ 3 4 12 80408 31912 181536 0 0 364 1448 1474 3327 37 12 0 51
+ 0 3 12 72344 32136 189052 0 0 112 196 1449 4249 33 14 0 53
+ 0 2 12 64344 32356 196536 0 0 76 10952 1541 4361 31 15 0 54
+ 1 2 12 61016 32676 199272 0 0 236 2172 1424 2283 25 10 0 65
+ 0 5 12 56152 33104 203320 0 0 340 9080 1449 2717 20 10 0 70
+ 0 6 12 48024 33644 210320 0 0 276 3708 1455 4479 14 11 0 75
+ 1 5 12 34264 34180 222316 0 0 260 1704 1444 5470 31 19 0 50
+ 3 4 12 12652 34648 242384 0 0 36 4496 1566 12230 44 23 0 33
+ 1 5 12 5972 34800 248536 0 0 16 7532 1505 4405 90 10 0 0
+ 5 6 12 3344 29856 256444 0 0 16 11272 1495 11999 53 22 0 25
+ 0 6 12 3088 29420 256900 0 0 64 8540 1499 1163 5 8 0 87
+ 0 9 12 2868 28932 257100 0 0 1412 5672 1456 918 8 8 0 84
+ 2 6 12 3508 28748 256632 0 0 24 7800 1482 560 41 5 0 54
+ 1 2 12 3380 28752 256768 0 0 36 14984 1495 654 19 6 0 75
+ 0 2 12 4380 28844 256908 0 0 40 14256 1510 634 21 6 0 73
+ 1 1 12 3812 28892 257044 0 0 100 5936 1498 864 46 7 0 47
+ 1 1 12 2812 28900 257464 0 0 304 0 1390 1233 90 10 0 0
+ 0 1 12 3096 28856 257356 0 0 344 0 1776 1332 84 11 0 5
+ 3 0 12 3428 25200 258928 0 0 220 3776 4180 3965 33 22 0 46
+ 0 2 12 3620 24924 258624 0 0 184 2376 1498 1475 28 12 0 60
+ 0 2 12 3620 24320 259352 0 0 104 2908 1493 1877 24 9 0 67
+ 0 2 12 3044 24456 259640 0 0 124 3056 1474 1469 26 9 0 65
+ 0 2 12 3496 24572 258876 0 0 116 4564 1444 3429 29 15 0 56
+ 1 1 12 2984 24820 258732 0 0 180 3676 1429 1457 26 12 0 62
+ 0 2 12 5392 25012 257948 0 0 148 3760 1513 943 25 7 0 68
+ 1 1 12 3744 25180 258108 0 0 920 1300 1577 1203 27 8 0 65
+ 3 1 12 8164 25452 255996 0 0 280 2040 1506 1373 45 10 0 45
+ 1 1 12 5668 25492 256328 0 0 140 4932 1512 843 58 10 0 32
+ 6 2 12 4708 25612 257448 0 0 416 1480 1467 1362 53 13 0 34
+ 4 1 12 3508 25668 258144 0 0 396 64 1448 2365 66 19 0 15
+ 1 0 12 8548 25716 253944 0 0 268 204 1382 2432 51 35 0 14
+ 2 0 12 8356 25728 254568 0 0 500 68 1422 1036 26 8 9 57
+ 2 1 12 5668 25732 257256 0 0 2568 0 1565 913 41 14 0 46
+ 0 2 12 5540 25756 257396 0 0 76 4916 1475 583 26 8 0 66
+ 4 0 12 5156 25764 257584 0 0 20 832 1482 1251 72 24 0 5
+ 2 0 12 4836 25776 256868 0 0 4 0 1332 1647 74 26 0 0
+ 0 2 12 3608 25788 258308 0 0 2212 16 1701 1553 52 14 0 34
+ 3 0 12 4608 25808 257544 0 0 16 24 1327 1774 62 37 0 1
+ 1 0 12 3840 25820 257660 0 0 0 808 1367 2369 57 43 0 0
+ 4 0 12 5184 25824 256936 0 0 8 0 1338 1426 68 31 0 1
+ 3 0 12 6528 25828 254672 0 0 0 0 1321 1354 68 32 0 0
+ 1 0 12 3648 25848 254820 0 0 4 40 1311 1030 74 26 0 0
+ 3 0 12 4672 25860 254924 0 0 0 0 1292 1048 68 32 0 0
+ 2 0 12 4480 25872 255048 0 0 0 916 1303 1000 71 29 0 0
+ 4 0 12 5696 25876 255292 0 0 0 0 1280 1246 67 33 0 0
+ 1 0 12 4864 25884 253752 0 0 4 4 1282 832 82 18 0 0
+ 0 0 12 7712 25900 253220 0 0 32 40 1289 1124 69 23 5 3
+ 0 0 12 7584 25900 253340 0 0 0 0 1280 343 22 0 78 0
+ 1 0 12 7456 25912 253460 0 0 0 1164 1318 355 21 1 76 2
+ 1 0 12 7584 25912 253568 0 0 0 8 1281 349 19 0 81 0
+ 0 0 12 7648 25912 253692 0 0 0 0 1282 350 23 2 75 0
+ 0 0 12 7648 25920 253808 0 0 0 32 1289 487 21 0 79 0
+ 3 0 12 9080 25920 253932 0 0 0 0 1315 825 26 5 69 0
+ 1 0 12 8056 26012 254152 0 0 20 748 1352 3054 73 23 0 4
+ 4 0 12 7224 26020 254440 0 0 176 8 1348 3453 75 19 0 7
+ 2 0 12 35060 26044 229440 0 0 76 0 1336 2260 68 26 0 6
+ 2 0 12 138416 26176 128792 0 0 8 8548 1534 1329 30 46 0 23
+ 2 0 12 121188 26196 135260 0 0 6372 0 1441 937 47 10 0 43
+ 2 1 12 115236 26232 140300 0 0 4560 0 1845 1125 49 6 20 25
+ 3 0 12 125348 26340 142932 0 0 648 664 1460 1896 56 11 0 33
+ 2 0 12 121520 26420 145256 0 0 396 0 1380 2315 58 14 0 28
+ 0 1 12 124980 26456 143488 0 0 24 4404 1484 626 35 16 0 50
+ 1 0 12 109752 26752 157056 0 0 0 8 1333 8075 62 36 0 2
+ 1 0 12 82104 27260 183340 0 0 12 15636 1477 12815 69 27 0 4
+ 0 2 12 65552 27424 198660 0 0 0 10396 1581 6841 44 21 0 36
+ 2 0 12 57168 27664 206108 0 0 8 804 1504 3357 29 11 0 60
+ 0 6 12 40080 28248 221524 0 0 0 11676 1377 6007 31 19 0 50
+ 0 6 12 40016 28248 221524 0 0 0 9544 1489 245 1 2 0 97
+ 0 5 12 39784 28256 221840 0 0 0 11036 1505 301 58 3 0 39
+ 4 3 12 36840 28292 224380 0 0 16 6160 1497 1133 21 5 0 74
+ 1 3 12 7988 29104 251516 0 0 0 7640 1464 13246 72 28 0 0
+ 0 2 12 3528 24812 263108 0 0 52 7512 1459 10520 59 22 0 19
+ 0 2 12 5140 24900 263332 0 0 44 15760 1451 639 22 9 0 69
+ 0 3 12 5140 24900 263340 0 0 0 18304 1512 274 3 2 0 95
+ 1 2 12 5012 24904 263352 0 0 0 18760 1497 372 3 4 0 93
+ 1 0 12 4920 24976 263612 0 0 4 7724 1522 398 71 8 1 21
+ 2 0 12 4552 24976 263728 0 0 0 0 1337 691 96 4 0 0
+ 1 0 12 3656 24988 264264 0 0 0 0 1819 999 83 5 12 0
+ 0 1 12 3144 24924 266056 0 0 0 3992 3991 3771 30 16 36 17
+ 1 1 12 3016 25180 268316 0 0 0 4628 1568 2106 29 13 1 57
+ 0 2 12 3720 25192 271244 0 0 12 7472 1538 4275 30 20 2 48
+ 1 0 12 4832 25844 271008 0 0 0 6892 2137 3457 37 14 4 45
+ 1 1 12 7936 26048 268264 0 0 16 6036 1413 749 69 9 2 19
+ 1 0 12 4784 26216 270988 0 0 12 1424 1483 2199 70 20 4 6
+ 1 0 12 8536 26256 267132 0 0 4 0 1298 2577 66 33 0 1
+ 0 0 12 8472 26256 267252 0 0 0 0 1280 368 23 2 75 0
+ 1 0 12 8216 26264 267508 0 0 116 12 1306 1065 69 27 4 0
+ 1 0 12 7568 26264 267684 0 0 0 0 1288 1105 72 28 0 0
+ 2 0 12 7888 26304 267752 0 0 0 3412 1351 1089 73 27 0 0
+ 3 0 12 7240 26316 267864 0 0 0 0 1279 1605 61 39 0 0
+ 1 0 12 6920 26316 267972 0 0 0 0 1321 2312 55 45 0 0
+ 4 0 12 6920 26328 268100 0 0 0 40 1310 1362 68 32 0 0
+ 1 0 12 7176 26196 266944 0 0 8 0 1321 1372 69 31 0 0
+ 3 0 12 6152 26224 267072 0 0 4 964 1343 1127 67 30 0 3
+ 2 0 12 6984 26236 267196 0 0 0 0 1328 1227 72 28 0 0
+ 2 0 12 5192 26236 267304 0 0 0 0 1312 1227 69 31 0 0
+ 3 0 12 6384 26244 267512 0 0 4 744 1435 1476 66 34 0 0
+ 1 0 12 6452 26252 266868 0 0 8 0 1290 1038 78 22 0 0
+ 6 0 12 8328 26256 266036 0 0 48 1008 1324 773 82 18 0 0
+ 0 0 12 7624 26260 266200 0 0 64 0 1290 723 24 6 68 2
+ 0 0 12 7496 26260 266316 0 0 0 0 1298 603 21 2 77 0
+ 2 0 12 7496 26260 266432 0 0 0 12 1348 626 25 2 73 0
+ 1 0 12 7624 26260 266552 0 0 0 0 1313 499 23 2 75 0
+ 2 0 12 7704 26284 266652 0 0 0 928 1342 556 20 1 78 1
+ 0 0 12 7640 26284 266768 0 0 0 0 1328 585 23 1 76 0
+ 1 0 12 8112 26340 267020 0 0 64 0 1331 2827 67 22 10 1
+ 1 0 12 7792 26348 267232 0 0 8 0 1315 2624 83 17 0 0
+ 2 0 12 34880 26368 241824 0 0 60 0 1311 3038 66 28 0 6
+ 0 1 12 104108 26488 173684 0 0 16 8392 1493 970 16 29 0 55
+ 3 0 12 151600 26556 129800 0 0 256 48 1887 1293 43 21 0 35
+ 2 0 12 134704 27236 144264 0 0 244 24 1317 9923 54 38 0 8
+ 3 1 12 103104 28108 174160 0 0 84 11332 1489 15488 66 34 0 0
+ 3 1 12 84608 29020 189440 0 0 188 14644 1508 6620 59 26 0 15
+ 0 2 12 80960 29084 190472 0 0 476 26372 1565 812 13 3 0 84
+ 3 0 12 43080 30704 221576 0 0 756 14216 4529 13999 27 14 0 58
+ 1 3 12 27848 31376 244492 0 0 64 22100 1661 11190 72 28 0 0
+ 2 3 12 11412 31504 258628 0 0 28 18716 1556 7640 38 21 0 41
+ 2 1 12 11024 31524 259184 0 0 16 10480 1537 796 93 7 0 0
+ 1 0 12 10684 31616 259276 0 0 0 20360 1533 511 39 7 0 54
+ 0 1 12 7160 31632 262144 0 0 0 112 4554 4171 52 14 29 5
+ 1 1 12 3524 27996 267576 0 0 32 11640 1735 5207 38 21 2 39
+ 0 1 12 3232 28188 267484 0 0 20 3312 1513 1821 27 7 1 65
+ 2 0 12 10224 27920 263188 0 0 0 3448 1498 1248 58 17 4 21
+ 1 0 12 7416 27948 265660 0 0 0 4956 1381 743 84 6 0 10
+ 1 1 12 7288 27948 265784 0 0 0 4104 1506 579 77 3 0 20
+ 2 2 12 2984 27544 267888 0 0 4 1744 4441 3677 55 15 0 30
+ 0 3 12 5160 26404 267380 0 0 0 4424 1597 481 28 5 0 67
+ 0 2 12 5104 26416 267500 0 0 0 2972 1655 563 22 2 0 76
+ 1 1 12 4012 26436 268844 0 0 0 1548 1414 1067 21 5 0 74
+ 0 1 12 3276 26584 269504 0 0 20 2380 1393 1085 22 3 1 74
+ 2 1 12 3816 23748 271656 0 0 20 5780 1444 3504 30 12 1 57
+ 2 0 12 5072 24004 271516 0 0 20 5224 1493 1796 27 12 3 58
+ 3 0 12 3856 24216 271616 0 0 8 1556 1389 1197 67 13 3 17
+ 1 0 12 7760 24152 269956 0 0 88 0 1294 1843 49 30 17 4
+ 6 0 12 7312 24168 270212 0 0 144 0 1306 544 28 10 60 2
+ 1 0 12 6116 24188 270380 0 0 48 36 1294 1045 65 32 0 3
+ 2 0 12 7140 24192 270512 0 0 8 0 1281 1047 73 26 0 1
+ 2 0 12 6628 24232 270688 0 0 0 968 1323 1172 72 28 0 0
+ 2 0 12 6244 24240 270760 0 0 0 0 1319 2075 57 43 0 0
+ 3 0 12 6268 24244 270872 0 0 0 0 1332 1902 63 37 0 0
+ 1 0 12 3368 24200 270352 0 0 0 40 1317 1275 69 31 0 0
+ 1 0 12 5244 24176 269668 0 0 60 0 1311 1264 64 34 0 2
+ 2 0 12 6204 24204 269788 0 0 0 956 1490 1012 74 26 0 0
+ 3 0 12 6156 24208 269856 0 0 0 0 1310 1210 69 31 0 0
+ 3 0 12 6028 24212 269992 0 0 0 0 1311 1205 70 30 0 0
+ 3 0 12 4540 24224 270144 0 0 0 40 1305 1236 75 25 0 0
+ 1 0 12 6204 24192 268484 0 0 0 0 1303 1188 77 23 0 0
+ 3 0 12 8968 24232 267568 0 0 88 912 1383 898 85 13 0 2
+ 1 0 12 7984 24232 267716 0 0 32 0 1349 1241 31 12 55 2
+ 1 0 12 7856 24232 267824 0 0 0 12 1324 546 23 3 74 0
+ 0 0 12 7728 24240 268040 0 0 104 36 1347 624 24 2 73 1
+ 1 0 12 7860 24240 268148 0 0 0 0 1297 413 25 2 74 0
+ 0 0 12 7924 24252 268260 0 0 0 884 1346 569 23 1 74 1
+ 1 0 12 7940 24252 268372 0 0 0 0 1289 369 23 0 77 0
+ 3 0 12 8012 24336 268552 0 0 4 4 1311 1059 65 21 14 1
+ 3 0 12 8080 24360 268820 0 0 124 40 1346 794 81 17 0 2
+ 2 0 12 37496 24436 240692 0 0 96 0 1349 1143 66 29 0 5
+ 1 0 12 140792 24708 139104 0 0 228 3080 1398 1009 27 39 0 34
+ 2 0 12 150128 25596 131596 0 0 396 80 1401 2994 43 32 0 24
+ 4 0 12 122224 26416 157848 0 0 112 1272 1435 14865 63 28 0 9
+ 2 0 12 88112 27856 188600 0 0 48 8988 1408 15556 64 36 0 0
+ 2 0 12 64664 29252 209300 0 0 60 20656 1528 9435 61 27 0 12
+ 1 1 12 37336 30328 234796 0 0 100 27336 1620 14286 66 32 0 2
+ 4 3 12 19240 30528 252828 0 0 24 31440 1828 9759 40 17 0 43
+ 3 1 12 107944 30572 154488 0 0 52 20776 1624 3203 48 50 0 2
+ 0 3 12 123768 30684 129748 0 0 16 7924 1604 1021 28 11 0 61
+ 0 2 12 123704 30684 129848 0 0 0 820 1369 594 22 1 0 77
diff --git a/testsuite/run-test.sh b/testsuite/run-test.sh
index 77ae2ec..f6dc09e 100755
--- a/testsuite/run-test.sh
+++ b/testsuite/run-test.sh
@@ -34,7 +34,7 @@ if [ -x "${PBUILDER}" ]; then
cd testbuild
apt-get source -d ${PKG}
)
- sudo ${PBUILDER} build --basetgz $(pwd)/testimage --buildplace $(pwd)/testbuild/ --logfile normal/pbuilder-build-${PKG}-${distribution}.log testbuild/${PKG}*.dsc
+ sudo ${PBUILDER} build --debemail "Junichi Uekawa <dancer@debian.org>" --basetgz $(pwd)/testimage --buildplace $(pwd)/testbuild/ --logfile normal/pbuilder-build-${PKG}-${distribution}.log testbuild/${PKG}*.dsc
log_success build-${distribution}-${PKG}
(