qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

qemu-io: Allow unaligned access by default

There's no reason to require the user to specify a flag just so
they can pass in unaligned numbers. Keep 'read -p' and 'write -p'
as no-ops so that I don't have to hunt down and update all users
of qemu-io, but otherwise make their behavior default as 'read' and
'write'. Also fix 'write -z', 'readv', 'writev', 'writev',
'aio_read', 'aio_write', and 'aio_write -z'. For now, 'read -b',
'write -b', and 'write -c' still require alignment (and 'multiwrite',
but that's slated to die soon).

qemu-iotest 23 is updated to match, as the only test that was
previously explicitly expecting an error on an unaligned request.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-id: 1462677405-4752-5-git-send-email-eblake@redhat.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>

authored by

Eric Blake and committed by
Max Reitz
093ea232 dc38852a

+1457 -776
+17 -56
qemu-io-cmds.c
··· 1 1 /* 2 2 * Command line utility to exercise the QEMU I/O path. 3 3 * 4 - * Copyright (C) 2009 Red Hat, Inc. 4 + * Copyright (C) 2009-2016 Red Hat, Inc. 5 5 * Copyright (c) 2003-2005 Silicon Graphics, Inc. 6 6 * 7 7 * This work is licensed under the terms of the GNU GPL, version 2 or later. ··· 395 395 goto fail; 396 396 } 397 397 398 - if (len & 0x1ff) { 399 - printf("length argument %" PRId64 400 - " is not sector aligned\n", len); 401 - goto fail; 402 - } 403 - 404 398 sizes[i] = len; 405 399 count += len; 406 400 } ··· 634 628 " -b, -- read from the VM state rather than the virtual disk\n" 635 629 " -C, -- report statistics in a machine parsable format\n" 636 630 " -l, -- length for pattern verification (only with -P)\n" 637 - " -p, -- allow unaligned access\n" 631 + " -p, -- ignored for backwards compatibility\n" 638 632 " -P, -- use a pattern to verify read data\n" 639 633 " -q, -- quiet mode, do not show I/O statistics\n" 640 634 " -s, -- start offset for pattern verification (only with -P)\n" ··· 650 644 .cfunc = read_f, 651 645 .argmin = 2, 652 646 .argmax = -1, 653 - .args = "[-abCpqv] [-P pattern [-s off] [-l len]] off len", 647 + .args = "[-abCqv] [-P pattern [-s off] [-l len]] off len", 654 648 .oneline = "reads a number of bytes at a specified offset", 655 649 .help = read_help, 656 650 }; ··· 658 652 static int read_f(BlockBackend *blk, int argc, char **argv) 659 653 { 660 654 struct timeval t1, t2; 661 - bool Cflag = false, pflag = false, qflag = false, vflag = false; 655 + bool Cflag = false, qflag = false, vflag = false; 662 656 bool Pflag = false, sflag = false, lflag = false, bflag = false; 663 657 int c, cnt; 664 658 char *buf; ··· 686 680 } 687 681 break; 688 682 case 'p': 689 - pflag = true; 683 + /* Ignored for backwards compatibility */ 690 684 break; 691 685 case 'P': 692 686 Pflag = true; ··· 718 712 return qemuio_command_usage(&read_cmd); 719 713 } 720 714 721 - if (bflag && pflag) { 722 - printf("-b and -p cannot be specified at the same time\n"); 723 - return 0; 724 - } 725 - 726 715 offset = cvtnum(argv[optind]); 727 716 if (offset < 0) { 728 717 print_cvtnum_err(offset, argv[optind]); ··· 753 742 return 0; 754 743 } 755 744 756 - if (!pflag) { 745 + if (bflag) { 757 746 if (offset & 0x1ff) { 758 747 printf("offset %" PRId64 " is not sector aligned\n", 759 748 offset); ··· 836 825 .cfunc = readv_f, 837 826 .argmin = 2, 838 827 .argmax = -1, 839 - .args = "[-Cqv] [-P pattern ] off len [len..]", 828 + .args = "[-Cqv] [-P pattern] off len [len..]", 840 829 .oneline = "reads a number of bytes at a specified offset", 841 830 .help = readv_help, 842 831 }; ··· 890 879 } 891 880 optind++; 892 881 893 - if (offset & 0x1ff) { 894 - printf("offset %" PRId64 " is not sector aligned\n", 895 - offset); 896 - return 0; 897 - } 898 - 899 882 nr_iov = argc - optind; 900 883 buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, 0xab); 901 884 if (buf == NULL) { ··· 952 935 " filled with a set pattern (0xcdcdcdcd).\n" 953 936 " -b, -- write to the VM state rather than the virtual disk\n" 954 937 " -c, -- write compressed data with blk_write_compressed\n" 955 - " -p, -- allow unaligned access\n" 938 + " -p, -- ignored for backwards compatibility\n" 956 939 " -P, -- use different pattern to fill file\n" 957 940 " -C, -- report statistics in a machine parsable format\n" 958 941 " -q, -- quiet mode, do not show I/O statistics\n" ··· 968 951 .cfunc = write_f, 969 952 .argmin = 2, 970 953 .argmax = -1, 971 - .args = "[-bcCpqz] [-P pattern ] off len", 954 + .args = "[-bcCqz] [-P pattern] off len", 972 955 .oneline = "writes a number of bytes at a specified offset", 973 956 .help = write_help, 974 957 }; ··· 976 959 static int write_f(BlockBackend *blk, int argc, char **argv) 977 960 { 978 961 struct timeval t1, t2; 979 - bool Cflag = false, pflag = false, qflag = false, bflag = false; 962 + bool Cflag = false, qflag = false, bflag = false; 980 963 bool Pflag = false, zflag = false, cflag = false; 981 964 int c, cnt; 982 965 char *buf = NULL; ··· 998 981 Cflag = true; 999 982 break; 1000 983 case 'p': 1001 - pflag = true; 984 + /* Ignored for backwards compatibility */ 1002 985 break; 1003 986 case 'P': 1004 987 Pflag = true; ··· 1022 1005 return qemuio_command_usage(&write_cmd); 1023 1006 } 1024 1007 1025 - if (bflag + pflag + zflag > 1) { 1026 - printf("-b, -p, or -z cannot be specified at the same time\n"); 1008 + if (bflag && zflag) { 1009 + printf("-b and -z cannot be specified at the same time\n"); 1027 1010 return 0; 1028 1011 } 1029 1012 ··· 1049 1032 return 0; 1050 1033 } 1051 1034 1052 - if (!pflag) { 1035 + if (bflag || cflag) { 1053 1036 if (offset & 0x1ff) { 1054 1037 printf("offset %" PRId64 " is not sector aligned\n", 1055 1038 offset); ··· 1125 1108 .cfunc = writev_f, 1126 1109 .argmin = 2, 1127 1110 .argmax = -1, 1128 - .args = "[-Cq] [-P pattern ] off len [len..]", 1111 + .args = "[-Cq] [-P pattern] off len [len..]", 1129 1112 .oneline = "writes a number of bytes at a specified offset", 1130 1113 .help = writev_help, 1131 1114 }; ··· 1172 1155 return 0; 1173 1156 } 1174 1157 optind++; 1175 - 1176 - if (offset & 0x1ff) { 1177 - printf("offset %" PRId64 " is not sector aligned\n", 1178 - offset); 1179 - return 0; 1180 - } 1181 1158 1182 1159 nr_iov = argc - optind; 1183 1160 buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, pattern); ··· 1484 1461 .cfunc = aio_read_f, 1485 1462 .argmin = 2, 1486 1463 .argmax = -1, 1487 - .args = "[-Cqv] [-P pattern ] off len [len..]", 1464 + .args = "[-Cqv] [-P pattern] off len [len..]", 1488 1465 .oneline = "asynchronously reads a number of bytes", 1489 1466 .help = aio_read_help, 1490 1467 }; ··· 1533 1510 } 1534 1511 optind++; 1535 1512 1536 - if (ctx->offset & 0x1ff) { 1537 - printf("offset %" PRId64 " is not sector aligned\n", 1538 - ctx->offset); 1539 - block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_READ); 1540 - g_free(ctx); 1541 - return 0; 1542 - } 1543 - 1544 1513 nr_iov = argc - optind; 1545 1514 ctx->buf = create_iovec(blk, &ctx->qiov, &argv[optind], nr_iov, 0xab); 1546 1515 if (ctx->buf == NULL) { ··· 1584 1553 .cfunc = aio_write_f, 1585 1554 .argmin = 2, 1586 1555 .argmax = -1, 1587 - .args = "[-Cqz] [-P pattern ] off len [len..]", 1556 + .args = "[-Cqz] [-P pattern] off len [len..]", 1588 1557 .oneline = "asynchronously writes a number of bytes", 1589 1558 .help = aio_write_help, 1590 1559 }; ··· 1644 1613 return 0; 1645 1614 } 1646 1615 optind++; 1647 - 1648 - if (ctx->offset & 0x1ff) { 1649 - printf("offset %" PRId64 " is not sector aligned\n", 1650 - ctx->offset); 1651 - block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_WRITE); 1652 - g_free(ctx); 1653 - return 0; 1654 - } 1655 1616 1656 1617 if (ctx->zflag) { 1657 1618 int64_t count = cvtnum(argv[optind]);
+1440 -720
tests/qemu-iotests/023.out
··· 225 225 wrote 512/512 bytes at offset 109568 226 226 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 227 227 === IO: pattern 216 228 - offset 110848 is not sector aligned 229 - offset 111872 is not sector aligned 230 - offset 112896 is not sector aligned 231 - offset 113920 is not sector aligned 232 - offset 114944 is not sector aligned 233 - offset 115968 is not sector aligned 234 - offset 116992 is not sector aligned 235 - offset 118016 is not sector aligned 236 - offset 119040 is not sector aligned 237 - offset 120064 is not sector aligned 238 - offset 121088 is not sector aligned 239 - offset 122112 is not sector aligned 240 - offset 123136 is not sector aligned 241 - offset 124160 is not sector aligned 242 - offset 125184 is not sector aligned 243 - offset 126208 is not sector aligned 244 - offset 127232 is not sector aligned 245 - offset 128256 is not sector aligned 246 - offset 129280 is not sector aligned 247 - offset 130304 is not sector aligned 248 - offset 131328 is not sector aligned 249 - offset 132352 is not sector aligned 250 - offset 133376 is not sector aligned 251 - offset 134400 is not sector aligned 252 - offset 135424 is not sector aligned 253 - offset 136448 is not sector aligned 254 - offset 137472 is not sector aligned 255 - offset 138496 is not sector aligned 256 - offset 139520 is not sector aligned 257 - offset 140544 is not sector aligned 258 - offset 141568 is not sector aligned 259 - offset 142592 is not sector aligned 260 - offset 143616 is not sector aligned 261 - offset 144640 is not sector aligned 262 - offset 145664 is not sector aligned 263 - offset 146688 is not sector aligned 228 + wrote 512/512 bytes at offset 110848 229 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 230 + wrote 512/512 bytes at offset 111872 231 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 232 + wrote 512/512 bytes at offset 112896 233 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 234 + wrote 512/512 bytes at offset 113920 235 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 236 + wrote 512/512 bytes at offset 114944 237 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 238 + wrote 512/512 bytes at offset 115968 239 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 240 + wrote 512/512 bytes at offset 116992 241 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 242 + wrote 512/512 bytes at offset 118016 243 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 244 + wrote 512/512 bytes at offset 119040 245 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 246 + wrote 512/512 bytes at offset 120064 247 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 248 + wrote 512/512 bytes at offset 121088 249 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 250 + wrote 512/512 bytes at offset 122112 251 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 252 + wrote 512/512 bytes at offset 123136 253 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 254 + wrote 512/512 bytes at offset 124160 255 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 256 + wrote 512/512 bytes at offset 125184 257 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 258 + wrote 512/512 bytes at offset 126208 259 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 260 + wrote 512/512 bytes at offset 127232 261 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 262 + wrote 512/512 bytes at offset 128256 263 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 264 + wrote 512/512 bytes at offset 129280 265 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 266 + wrote 512/512 bytes at offset 130304 267 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 268 + wrote 512/512 bytes at offset 131328 269 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 270 + wrote 512/512 bytes at offset 132352 271 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 272 + wrote 512/512 bytes at offset 133376 273 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 274 + wrote 512/512 bytes at offset 134400 275 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 276 + wrote 512/512 bytes at offset 135424 277 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 278 + wrote 512/512 bytes at offset 136448 279 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 280 + wrote 512/512 bytes at offset 137472 281 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 282 + wrote 512/512 bytes at offset 138496 283 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 284 + wrote 512/512 bytes at offset 139520 285 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 286 + wrote 512/512 bytes at offset 140544 287 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 288 + wrote 512/512 bytes at offset 141568 289 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 290 + wrote 512/512 bytes at offset 142592 291 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 292 + wrote 512/512 bytes at offset 143616 293 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 294 + wrote 512/512 bytes at offset 144640 295 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 296 + wrote 512/512 bytes at offset 145664 297 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 298 + wrote 512/512 bytes at offset 146688 299 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 264 300 === IO: pattern 33 265 301 wrote 2048/2048 bytes at offset 147968 266 302 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 507 543 read 512/512 bytes at offset 109568 508 544 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 509 545 === IO: pattern 216 510 - offset 110848 is not sector aligned 511 - offset 111872 is not sector aligned 512 - offset 112896 is not sector aligned 513 - offset 113920 is not sector aligned 514 - offset 114944 is not sector aligned 515 - offset 115968 is not sector aligned 516 - offset 116992 is not sector aligned 517 - offset 118016 is not sector aligned 518 - offset 119040 is not sector aligned 519 - offset 120064 is not sector aligned 520 - offset 121088 is not sector aligned 521 - offset 122112 is not sector aligned 522 - offset 123136 is not sector aligned 523 - offset 124160 is not sector aligned 524 - offset 125184 is not sector aligned 525 - offset 126208 is not sector aligned 526 - offset 127232 is not sector aligned 527 - offset 128256 is not sector aligned 528 - offset 129280 is not sector aligned 529 - offset 130304 is not sector aligned 530 - offset 131328 is not sector aligned 531 - offset 132352 is not sector aligned 532 - offset 133376 is not sector aligned 533 - offset 134400 is not sector aligned 534 - offset 135424 is not sector aligned 535 - offset 136448 is not sector aligned 536 - offset 137472 is not sector aligned 537 - offset 138496 is not sector aligned 538 - offset 139520 is not sector aligned 539 - offset 140544 is not sector aligned 540 - offset 141568 is not sector aligned 541 - offset 142592 is not sector aligned 542 - offset 143616 is not sector aligned 543 - offset 144640 is not sector aligned 544 - offset 145664 is not sector aligned 545 - offset 146688 is not sector aligned 546 + read 512/512 bytes at offset 110848 547 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 548 + read 512/512 bytes at offset 111872 549 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 550 + read 512/512 bytes at offset 112896 551 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 552 + read 512/512 bytes at offset 113920 553 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 554 + read 512/512 bytes at offset 114944 555 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 556 + read 512/512 bytes at offset 115968 557 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 558 + read 512/512 bytes at offset 116992 559 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 560 + read 512/512 bytes at offset 118016 561 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 562 + read 512/512 bytes at offset 119040 563 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 564 + read 512/512 bytes at offset 120064 565 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 566 + read 512/512 bytes at offset 121088 567 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 568 + read 512/512 bytes at offset 122112 569 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 570 + read 512/512 bytes at offset 123136 571 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 572 + read 512/512 bytes at offset 124160 573 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 574 + read 512/512 bytes at offset 125184 575 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 576 + read 512/512 bytes at offset 126208 577 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 578 + read 512/512 bytes at offset 127232 579 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 580 + read 512/512 bytes at offset 128256 581 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 582 + read 512/512 bytes at offset 129280 583 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 584 + read 512/512 bytes at offset 130304 585 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 586 + read 512/512 bytes at offset 131328 587 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 588 + read 512/512 bytes at offset 132352 589 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 590 + read 512/512 bytes at offset 133376 591 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 592 + read 512/512 bytes at offset 134400 593 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 594 + read 512/512 bytes at offset 135424 595 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 596 + read 512/512 bytes at offset 136448 597 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 598 + read 512/512 bytes at offset 137472 599 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 600 + read 512/512 bytes at offset 138496 601 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 602 + read 512/512 bytes at offset 139520 603 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 604 + read 512/512 bytes at offset 140544 605 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 606 + read 512/512 bytes at offset 141568 607 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 608 + read 512/512 bytes at offset 142592 609 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 610 + read 512/512 bytes at offset 143616 611 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 612 + read 512/512 bytes at offset 144640 613 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 614 + read 512/512 bytes at offset 145664 615 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 616 + read 512/512 bytes at offset 146688 617 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 546 618 === IO: pattern 33 547 619 read 2048/2048 bytes at offset 147968 548 620 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 789 861 wrote 512/512 bytes at offset 109568 790 862 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 791 863 === IO: pattern 216 792 - offset 110848 is not sector aligned 793 - offset 111872 is not sector aligned 794 - offset 112896 is not sector aligned 795 - offset 113920 is not sector aligned 796 - offset 114944 is not sector aligned 797 - offset 115968 is not sector aligned 798 - offset 116992 is not sector aligned 799 - offset 118016 is not sector aligned 800 - offset 119040 is not sector aligned 801 - offset 120064 is not sector aligned 802 - offset 121088 is not sector aligned 803 - offset 122112 is not sector aligned 804 - offset 123136 is not sector aligned 805 - offset 124160 is not sector aligned 806 - offset 125184 is not sector aligned 807 - offset 126208 is not sector aligned 808 - offset 127232 is not sector aligned 809 - offset 128256 is not sector aligned 810 - offset 129280 is not sector aligned 811 - offset 130304 is not sector aligned 812 - offset 131328 is not sector aligned 813 - offset 132352 is not sector aligned 814 - offset 133376 is not sector aligned 815 - offset 134400 is not sector aligned 816 - offset 135424 is not sector aligned 817 - offset 136448 is not sector aligned 818 - offset 137472 is not sector aligned 819 - offset 138496 is not sector aligned 820 - offset 139520 is not sector aligned 821 - offset 140544 is not sector aligned 822 - offset 141568 is not sector aligned 823 - offset 142592 is not sector aligned 824 - offset 143616 is not sector aligned 825 - offset 144640 is not sector aligned 826 - offset 145664 is not sector aligned 827 - offset 146688 is not sector aligned 864 + wrote 512/512 bytes at offset 110848 865 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 866 + wrote 512/512 bytes at offset 111872 867 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 868 + wrote 512/512 bytes at offset 112896 869 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 870 + wrote 512/512 bytes at offset 113920 871 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 872 + wrote 512/512 bytes at offset 114944 873 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 874 + wrote 512/512 bytes at offset 115968 875 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 876 + wrote 512/512 bytes at offset 116992 877 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 878 + wrote 512/512 bytes at offset 118016 879 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 880 + wrote 512/512 bytes at offset 119040 881 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 882 + wrote 512/512 bytes at offset 120064 883 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 884 + wrote 512/512 bytes at offset 121088 885 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 886 + wrote 512/512 bytes at offset 122112 887 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 888 + wrote 512/512 bytes at offset 123136 889 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 890 + wrote 512/512 bytes at offset 124160 891 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 892 + wrote 512/512 bytes at offset 125184 893 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 894 + wrote 512/512 bytes at offset 126208 895 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 896 + wrote 512/512 bytes at offset 127232 897 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 898 + wrote 512/512 bytes at offset 128256 899 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 900 + wrote 512/512 bytes at offset 129280 901 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 902 + wrote 512/512 bytes at offset 130304 903 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 904 + wrote 512/512 bytes at offset 131328 905 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 906 + wrote 512/512 bytes at offset 132352 907 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 908 + wrote 512/512 bytes at offset 133376 909 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 910 + wrote 512/512 bytes at offset 134400 911 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 912 + wrote 512/512 bytes at offset 135424 913 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 914 + wrote 512/512 bytes at offset 136448 915 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 916 + wrote 512/512 bytes at offset 137472 917 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 918 + wrote 512/512 bytes at offset 138496 919 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 920 + wrote 512/512 bytes at offset 139520 921 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 922 + wrote 512/512 bytes at offset 140544 923 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 924 + wrote 512/512 bytes at offset 141568 925 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 926 + wrote 512/512 bytes at offset 142592 927 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 928 + wrote 512/512 bytes at offset 143616 929 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 930 + wrote 512/512 bytes at offset 144640 931 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 932 + wrote 512/512 bytes at offset 145664 933 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 934 + wrote 512/512 bytes at offset 146688 935 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 828 936 === IO: pattern 33 829 937 wrote 2048/2048 bytes at offset 147968 830 938 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 1071 1179 read 512/512 bytes at offset 109568 1072 1180 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1073 1181 === IO: pattern 216 1074 - offset 110848 is not sector aligned 1075 - offset 111872 is not sector aligned 1076 - offset 112896 is not sector aligned 1077 - offset 113920 is not sector aligned 1078 - offset 114944 is not sector aligned 1079 - offset 115968 is not sector aligned 1080 - offset 116992 is not sector aligned 1081 - offset 118016 is not sector aligned 1082 - offset 119040 is not sector aligned 1083 - offset 120064 is not sector aligned 1084 - offset 121088 is not sector aligned 1085 - offset 122112 is not sector aligned 1086 - offset 123136 is not sector aligned 1087 - offset 124160 is not sector aligned 1088 - offset 125184 is not sector aligned 1089 - offset 126208 is not sector aligned 1090 - offset 127232 is not sector aligned 1091 - offset 128256 is not sector aligned 1092 - offset 129280 is not sector aligned 1093 - offset 130304 is not sector aligned 1094 - offset 131328 is not sector aligned 1095 - offset 132352 is not sector aligned 1096 - offset 133376 is not sector aligned 1097 - offset 134400 is not sector aligned 1098 - offset 135424 is not sector aligned 1099 - offset 136448 is not sector aligned 1100 - offset 137472 is not sector aligned 1101 - offset 138496 is not sector aligned 1102 - offset 139520 is not sector aligned 1103 - offset 140544 is not sector aligned 1104 - offset 141568 is not sector aligned 1105 - offset 142592 is not sector aligned 1106 - offset 143616 is not sector aligned 1107 - offset 144640 is not sector aligned 1108 - offset 145664 is not sector aligned 1109 - offset 146688 is not sector aligned 1182 + read 512/512 bytes at offset 110848 1183 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1184 + read 512/512 bytes at offset 111872 1185 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1186 + read 512/512 bytes at offset 112896 1187 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1188 + read 512/512 bytes at offset 113920 1189 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1190 + read 512/512 bytes at offset 114944 1191 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1192 + read 512/512 bytes at offset 115968 1193 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1194 + read 512/512 bytes at offset 116992 1195 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1196 + read 512/512 bytes at offset 118016 1197 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1198 + read 512/512 bytes at offset 119040 1199 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1200 + read 512/512 bytes at offset 120064 1201 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1202 + read 512/512 bytes at offset 121088 1203 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1204 + read 512/512 bytes at offset 122112 1205 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1206 + read 512/512 bytes at offset 123136 1207 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1208 + read 512/512 bytes at offset 124160 1209 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1210 + read 512/512 bytes at offset 125184 1211 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1212 + read 512/512 bytes at offset 126208 1213 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1214 + read 512/512 bytes at offset 127232 1215 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1216 + read 512/512 bytes at offset 128256 1217 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1218 + read 512/512 bytes at offset 129280 1219 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1220 + read 512/512 bytes at offset 130304 1221 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1222 + read 512/512 bytes at offset 131328 1223 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1224 + read 512/512 bytes at offset 132352 1225 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1226 + read 512/512 bytes at offset 133376 1227 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1228 + read 512/512 bytes at offset 134400 1229 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1230 + read 512/512 bytes at offset 135424 1231 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1232 + read 512/512 bytes at offset 136448 1233 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1234 + read 512/512 bytes at offset 137472 1235 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1236 + read 512/512 bytes at offset 138496 1237 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1238 + read 512/512 bytes at offset 139520 1239 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1240 + read 512/512 bytes at offset 140544 1241 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1242 + read 512/512 bytes at offset 141568 1243 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1244 + read 512/512 bytes at offset 142592 1245 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1246 + read 512/512 bytes at offset 143616 1247 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1248 + read 512/512 bytes at offset 144640 1249 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1250 + read 512/512 bytes at offset 145664 1251 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1252 + read 512/512 bytes at offset 146688 1253 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1110 1254 === IO: pattern 33 1111 1255 read 2048/2048 bytes at offset 147968 1112 1256 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 1355 1499 wrote 512/512 bytes at offset 4295076864 1356 1500 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1357 1501 === IO: pattern 216 1358 - offset 4295078144 is not sector aligned 1359 - offset 4295079168 is not sector aligned 1360 - offset 4295080192 is not sector aligned 1361 - offset 4295081216 is not sector aligned 1362 - offset 4295082240 is not sector aligned 1363 - offset 4295083264 is not sector aligned 1364 - offset 4295084288 is not sector aligned 1365 - offset 4295085312 is not sector aligned 1366 - offset 4295086336 is not sector aligned 1367 - offset 4295087360 is not sector aligned 1368 - offset 4295088384 is not sector aligned 1369 - offset 4295089408 is not sector aligned 1370 - offset 4295090432 is not sector aligned 1371 - offset 4295091456 is not sector aligned 1372 - offset 4295092480 is not sector aligned 1373 - offset 4295093504 is not sector aligned 1374 - offset 4295094528 is not sector aligned 1375 - offset 4295095552 is not sector aligned 1376 - offset 4295096576 is not sector aligned 1377 - offset 4295097600 is not sector aligned 1378 - offset 4295098624 is not sector aligned 1379 - offset 4295099648 is not sector aligned 1380 - offset 4295100672 is not sector aligned 1381 - offset 4295101696 is not sector aligned 1382 - offset 4295102720 is not sector aligned 1383 - offset 4295103744 is not sector aligned 1384 - offset 4295104768 is not sector aligned 1385 - offset 4295105792 is not sector aligned 1386 - offset 4295106816 is not sector aligned 1387 - offset 4295107840 is not sector aligned 1388 - offset 4295108864 is not sector aligned 1389 - offset 4295109888 is not sector aligned 1390 - offset 4295110912 is not sector aligned 1391 - offset 4295111936 is not sector aligned 1392 - offset 4295112960 is not sector aligned 1393 - offset 4295113984 is not sector aligned 1502 + wrote 512/512 bytes at offset 4295078144 1503 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1504 + wrote 512/512 bytes at offset 4295079168 1505 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1506 + wrote 512/512 bytes at offset 4295080192 1507 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1508 + wrote 512/512 bytes at offset 4295081216 1509 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1510 + wrote 512/512 bytes at offset 4295082240 1511 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1512 + wrote 512/512 bytes at offset 4295083264 1513 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1514 + wrote 512/512 bytes at offset 4295084288 1515 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1516 + wrote 512/512 bytes at offset 4295085312 1517 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1518 + wrote 512/512 bytes at offset 4295086336 1519 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1520 + wrote 512/512 bytes at offset 4295087360 1521 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1522 + wrote 512/512 bytes at offset 4295088384 1523 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1524 + wrote 512/512 bytes at offset 4295089408 1525 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1526 + wrote 512/512 bytes at offset 4295090432 1527 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1528 + wrote 512/512 bytes at offset 4295091456 1529 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1530 + wrote 512/512 bytes at offset 4295092480 1531 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1532 + wrote 512/512 bytes at offset 4295093504 1533 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1534 + wrote 512/512 bytes at offset 4295094528 1535 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1536 + wrote 512/512 bytes at offset 4295095552 1537 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1538 + wrote 512/512 bytes at offset 4295096576 1539 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1540 + wrote 512/512 bytes at offset 4295097600 1541 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1542 + wrote 512/512 bytes at offset 4295098624 1543 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1544 + wrote 512/512 bytes at offset 4295099648 1545 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1546 + wrote 512/512 bytes at offset 4295100672 1547 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1548 + wrote 512/512 bytes at offset 4295101696 1549 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1550 + wrote 512/512 bytes at offset 4295102720 1551 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1552 + wrote 512/512 bytes at offset 4295103744 1553 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1554 + wrote 512/512 bytes at offset 4295104768 1555 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1556 + wrote 512/512 bytes at offset 4295105792 1557 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1558 + wrote 512/512 bytes at offset 4295106816 1559 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1560 + wrote 512/512 bytes at offset 4295107840 1561 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1562 + wrote 512/512 bytes at offset 4295108864 1563 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1564 + wrote 512/512 bytes at offset 4295109888 1565 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1566 + wrote 512/512 bytes at offset 4295110912 1567 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1568 + wrote 512/512 bytes at offset 4295111936 1569 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1570 + wrote 512/512 bytes at offset 4295112960 1571 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1572 + wrote 512/512 bytes at offset 4295113984 1573 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1394 1574 === IO: pattern 33 1395 1575 wrote 2048/2048 bytes at offset 4295115264 1396 1576 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 1637 1817 read 512/512 bytes at offset 4295076864 1638 1818 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1639 1819 === IO: pattern 216 1640 - offset 4295078144 is not sector aligned 1641 - offset 4295079168 is not sector aligned 1642 - offset 4295080192 is not sector aligned 1643 - offset 4295081216 is not sector aligned 1644 - offset 4295082240 is not sector aligned 1645 - offset 4295083264 is not sector aligned 1646 - offset 4295084288 is not sector aligned 1647 - offset 4295085312 is not sector aligned 1648 - offset 4295086336 is not sector aligned 1649 - offset 4295087360 is not sector aligned 1650 - offset 4295088384 is not sector aligned 1651 - offset 4295089408 is not sector aligned 1652 - offset 4295090432 is not sector aligned 1653 - offset 4295091456 is not sector aligned 1654 - offset 4295092480 is not sector aligned 1655 - offset 4295093504 is not sector aligned 1656 - offset 4295094528 is not sector aligned 1657 - offset 4295095552 is not sector aligned 1658 - offset 4295096576 is not sector aligned 1659 - offset 4295097600 is not sector aligned 1660 - offset 4295098624 is not sector aligned 1661 - offset 4295099648 is not sector aligned 1662 - offset 4295100672 is not sector aligned 1663 - offset 4295101696 is not sector aligned 1664 - offset 4295102720 is not sector aligned 1665 - offset 4295103744 is not sector aligned 1666 - offset 4295104768 is not sector aligned 1667 - offset 4295105792 is not sector aligned 1668 - offset 4295106816 is not sector aligned 1669 - offset 4295107840 is not sector aligned 1670 - offset 4295108864 is not sector aligned 1671 - offset 4295109888 is not sector aligned 1672 - offset 4295110912 is not sector aligned 1673 - offset 4295111936 is not sector aligned 1674 - offset 4295112960 is not sector aligned 1675 - offset 4295113984 is not sector aligned 1820 + read 512/512 bytes at offset 4295078144 1821 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1822 + read 512/512 bytes at offset 4295079168 1823 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1824 + read 512/512 bytes at offset 4295080192 1825 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1826 + read 512/512 bytes at offset 4295081216 1827 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1828 + read 512/512 bytes at offset 4295082240 1829 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1830 + read 512/512 bytes at offset 4295083264 1831 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1832 + read 512/512 bytes at offset 4295084288 1833 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1834 + read 512/512 bytes at offset 4295085312 1835 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1836 + read 512/512 bytes at offset 4295086336 1837 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1838 + read 512/512 bytes at offset 4295087360 1839 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1840 + read 512/512 bytes at offset 4295088384 1841 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1842 + read 512/512 bytes at offset 4295089408 1843 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1844 + read 512/512 bytes at offset 4295090432 1845 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1846 + read 512/512 bytes at offset 4295091456 1847 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1848 + read 512/512 bytes at offset 4295092480 1849 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1850 + read 512/512 bytes at offset 4295093504 1851 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1852 + read 512/512 bytes at offset 4295094528 1853 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1854 + read 512/512 bytes at offset 4295095552 1855 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1856 + read 512/512 bytes at offset 4295096576 1857 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1858 + read 512/512 bytes at offset 4295097600 1859 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1860 + read 512/512 bytes at offset 4295098624 1861 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1862 + read 512/512 bytes at offset 4295099648 1863 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1864 + read 512/512 bytes at offset 4295100672 1865 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1866 + read 512/512 bytes at offset 4295101696 1867 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1868 + read 512/512 bytes at offset 4295102720 1869 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1870 + read 512/512 bytes at offset 4295103744 1871 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1872 + read 512/512 bytes at offset 4295104768 1873 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1874 + read 512/512 bytes at offset 4295105792 1875 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1876 + read 512/512 bytes at offset 4295106816 1877 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1878 + read 512/512 bytes at offset 4295107840 1879 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1880 + read 512/512 bytes at offset 4295108864 1881 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1882 + read 512/512 bytes at offset 4295109888 1883 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1884 + read 512/512 bytes at offset 4295110912 1885 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1886 + read 512/512 bytes at offset 4295111936 1887 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1888 + read 512/512 bytes at offset 4295112960 1889 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1890 + read 512/512 bytes at offset 4295113984 1891 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1676 1892 === IO: pattern 33 1677 1893 read 2048/2048 bytes at offset 4295115264 1678 1894 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 1919 2135 wrote 512/512 bytes at offset 4295076864 1920 2136 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1921 2137 === IO: pattern 216 1922 - offset 4295078144 is not sector aligned 1923 - offset 4295079168 is not sector aligned 1924 - offset 4295080192 is not sector aligned 1925 - offset 4295081216 is not sector aligned 1926 - offset 4295082240 is not sector aligned 1927 - offset 4295083264 is not sector aligned 1928 - offset 4295084288 is not sector aligned 1929 - offset 4295085312 is not sector aligned 1930 - offset 4295086336 is not sector aligned 1931 - offset 4295087360 is not sector aligned 1932 - offset 4295088384 is not sector aligned 1933 - offset 4295089408 is not sector aligned 1934 - offset 4295090432 is not sector aligned 1935 - offset 4295091456 is not sector aligned 1936 - offset 4295092480 is not sector aligned 1937 - offset 4295093504 is not sector aligned 1938 - offset 4295094528 is not sector aligned 1939 - offset 4295095552 is not sector aligned 1940 - offset 4295096576 is not sector aligned 1941 - offset 4295097600 is not sector aligned 1942 - offset 4295098624 is not sector aligned 1943 - offset 4295099648 is not sector aligned 1944 - offset 4295100672 is not sector aligned 1945 - offset 4295101696 is not sector aligned 1946 - offset 4295102720 is not sector aligned 1947 - offset 4295103744 is not sector aligned 1948 - offset 4295104768 is not sector aligned 1949 - offset 4295105792 is not sector aligned 1950 - offset 4295106816 is not sector aligned 1951 - offset 4295107840 is not sector aligned 1952 - offset 4295108864 is not sector aligned 1953 - offset 4295109888 is not sector aligned 1954 - offset 4295110912 is not sector aligned 1955 - offset 4295111936 is not sector aligned 1956 - offset 4295112960 is not sector aligned 1957 - offset 4295113984 is not sector aligned 2138 + wrote 512/512 bytes at offset 4295078144 2139 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2140 + wrote 512/512 bytes at offset 4295079168 2141 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2142 + wrote 512/512 bytes at offset 4295080192 2143 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2144 + wrote 512/512 bytes at offset 4295081216 2145 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2146 + wrote 512/512 bytes at offset 4295082240 2147 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2148 + wrote 512/512 bytes at offset 4295083264 2149 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2150 + wrote 512/512 bytes at offset 4295084288 2151 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2152 + wrote 512/512 bytes at offset 4295085312 2153 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2154 + wrote 512/512 bytes at offset 4295086336 2155 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2156 + wrote 512/512 bytes at offset 4295087360 2157 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2158 + wrote 512/512 bytes at offset 4295088384 2159 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2160 + wrote 512/512 bytes at offset 4295089408 2161 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2162 + wrote 512/512 bytes at offset 4295090432 2163 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2164 + wrote 512/512 bytes at offset 4295091456 2165 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2166 + wrote 512/512 bytes at offset 4295092480 2167 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2168 + wrote 512/512 bytes at offset 4295093504 2169 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2170 + wrote 512/512 bytes at offset 4295094528 2171 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2172 + wrote 512/512 bytes at offset 4295095552 2173 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2174 + wrote 512/512 bytes at offset 4295096576 2175 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2176 + wrote 512/512 bytes at offset 4295097600 2177 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2178 + wrote 512/512 bytes at offset 4295098624 2179 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2180 + wrote 512/512 bytes at offset 4295099648 2181 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2182 + wrote 512/512 bytes at offset 4295100672 2183 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2184 + wrote 512/512 bytes at offset 4295101696 2185 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2186 + wrote 512/512 bytes at offset 4295102720 2187 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2188 + wrote 512/512 bytes at offset 4295103744 2189 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2190 + wrote 512/512 bytes at offset 4295104768 2191 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2192 + wrote 512/512 bytes at offset 4295105792 2193 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2194 + wrote 512/512 bytes at offset 4295106816 2195 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2196 + wrote 512/512 bytes at offset 4295107840 2197 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2198 + wrote 512/512 bytes at offset 4295108864 2199 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2200 + wrote 512/512 bytes at offset 4295109888 2201 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2202 + wrote 512/512 bytes at offset 4295110912 2203 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2204 + wrote 512/512 bytes at offset 4295111936 2205 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2206 + wrote 512/512 bytes at offset 4295112960 2207 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2208 + wrote 512/512 bytes at offset 4295113984 2209 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 1958 2210 === IO: pattern 33 1959 2211 wrote 2048/2048 bytes at offset 4295115264 1960 2212 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 2201 2453 read 512/512 bytes at offset 4295076864 2202 2454 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2203 2455 === IO: pattern 216 2204 - offset 4295078144 is not sector aligned 2205 - offset 4295079168 is not sector aligned 2206 - offset 4295080192 is not sector aligned 2207 - offset 4295081216 is not sector aligned 2208 - offset 4295082240 is not sector aligned 2209 - offset 4295083264 is not sector aligned 2210 - offset 4295084288 is not sector aligned 2211 - offset 4295085312 is not sector aligned 2212 - offset 4295086336 is not sector aligned 2213 - offset 4295087360 is not sector aligned 2214 - offset 4295088384 is not sector aligned 2215 - offset 4295089408 is not sector aligned 2216 - offset 4295090432 is not sector aligned 2217 - offset 4295091456 is not sector aligned 2218 - offset 4295092480 is not sector aligned 2219 - offset 4295093504 is not sector aligned 2220 - offset 4295094528 is not sector aligned 2221 - offset 4295095552 is not sector aligned 2222 - offset 4295096576 is not sector aligned 2223 - offset 4295097600 is not sector aligned 2224 - offset 4295098624 is not sector aligned 2225 - offset 4295099648 is not sector aligned 2226 - offset 4295100672 is not sector aligned 2227 - offset 4295101696 is not sector aligned 2228 - offset 4295102720 is not sector aligned 2229 - offset 4295103744 is not sector aligned 2230 - offset 4295104768 is not sector aligned 2231 - offset 4295105792 is not sector aligned 2232 - offset 4295106816 is not sector aligned 2233 - offset 4295107840 is not sector aligned 2234 - offset 4295108864 is not sector aligned 2235 - offset 4295109888 is not sector aligned 2236 - offset 4295110912 is not sector aligned 2237 - offset 4295111936 is not sector aligned 2238 - offset 4295112960 is not sector aligned 2239 - offset 4295113984 is not sector aligned 2456 + read 512/512 bytes at offset 4295078144 2457 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2458 + read 512/512 bytes at offset 4295079168 2459 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2460 + read 512/512 bytes at offset 4295080192 2461 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2462 + read 512/512 bytes at offset 4295081216 2463 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2464 + read 512/512 bytes at offset 4295082240 2465 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2466 + read 512/512 bytes at offset 4295083264 2467 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2468 + read 512/512 bytes at offset 4295084288 2469 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2470 + read 512/512 bytes at offset 4295085312 2471 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2472 + read 512/512 bytes at offset 4295086336 2473 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2474 + read 512/512 bytes at offset 4295087360 2475 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2476 + read 512/512 bytes at offset 4295088384 2477 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2478 + read 512/512 bytes at offset 4295089408 2479 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2480 + read 512/512 bytes at offset 4295090432 2481 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2482 + read 512/512 bytes at offset 4295091456 2483 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2484 + read 512/512 bytes at offset 4295092480 2485 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2486 + read 512/512 bytes at offset 4295093504 2487 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2488 + read 512/512 bytes at offset 4295094528 2489 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2490 + read 512/512 bytes at offset 4295095552 2491 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2492 + read 512/512 bytes at offset 4295096576 2493 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2494 + read 512/512 bytes at offset 4295097600 2495 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2496 + read 512/512 bytes at offset 4295098624 2497 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2498 + read 512/512 bytes at offset 4295099648 2499 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2500 + read 512/512 bytes at offset 4295100672 2501 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2502 + read 512/512 bytes at offset 4295101696 2503 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2504 + read 512/512 bytes at offset 4295102720 2505 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2506 + read 512/512 bytes at offset 4295103744 2507 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2508 + read 512/512 bytes at offset 4295104768 2509 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2510 + read 512/512 bytes at offset 4295105792 2511 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2512 + read 512/512 bytes at offset 4295106816 2513 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2514 + read 512/512 bytes at offset 4295107840 2515 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2516 + read 512/512 bytes at offset 4295108864 2517 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2518 + read 512/512 bytes at offset 4295109888 2519 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2520 + read 512/512 bytes at offset 4295110912 2521 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2522 + read 512/512 bytes at offset 4295111936 2523 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2524 + read 512/512 bytes at offset 4295112960 2525 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2526 + read 512/512 bytes at offset 4295113984 2527 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2240 2528 === IO: pattern 33 2241 2529 read 2048/2048 bytes at offset 4295115264 2242 2530 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 2489 2777 read 512/512 bytes at offset 109568 2490 2778 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2491 2779 === IO: pattern 216 2492 - offset 110848 is not sector aligned 2493 - offset 111872 is not sector aligned 2494 - offset 112896 is not sector aligned 2495 - offset 113920 is not sector aligned 2496 - offset 114944 is not sector aligned 2497 - offset 115968 is not sector aligned 2498 - offset 116992 is not sector aligned 2499 - offset 118016 is not sector aligned 2500 - offset 119040 is not sector aligned 2501 - offset 120064 is not sector aligned 2502 - offset 121088 is not sector aligned 2503 - offset 122112 is not sector aligned 2504 - offset 123136 is not sector aligned 2505 - offset 124160 is not sector aligned 2506 - offset 125184 is not sector aligned 2507 - offset 126208 is not sector aligned 2508 - offset 127232 is not sector aligned 2509 - offset 128256 is not sector aligned 2510 - offset 129280 is not sector aligned 2511 - offset 130304 is not sector aligned 2512 - offset 131328 is not sector aligned 2513 - offset 132352 is not sector aligned 2514 - offset 133376 is not sector aligned 2515 - offset 134400 is not sector aligned 2516 - offset 135424 is not sector aligned 2517 - offset 136448 is not sector aligned 2518 - offset 137472 is not sector aligned 2519 - offset 138496 is not sector aligned 2520 - offset 139520 is not sector aligned 2521 - offset 140544 is not sector aligned 2522 - offset 141568 is not sector aligned 2523 - offset 142592 is not sector aligned 2524 - offset 143616 is not sector aligned 2525 - offset 144640 is not sector aligned 2526 - offset 145664 is not sector aligned 2527 - offset 146688 is not sector aligned 2780 + read 512/512 bytes at offset 110848 2781 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2782 + read 512/512 bytes at offset 111872 2783 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2784 + read 512/512 bytes at offset 112896 2785 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2786 + read 512/512 bytes at offset 113920 2787 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2788 + read 512/512 bytes at offset 114944 2789 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2790 + read 512/512 bytes at offset 115968 2791 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2792 + read 512/512 bytes at offset 116992 2793 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2794 + read 512/512 bytes at offset 118016 2795 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2796 + read 512/512 bytes at offset 119040 2797 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2798 + read 512/512 bytes at offset 120064 2799 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2800 + read 512/512 bytes at offset 121088 2801 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2802 + read 512/512 bytes at offset 122112 2803 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2804 + read 512/512 bytes at offset 123136 2805 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2806 + read 512/512 bytes at offset 124160 2807 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2808 + read 512/512 bytes at offset 125184 2809 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2810 + read 512/512 bytes at offset 126208 2811 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2812 + read 512/512 bytes at offset 127232 2813 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2814 + read 512/512 bytes at offset 128256 2815 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2816 + read 512/512 bytes at offset 129280 2817 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2818 + read 512/512 bytes at offset 130304 2819 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2820 + read 512/512 bytes at offset 131328 2821 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2822 + read 512/512 bytes at offset 132352 2823 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2824 + read 512/512 bytes at offset 133376 2825 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2826 + read 512/512 bytes at offset 134400 2827 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2828 + read 512/512 bytes at offset 135424 2829 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2830 + read 512/512 bytes at offset 136448 2831 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2832 + read 512/512 bytes at offset 137472 2833 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2834 + read 512/512 bytes at offset 138496 2835 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2836 + read 512/512 bytes at offset 139520 2837 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2838 + read 512/512 bytes at offset 140544 2839 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2840 + read 512/512 bytes at offset 141568 2841 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2842 + read 512/512 bytes at offset 142592 2843 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2844 + read 512/512 bytes at offset 143616 2845 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2846 + read 512/512 bytes at offset 144640 2847 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2848 + read 512/512 bytes at offset 145664 2849 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2850 + read 512/512 bytes at offset 146688 2851 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2528 2852 === IO: pattern 33 2529 2853 read 2048/2048 bytes at offset 147968 2530 2854 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 2771 3095 read 512/512 bytes at offset 109568 2772 3096 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2773 3097 === IO: pattern 216 2774 - offset 110848 is not sector aligned 2775 - offset 111872 is not sector aligned 2776 - offset 112896 is not sector aligned 2777 - offset 113920 is not sector aligned 2778 - offset 114944 is not sector aligned 2779 - offset 115968 is not sector aligned 2780 - offset 116992 is not sector aligned 2781 - offset 118016 is not sector aligned 2782 - offset 119040 is not sector aligned 2783 - offset 120064 is not sector aligned 2784 - offset 121088 is not sector aligned 2785 - offset 122112 is not sector aligned 2786 - offset 123136 is not sector aligned 2787 - offset 124160 is not sector aligned 2788 - offset 125184 is not sector aligned 2789 - offset 126208 is not sector aligned 2790 - offset 127232 is not sector aligned 2791 - offset 128256 is not sector aligned 2792 - offset 129280 is not sector aligned 2793 - offset 130304 is not sector aligned 2794 - offset 131328 is not sector aligned 2795 - offset 132352 is not sector aligned 2796 - offset 133376 is not sector aligned 2797 - offset 134400 is not sector aligned 2798 - offset 135424 is not sector aligned 2799 - offset 136448 is not sector aligned 2800 - offset 137472 is not sector aligned 2801 - offset 138496 is not sector aligned 2802 - offset 139520 is not sector aligned 2803 - offset 140544 is not sector aligned 2804 - offset 141568 is not sector aligned 2805 - offset 142592 is not sector aligned 2806 - offset 143616 is not sector aligned 2807 - offset 144640 is not sector aligned 2808 - offset 145664 is not sector aligned 2809 - offset 146688 is not sector aligned 3098 + read 512/512 bytes at offset 110848 3099 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3100 + read 512/512 bytes at offset 111872 3101 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3102 + read 512/512 bytes at offset 112896 3103 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3104 + read 512/512 bytes at offset 113920 3105 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3106 + read 512/512 bytes at offset 114944 3107 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3108 + read 512/512 bytes at offset 115968 3109 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3110 + read 512/512 bytes at offset 116992 3111 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3112 + read 512/512 bytes at offset 118016 3113 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3114 + read 512/512 bytes at offset 119040 3115 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3116 + read 512/512 bytes at offset 120064 3117 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3118 + read 512/512 bytes at offset 121088 3119 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3120 + read 512/512 bytes at offset 122112 3121 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3122 + read 512/512 bytes at offset 123136 3123 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3124 + read 512/512 bytes at offset 124160 3125 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3126 + read 512/512 bytes at offset 125184 3127 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3128 + read 512/512 bytes at offset 126208 3129 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3130 + read 512/512 bytes at offset 127232 3131 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3132 + read 512/512 bytes at offset 128256 3133 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3134 + read 512/512 bytes at offset 129280 3135 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3136 + read 512/512 bytes at offset 130304 3137 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3138 + read 512/512 bytes at offset 131328 3139 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3140 + read 512/512 bytes at offset 132352 3141 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3142 + read 512/512 bytes at offset 133376 3143 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3144 + read 512/512 bytes at offset 134400 3145 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3146 + read 512/512 bytes at offset 135424 3147 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3148 + read 512/512 bytes at offset 136448 3149 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3150 + read 512/512 bytes at offset 137472 3151 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3152 + read 512/512 bytes at offset 138496 3153 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3154 + read 512/512 bytes at offset 139520 3155 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3156 + read 512/512 bytes at offset 140544 3157 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3158 + read 512/512 bytes at offset 141568 3159 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3160 + read 512/512 bytes at offset 142592 3161 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3162 + read 512/512 bytes at offset 143616 3163 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3164 + read 512/512 bytes at offset 144640 3165 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3166 + read 512/512 bytes at offset 145664 3167 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3168 + read 512/512 bytes at offset 146688 3169 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 2810 3170 === IO: pattern 33 2811 3171 read 2048/2048 bytes at offset 147968 2812 3172 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 3055 3415 read 512/512 bytes at offset 4295076864 3056 3416 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3057 3417 === IO: pattern 216 3058 - offset 4295078144 is not sector aligned 3059 - offset 4295079168 is not sector aligned 3060 - offset 4295080192 is not sector aligned 3061 - offset 4295081216 is not sector aligned 3062 - offset 4295082240 is not sector aligned 3063 - offset 4295083264 is not sector aligned 3064 - offset 4295084288 is not sector aligned 3065 - offset 4295085312 is not sector aligned 3066 - offset 4295086336 is not sector aligned 3067 - offset 4295087360 is not sector aligned 3068 - offset 4295088384 is not sector aligned 3069 - offset 4295089408 is not sector aligned 3070 - offset 4295090432 is not sector aligned 3071 - offset 4295091456 is not sector aligned 3072 - offset 4295092480 is not sector aligned 3073 - offset 4295093504 is not sector aligned 3074 - offset 4295094528 is not sector aligned 3075 - offset 4295095552 is not sector aligned 3076 - offset 4295096576 is not sector aligned 3077 - offset 4295097600 is not sector aligned 3078 - offset 4295098624 is not sector aligned 3079 - offset 4295099648 is not sector aligned 3080 - offset 4295100672 is not sector aligned 3081 - offset 4295101696 is not sector aligned 3082 - offset 4295102720 is not sector aligned 3083 - offset 4295103744 is not sector aligned 3084 - offset 4295104768 is not sector aligned 3085 - offset 4295105792 is not sector aligned 3086 - offset 4295106816 is not sector aligned 3087 - offset 4295107840 is not sector aligned 3088 - offset 4295108864 is not sector aligned 3089 - offset 4295109888 is not sector aligned 3090 - offset 4295110912 is not sector aligned 3091 - offset 4295111936 is not sector aligned 3092 - offset 4295112960 is not sector aligned 3093 - offset 4295113984 is not sector aligned 3418 + read 512/512 bytes at offset 4295078144 3419 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3420 + read 512/512 bytes at offset 4295079168 3421 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3422 + read 512/512 bytes at offset 4295080192 3423 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3424 + read 512/512 bytes at offset 4295081216 3425 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3426 + read 512/512 bytes at offset 4295082240 3427 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3428 + read 512/512 bytes at offset 4295083264 3429 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3430 + read 512/512 bytes at offset 4295084288 3431 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3432 + read 512/512 bytes at offset 4295085312 3433 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3434 + read 512/512 bytes at offset 4295086336 3435 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3436 + read 512/512 bytes at offset 4295087360 3437 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3438 + read 512/512 bytes at offset 4295088384 3439 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3440 + read 512/512 bytes at offset 4295089408 3441 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3442 + read 512/512 bytes at offset 4295090432 3443 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3444 + read 512/512 bytes at offset 4295091456 3445 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3446 + read 512/512 bytes at offset 4295092480 3447 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3448 + read 512/512 bytes at offset 4295093504 3449 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3450 + read 512/512 bytes at offset 4295094528 3451 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3452 + read 512/512 bytes at offset 4295095552 3453 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3454 + read 512/512 bytes at offset 4295096576 3455 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3456 + read 512/512 bytes at offset 4295097600 3457 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3458 + read 512/512 bytes at offset 4295098624 3459 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3460 + read 512/512 bytes at offset 4295099648 3461 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3462 + read 512/512 bytes at offset 4295100672 3463 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3464 + read 512/512 bytes at offset 4295101696 3465 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3466 + read 512/512 bytes at offset 4295102720 3467 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3468 + read 512/512 bytes at offset 4295103744 3469 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3470 + read 512/512 bytes at offset 4295104768 3471 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3472 + read 512/512 bytes at offset 4295105792 3473 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3474 + read 512/512 bytes at offset 4295106816 3475 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3476 + read 512/512 bytes at offset 4295107840 3477 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3478 + read 512/512 bytes at offset 4295108864 3479 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3480 + read 512/512 bytes at offset 4295109888 3481 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3482 + read 512/512 bytes at offset 4295110912 3483 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3484 + read 512/512 bytes at offset 4295111936 3485 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3486 + read 512/512 bytes at offset 4295112960 3487 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3488 + read 512/512 bytes at offset 4295113984 3489 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3094 3490 === IO: pattern 33 3095 3491 read 2048/2048 bytes at offset 4295115264 3096 3492 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 3337 3733 read 512/512 bytes at offset 4295076864 3338 3734 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3339 3735 === IO: pattern 216 3340 - offset 4295078144 is not sector aligned 3341 - offset 4295079168 is not sector aligned 3342 - offset 4295080192 is not sector aligned 3343 - offset 4295081216 is not sector aligned 3344 - offset 4295082240 is not sector aligned 3345 - offset 4295083264 is not sector aligned 3346 - offset 4295084288 is not sector aligned 3347 - offset 4295085312 is not sector aligned 3348 - offset 4295086336 is not sector aligned 3349 - offset 4295087360 is not sector aligned 3350 - offset 4295088384 is not sector aligned 3351 - offset 4295089408 is not sector aligned 3352 - offset 4295090432 is not sector aligned 3353 - offset 4295091456 is not sector aligned 3354 - offset 4295092480 is not sector aligned 3355 - offset 4295093504 is not sector aligned 3356 - offset 4295094528 is not sector aligned 3357 - offset 4295095552 is not sector aligned 3358 - offset 4295096576 is not sector aligned 3359 - offset 4295097600 is not sector aligned 3360 - offset 4295098624 is not sector aligned 3361 - offset 4295099648 is not sector aligned 3362 - offset 4295100672 is not sector aligned 3363 - offset 4295101696 is not sector aligned 3364 - offset 4295102720 is not sector aligned 3365 - offset 4295103744 is not sector aligned 3366 - offset 4295104768 is not sector aligned 3367 - offset 4295105792 is not sector aligned 3368 - offset 4295106816 is not sector aligned 3369 - offset 4295107840 is not sector aligned 3370 - offset 4295108864 is not sector aligned 3371 - offset 4295109888 is not sector aligned 3372 - offset 4295110912 is not sector aligned 3373 - offset 4295111936 is not sector aligned 3374 - offset 4295112960 is not sector aligned 3375 - offset 4295113984 is not sector aligned 3736 + read 512/512 bytes at offset 4295078144 3737 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3738 + read 512/512 bytes at offset 4295079168 3739 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3740 + read 512/512 bytes at offset 4295080192 3741 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3742 + read 512/512 bytes at offset 4295081216 3743 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3744 + read 512/512 bytes at offset 4295082240 3745 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3746 + read 512/512 bytes at offset 4295083264 3747 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3748 + read 512/512 bytes at offset 4295084288 3749 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3750 + read 512/512 bytes at offset 4295085312 3751 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3752 + read 512/512 bytes at offset 4295086336 3753 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3754 + read 512/512 bytes at offset 4295087360 3755 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3756 + read 512/512 bytes at offset 4295088384 3757 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3758 + read 512/512 bytes at offset 4295089408 3759 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3760 + read 512/512 bytes at offset 4295090432 3761 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3762 + read 512/512 bytes at offset 4295091456 3763 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3764 + read 512/512 bytes at offset 4295092480 3765 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3766 + read 512/512 bytes at offset 4295093504 3767 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3768 + read 512/512 bytes at offset 4295094528 3769 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3770 + read 512/512 bytes at offset 4295095552 3771 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3772 + read 512/512 bytes at offset 4295096576 3773 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3774 + read 512/512 bytes at offset 4295097600 3775 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3776 + read 512/512 bytes at offset 4295098624 3777 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3778 + read 512/512 bytes at offset 4295099648 3779 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3780 + read 512/512 bytes at offset 4295100672 3781 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3782 + read 512/512 bytes at offset 4295101696 3783 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3784 + read 512/512 bytes at offset 4295102720 3785 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3786 + read 512/512 bytes at offset 4295103744 3787 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3788 + read 512/512 bytes at offset 4295104768 3789 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3790 + read 512/512 bytes at offset 4295105792 3791 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3792 + read 512/512 bytes at offset 4295106816 3793 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3794 + read 512/512 bytes at offset 4295107840 3795 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3796 + read 512/512 bytes at offset 4295108864 3797 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3798 + read 512/512 bytes at offset 4295109888 3799 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3800 + read 512/512 bytes at offset 4295110912 3801 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3802 + read 512/512 bytes at offset 4295111936 3803 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3804 + read 512/512 bytes at offset 4295112960 3805 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3806 + read 512/512 bytes at offset 4295113984 3807 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3376 3808 === IO: pattern 33 3377 3809 read 2048/2048 bytes at offset 4295115264 3378 3810 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 3623 4055 wrote 512/512 bytes at offset 110080 3624 4056 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3625 4057 === IO: pattern 217 3626 - offset 111360 is not sector aligned 3627 - offset 112384 is not sector aligned 3628 - offset 113408 is not sector aligned 3629 - offset 114432 is not sector aligned 3630 - offset 115456 is not sector aligned 3631 - offset 116480 is not sector aligned 3632 - offset 117504 is not sector aligned 3633 - offset 118528 is not sector aligned 3634 - offset 119552 is not sector aligned 3635 - offset 120576 is not sector aligned 3636 - offset 121600 is not sector aligned 3637 - offset 122624 is not sector aligned 3638 - offset 123648 is not sector aligned 3639 - offset 124672 is not sector aligned 3640 - offset 125696 is not sector aligned 3641 - offset 126720 is not sector aligned 3642 - offset 127744 is not sector aligned 3643 - offset 128768 is not sector aligned 3644 - offset 129792 is not sector aligned 3645 - offset 130816 is not sector aligned 3646 - offset 131840 is not sector aligned 3647 - offset 132864 is not sector aligned 3648 - offset 133888 is not sector aligned 3649 - offset 134912 is not sector aligned 3650 - offset 135936 is not sector aligned 3651 - offset 136960 is not sector aligned 3652 - offset 137984 is not sector aligned 3653 - offset 139008 is not sector aligned 3654 - offset 140032 is not sector aligned 3655 - offset 141056 is not sector aligned 3656 - offset 142080 is not sector aligned 3657 - offset 143104 is not sector aligned 3658 - offset 144128 is not sector aligned 3659 - offset 145152 is not sector aligned 3660 - offset 146176 is not sector aligned 3661 - offset 147200 is not sector aligned 4058 + wrote 512/512 bytes at offset 111360 4059 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4060 + wrote 512/512 bytes at offset 112384 4061 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4062 + wrote 512/512 bytes at offset 113408 4063 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4064 + wrote 512/512 bytes at offset 114432 4065 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4066 + wrote 512/512 bytes at offset 115456 4067 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4068 + wrote 512/512 bytes at offset 116480 4069 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4070 + wrote 512/512 bytes at offset 117504 4071 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4072 + wrote 512/512 bytes at offset 118528 4073 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4074 + wrote 512/512 bytes at offset 119552 4075 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4076 + wrote 512/512 bytes at offset 120576 4077 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4078 + wrote 512/512 bytes at offset 121600 4079 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4080 + wrote 512/512 bytes at offset 122624 4081 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4082 + wrote 512/512 bytes at offset 123648 4083 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4084 + wrote 512/512 bytes at offset 124672 4085 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4086 + wrote 512/512 bytes at offset 125696 4087 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4088 + wrote 512/512 bytes at offset 126720 4089 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4090 + wrote 512/512 bytes at offset 127744 4091 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4092 + wrote 512/512 bytes at offset 128768 4093 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4094 + wrote 512/512 bytes at offset 129792 4095 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4096 + wrote 512/512 bytes at offset 130816 4097 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4098 + wrote 512/512 bytes at offset 131840 4099 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4100 + wrote 512/512 bytes at offset 132864 4101 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4102 + wrote 512/512 bytes at offset 133888 4103 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4104 + wrote 512/512 bytes at offset 134912 4105 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4106 + wrote 512/512 bytes at offset 135936 4107 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4108 + wrote 512/512 bytes at offset 136960 4109 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4110 + wrote 512/512 bytes at offset 137984 4111 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4112 + wrote 512/512 bytes at offset 139008 4113 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4114 + wrote 512/512 bytes at offset 140032 4115 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4116 + wrote 512/512 bytes at offset 141056 4117 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4118 + wrote 512/512 bytes at offset 142080 4119 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4120 + wrote 512/512 bytes at offset 143104 4121 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4122 + wrote 512/512 bytes at offset 144128 4123 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4124 + wrote 512/512 bytes at offset 145152 4125 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4126 + wrote 512/512 bytes at offset 146176 4127 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4128 + wrote 512/512 bytes at offset 147200 4129 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3662 4130 === IO: pattern 34 3663 4131 wrote 2048/2048 bytes at offset 148480 3664 4132 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 3905 4373 read 512/512 bytes at offset 110080 3906 4374 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3907 4375 === IO: pattern 217 3908 - offset 111360 is not sector aligned 3909 - offset 112384 is not sector aligned 3910 - offset 113408 is not sector aligned 3911 - offset 114432 is not sector aligned 3912 - offset 115456 is not sector aligned 3913 - offset 116480 is not sector aligned 3914 - offset 117504 is not sector aligned 3915 - offset 118528 is not sector aligned 3916 - offset 119552 is not sector aligned 3917 - offset 120576 is not sector aligned 3918 - offset 121600 is not sector aligned 3919 - offset 122624 is not sector aligned 3920 - offset 123648 is not sector aligned 3921 - offset 124672 is not sector aligned 3922 - offset 125696 is not sector aligned 3923 - offset 126720 is not sector aligned 3924 - offset 127744 is not sector aligned 3925 - offset 128768 is not sector aligned 3926 - offset 129792 is not sector aligned 3927 - offset 130816 is not sector aligned 3928 - offset 131840 is not sector aligned 3929 - offset 132864 is not sector aligned 3930 - offset 133888 is not sector aligned 3931 - offset 134912 is not sector aligned 3932 - offset 135936 is not sector aligned 3933 - offset 136960 is not sector aligned 3934 - offset 137984 is not sector aligned 3935 - offset 139008 is not sector aligned 3936 - offset 140032 is not sector aligned 3937 - offset 141056 is not sector aligned 3938 - offset 142080 is not sector aligned 3939 - offset 143104 is not sector aligned 3940 - offset 144128 is not sector aligned 3941 - offset 145152 is not sector aligned 3942 - offset 146176 is not sector aligned 3943 - offset 147200 is not sector aligned 4376 + read 512/512 bytes at offset 111360 4377 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4378 + read 512/512 bytes at offset 112384 4379 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4380 + read 512/512 bytes at offset 113408 4381 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4382 + read 512/512 bytes at offset 114432 4383 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4384 + read 512/512 bytes at offset 115456 4385 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4386 + read 512/512 bytes at offset 116480 4387 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4388 + read 512/512 bytes at offset 117504 4389 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4390 + read 512/512 bytes at offset 118528 4391 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4392 + read 512/512 bytes at offset 119552 4393 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4394 + read 512/512 bytes at offset 120576 4395 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4396 + read 512/512 bytes at offset 121600 4397 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4398 + read 512/512 bytes at offset 122624 4399 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4400 + read 512/512 bytes at offset 123648 4401 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4402 + read 512/512 bytes at offset 124672 4403 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4404 + read 512/512 bytes at offset 125696 4405 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4406 + read 512/512 bytes at offset 126720 4407 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4408 + read 512/512 bytes at offset 127744 4409 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4410 + read 512/512 bytes at offset 128768 4411 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4412 + read 512/512 bytes at offset 129792 4413 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4414 + read 512/512 bytes at offset 130816 4415 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4416 + read 512/512 bytes at offset 131840 4417 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4418 + read 512/512 bytes at offset 132864 4419 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4420 + read 512/512 bytes at offset 133888 4421 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4422 + read 512/512 bytes at offset 134912 4423 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4424 + read 512/512 bytes at offset 135936 4425 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4426 + read 512/512 bytes at offset 136960 4427 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4428 + read 512/512 bytes at offset 137984 4429 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4430 + read 512/512 bytes at offset 139008 4431 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4432 + read 512/512 bytes at offset 140032 4433 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4434 + read 512/512 bytes at offset 141056 4435 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4436 + read 512/512 bytes at offset 142080 4437 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4438 + read 512/512 bytes at offset 143104 4439 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4440 + read 512/512 bytes at offset 144128 4441 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4442 + read 512/512 bytes at offset 145152 4443 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4444 + read 512/512 bytes at offset 146176 4445 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4446 + read 512/512 bytes at offset 147200 4447 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 3944 4448 === IO: pattern 34 3945 4449 read 2048/2048 bytes at offset 148480 3946 4450 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 4187 4691 wrote 512/512 bytes at offset 110080 4188 4692 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4189 4693 === IO: pattern 217 4190 - offset 111360 is not sector aligned 4191 - offset 112384 is not sector aligned 4192 - offset 113408 is not sector aligned 4193 - offset 114432 is not sector aligned 4194 - offset 115456 is not sector aligned 4195 - offset 116480 is not sector aligned 4196 - offset 117504 is not sector aligned 4197 - offset 118528 is not sector aligned 4198 - offset 119552 is not sector aligned 4199 - offset 120576 is not sector aligned 4200 - offset 121600 is not sector aligned 4201 - offset 122624 is not sector aligned 4202 - offset 123648 is not sector aligned 4203 - offset 124672 is not sector aligned 4204 - offset 125696 is not sector aligned 4205 - offset 126720 is not sector aligned 4206 - offset 127744 is not sector aligned 4207 - offset 128768 is not sector aligned 4208 - offset 129792 is not sector aligned 4209 - offset 130816 is not sector aligned 4210 - offset 131840 is not sector aligned 4211 - offset 132864 is not sector aligned 4212 - offset 133888 is not sector aligned 4213 - offset 134912 is not sector aligned 4214 - offset 135936 is not sector aligned 4215 - offset 136960 is not sector aligned 4216 - offset 137984 is not sector aligned 4217 - offset 139008 is not sector aligned 4218 - offset 140032 is not sector aligned 4219 - offset 141056 is not sector aligned 4220 - offset 142080 is not sector aligned 4221 - offset 143104 is not sector aligned 4222 - offset 144128 is not sector aligned 4223 - offset 145152 is not sector aligned 4224 - offset 146176 is not sector aligned 4225 - offset 147200 is not sector aligned 4694 + wrote 512/512 bytes at offset 111360 4695 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4696 + wrote 512/512 bytes at offset 112384 4697 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4698 + wrote 512/512 bytes at offset 113408 4699 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4700 + wrote 512/512 bytes at offset 114432 4701 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4702 + wrote 512/512 bytes at offset 115456 4703 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4704 + wrote 512/512 bytes at offset 116480 4705 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4706 + wrote 512/512 bytes at offset 117504 4707 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4708 + wrote 512/512 bytes at offset 118528 4709 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4710 + wrote 512/512 bytes at offset 119552 4711 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4712 + wrote 512/512 bytes at offset 120576 4713 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4714 + wrote 512/512 bytes at offset 121600 4715 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4716 + wrote 512/512 bytes at offset 122624 4717 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4718 + wrote 512/512 bytes at offset 123648 4719 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4720 + wrote 512/512 bytes at offset 124672 4721 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4722 + wrote 512/512 bytes at offset 125696 4723 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4724 + wrote 512/512 bytes at offset 126720 4725 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4726 + wrote 512/512 bytes at offset 127744 4727 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4728 + wrote 512/512 bytes at offset 128768 4729 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4730 + wrote 512/512 bytes at offset 129792 4731 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4732 + wrote 512/512 bytes at offset 130816 4733 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4734 + wrote 512/512 bytes at offset 131840 4735 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4736 + wrote 512/512 bytes at offset 132864 4737 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4738 + wrote 512/512 bytes at offset 133888 4739 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4740 + wrote 512/512 bytes at offset 134912 4741 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4742 + wrote 512/512 bytes at offset 135936 4743 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4744 + wrote 512/512 bytes at offset 136960 4745 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4746 + wrote 512/512 bytes at offset 137984 4747 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4748 + wrote 512/512 bytes at offset 139008 4749 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4750 + wrote 512/512 bytes at offset 140032 4751 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4752 + wrote 512/512 bytes at offset 141056 4753 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4754 + wrote 512/512 bytes at offset 142080 4755 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4756 + wrote 512/512 bytes at offset 143104 4757 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4758 + wrote 512/512 bytes at offset 144128 4759 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4760 + wrote 512/512 bytes at offset 145152 4761 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4762 + wrote 512/512 bytes at offset 146176 4763 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4764 + wrote 512/512 bytes at offset 147200 4765 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4226 4766 === IO: pattern 34 4227 4767 wrote 2048/2048 bytes at offset 148480 4228 4768 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 4469 5009 read 512/512 bytes at offset 110080 4470 5010 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4471 5011 === IO: pattern 217 4472 - offset 111360 is not sector aligned 4473 - offset 112384 is not sector aligned 4474 - offset 113408 is not sector aligned 4475 - offset 114432 is not sector aligned 4476 - offset 115456 is not sector aligned 4477 - offset 116480 is not sector aligned 4478 - offset 117504 is not sector aligned 4479 - offset 118528 is not sector aligned 4480 - offset 119552 is not sector aligned 4481 - offset 120576 is not sector aligned 4482 - offset 121600 is not sector aligned 4483 - offset 122624 is not sector aligned 4484 - offset 123648 is not sector aligned 4485 - offset 124672 is not sector aligned 4486 - offset 125696 is not sector aligned 4487 - offset 126720 is not sector aligned 4488 - offset 127744 is not sector aligned 4489 - offset 128768 is not sector aligned 4490 - offset 129792 is not sector aligned 4491 - offset 130816 is not sector aligned 4492 - offset 131840 is not sector aligned 4493 - offset 132864 is not sector aligned 4494 - offset 133888 is not sector aligned 4495 - offset 134912 is not sector aligned 4496 - offset 135936 is not sector aligned 4497 - offset 136960 is not sector aligned 4498 - offset 137984 is not sector aligned 4499 - offset 139008 is not sector aligned 4500 - offset 140032 is not sector aligned 4501 - offset 141056 is not sector aligned 4502 - offset 142080 is not sector aligned 4503 - offset 143104 is not sector aligned 4504 - offset 144128 is not sector aligned 4505 - offset 145152 is not sector aligned 4506 - offset 146176 is not sector aligned 4507 - offset 147200 is not sector aligned 5012 + read 512/512 bytes at offset 111360 5013 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5014 + read 512/512 bytes at offset 112384 5015 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5016 + read 512/512 bytes at offset 113408 5017 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5018 + read 512/512 bytes at offset 114432 5019 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5020 + read 512/512 bytes at offset 115456 5021 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5022 + read 512/512 bytes at offset 116480 5023 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5024 + read 512/512 bytes at offset 117504 5025 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5026 + read 512/512 bytes at offset 118528 5027 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5028 + read 512/512 bytes at offset 119552 5029 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5030 + read 512/512 bytes at offset 120576 5031 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5032 + read 512/512 bytes at offset 121600 5033 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5034 + read 512/512 bytes at offset 122624 5035 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5036 + read 512/512 bytes at offset 123648 5037 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5038 + read 512/512 bytes at offset 124672 5039 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5040 + read 512/512 bytes at offset 125696 5041 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5042 + read 512/512 bytes at offset 126720 5043 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5044 + read 512/512 bytes at offset 127744 5045 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5046 + read 512/512 bytes at offset 128768 5047 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5048 + read 512/512 bytes at offset 129792 5049 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5050 + read 512/512 bytes at offset 130816 5051 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5052 + read 512/512 bytes at offset 131840 5053 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5054 + read 512/512 bytes at offset 132864 5055 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5056 + read 512/512 bytes at offset 133888 5057 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5058 + read 512/512 bytes at offset 134912 5059 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5060 + read 512/512 bytes at offset 135936 5061 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5062 + read 512/512 bytes at offset 136960 5063 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5064 + read 512/512 bytes at offset 137984 5065 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5066 + read 512/512 bytes at offset 139008 5067 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5068 + read 512/512 bytes at offset 140032 5069 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5070 + read 512/512 bytes at offset 141056 5071 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5072 + read 512/512 bytes at offset 142080 5073 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5074 + read 512/512 bytes at offset 143104 5075 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5076 + read 512/512 bytes at offset 144128 5077 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5078 + read 512/512 bytes at offset 145152 5079 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5080 + read 512/512 bytes at offset 146176 5081 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5082 + read 512/512 bytes at offset 147200 5083 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4508 5084 === IO: pattern 34 4509 5085 read 2048/2048 bytes at offset 148480 4510 5086 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 4753 5329 wrote 512/512 bytes at offset 4295077376 4754 5330 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4755 5331 === IO: pattern 217 4756 - offset 4295078656 is not sector aligned 4757 - offset 4295079680 is not sector aligned 4758 - offset 4295080704 is not sector aligned 4759 - offset 4295081728 is not sector aligned 4760 - offset 4295082752 is not sector aligned 4761 - offset 4295083776 is not sector aligned 4762 - offset 4295084800 is not sector aligned 4763 - offset 4295085824 is not sector aligned 4764 - offset 4295086848 is not sector aligned 4765 - offset 4295087872 is not sector aligned 4766 - offset 4295088896 is not sector aligned 4767 - offset 4295089920 is not sector aligned 4768 - offset 4295090944 is not sector aligned 4769 - offset 4295091968 is not sector aligned 4770 - offset 4295092992 is not sector aligned 4771 - offset 4295094016 is not sector aligned 4772 - offset 4295095040 is not sector aligned 4773 - offset 4295096064 is not sector aligned 4774 - offset 4295097088 is not sector aligned 4775 - offset 4295098112 is not sector aligned 4776 - offset 4295099136 is not sector aligned 4777 - offset 4295100160 is not sector aligned 4778 - offset 4295101184 is not sector aligned 4779 - offset 4295102208 is not sector aligned 4780 - offset 4295103232 is not sector aligned 4781 - offset 4295104256 is not sector aligned 4782 - offset 4295105280 is not sector aligned 4783 - offset 4295106304 is not sector aligned 4784 - offset 4295107328 is not sector aligned 4785 - offset 4295108352 is not sector aligned 4786 - offset 4295109376 is not sector aligned 4787 - offset 4295110400 is not sector aligned 4788 - offset 4295111424 is not sector aligned 4789 - offset 4295112448 is not sector aligned 4790 - offset 4295113472 is not sector aligned 4791 - offset 4295114496 is not sector aligned 5332 + wrote 512/512 bytes at offset 4295078656 5333 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5334 + wrote 512/512 bytes at offset 4295079680 5335 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5336 + wrote 512/512 bytes at offset 4295080704 5337 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5338 + wrote 512/512 bytes at offset 4295081728 5339 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5340 + wrote 512/512 bytes at offset 4295082752 5341 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5342 + wrote 512/512 bytes at offset 4295083776 5343 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5344 + wrote 512/512 bytes at offset 4295084800 5345 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5346 + wrote 512/512 bytes at offset 4295085824 5347 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5348 + wrote 512/512 bytes at offset 4295086848 5349 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5350 + wrote 512/512 bytes at offset 4295087872 5351 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5352 + wrote 512/512 bytes at offset 4295088896 5353 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5354 + wrote 512/512 bytes at offset 4295089920 5355 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5356 + wrote 512/512 bytes at offset 4295090944 5357 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5358 + wrote 512/512 bytes at offset 4295091968 5359 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5360 + wrote 512/512 bytes at offset 4295092992 5361 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5362 + wrote 512/512 bytes at offset 4295094016 5363 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5364 + wrote 512/512 bytes at offset 4295095040 5365 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5366 + wrote 512/512 bytes at offset 4295096064 5367 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5368 + wrote 512/512 bytes at offset 4295097088 5369 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5370 + wrote 512/512 bytes at offset 4295098112 5371 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5372 + wrote 512/512 bytes at offset 4295099136 5373 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5374 + wrote 512/512 bytes at offset 4295100160 5375 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5376 + wrote 512/512 bytes at offset 4295101184 5377 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5378 + wrote 512/512 bytes at offset 4295102208 5379 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5380 + wrote 512/512 bytes at offset 4295103232 5381 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5382 + wrote 512/512 bytes at offset 4295104256 5383 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5384 + wrote 512/512 bytes at offset 4295105280 5385 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5386 + wrote 512/512 bytes at offset 4295106304 5387 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5388 + wrote 512/512 bytes at offset 4295107328 5389 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5390 + wrote 512/512 bytes at offset 4295108352 5391 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5392 + wrote 512/512 bytes at offset 4295109376 5393 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5394 + wrote 512/512 bytes at offset 4295110400 5395 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5396 + wrote 512/512 bytes at offset 4295111424 5397 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5398 + wrote 512/512 bytes at offset 4295112448 5399 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5400 + wrote 512/512 bytes at offset 4295113472 5401 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5402 + wrote 512/512 bytes at offset 4295114496 5403 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 4792 5404 === IO: pattern 34 4793 5405 wrote 2048/2048 bytes at offset 4295115776 4794 5406 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 5035 5647 read 512/512 bytes at offset 4295077376 5036 5648 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5037 5649 === IO: pattern 217 5038 - offset 4295078656 is not sector aligned 5039 - offset 4295079680 is not sector aligned 5040 - offset 4295080704 is not sector aligned 5041 - offset 4295081728 is not sector aligned 5042 - offset 4295082752 is not sector aligned 5043 - offset 4295083776 is not sector aligned 5044 - offset 4295084800 is not sector aligned 5045 - offset 4295085824 is not sector aligned 5046 - offset 4295086848 is not sector aligned 5047 - offset 4295087872 is not sector aligned 5048 - offset 4295088896 is not sector aligned 5049 - offset 4295089920 is not sector aligned 5050 - offset 4295090944 is not sector aligned 5051 - offset 4295091968 is not sector aligned 5052 - offset 4295092992 is not sector aligned 5053 - offset 4295094016 is not sector aligned 5054 - offset 4295095040 is not sector aligned 5055 - offset 4295096064 is not sector aligned 5056 - offset 4295097088 is not sector aligned 5057 - offset 4295098112 is not sector aligned 5058 - offset 4295099136 is not sector aligned 5059 - offset 4295100160 is not sector aligned 5060 - offset 4295101184 is not sector aligned 5061 - offset 4295102208 is not sector aligned 5062 - offset 4295103232 is not sector aligned 5063 - offset 4295104256 is not sector aligned 5064 - offset 4295105280 is not sector aligned 5065 - offset 4295106304 is not sector aligned 5066 - offset 4295107328 is not sector aligned 5067 - offset 4295108352 is not sector aligned 5068 - offset 4295109376 is not sector aligned 5069 - offset 4295110400 is not sector aligned 5070 - offset 4295111424 is not sector aligned 5071 - offset 4295112448 is not sector aligned 5072 - offset 4295113472 is not sector aligned 5073 - offset 4295114496 is not sector aligned 5650 + read 512/512 bytes at offset 4295078656 5651 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5652 + read 512/512 bytes at offset 4295079680 5653 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5654 + read 512/512 bytes at offset 4295080704 5655 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5656 + read 512/512 bytes at offset 4295081728 5657 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5658 + read 512/512 bytes at offset 4295082752 5659 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5660 + read 512/512 bytes at offset 4295083776 5661 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5662 + read 512/512 bytes at offset 4295084800 5663 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5664 + read 512/512 bytes at offset 4295085824 5665 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5666 + read 512/512 bytes at offset 4295086848 5667 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5668 + read 512/512 bytes at offset 4295087872 5669 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5670 + read 512/512 bytes at offset 4295088896 5671 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5672 + read 512/512 bytes at offset 4295089920 5673 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5674 + read 512/512 bytes at offset 4295090944 5675 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5676 + read 512/512 bytes at offset 4295091968 5677 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5678 + read 512/512 bytes at offset 4295092992 5679 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5680 + read 512/512 bytes at offset 4295094016 5681 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5682 + read 512/512 bytes at offset 4295095040 5683 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5684 + read 512/512 bytes at offset 4295096064 5685 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5686 + read 512/512 bytes at offset 4295097088 5687 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5688 + read 512/512 bytes at offset 4295098112 5689 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5690 + read 512/512 bytes at offset 4295099136 5691 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5692 + read 512/512 bytes at offset 4295100160 5693 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5694 + read 512/512 bytes at offset 4295101184 5695 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5696 + read 512/512 bytes at offset 4295102208 5697 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5698 + read 512/512 bytes at offset 4295103232 5699 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5700 + read 512/512 bytes at offset 4295104256 5701 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5702 + read 512/512 bytes at offset 4295105280 5703 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5704 + read 512/512 bytes at offset 4295106304 5705 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5706 + read 512/512 bytes at offset 4295107328 5707 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5708 + read 512/512 bytes at offset 4295108352 5709 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5710 + read 512/512 bytes at offset 4295109376 5711 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5712 + read 512/512 bytes at offset 4295110400 5713 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5714 + read 512/512 bytes at offset 4295111424 5715 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5716 + read 512/512 bytes at offset 4295112448 5717 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5718 + read 512/512 bytes at offset 4295113472 5719 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5720 + read 512/512 bytes at offset 4295114496 5721 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5074 5722 === IO: pattern 34 5075 5723 read 2048/2048 bytes at offset 4295115776 5076 5724 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 5317 5965 wrote 512/512 bytes at offset 4295077376 5318 5966 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5319 5967 === IO: pattern 217 5320 - offset 4295078656 is not sector aligned 5321 - offset 4295079680 is not sector aligned 5322 - offset 4295080704 is not sector aligned 5323 - offset 4295081728 is not sector aligned 5324 - offset 4295082752 is not sector aligned 5325 - offset 4295083776 is not sector aligned 5326 - offset 4295084800 is not sector aligned 5327 - offset 4295085824 is not sector aligned 5328 - offset 4295086848 is not sector aligned 5329 - offset 4295087872 is not sector aligned 5330 - offset 4295088896 is not sector aligned 5331 - offset 4295089920 is not sector aligned 5332 - offset 4295090944 is not sector aligned 5333 - offset 4295091968 is not sector aligned 5334 - offset 4295092992 is not sector aligned 5335 - offset 4295094016 is not sector aligned 5336 - offset 4295095040 is not sector aligned 5337 - offset 4295096064 is not sector aligned 5338 - offset 4295097088 is not sector aligned 5339 - offset 4295098112 is not sector aligned 5340 - offset 4295099136 is not sector aligned 5341 - offset 4295100160 is not sector aligned 5342 - offset 4295101184 is not sector aligned 5343 - offset 4295102208 is not sector aligned 5344 - offset 4295103232 is not sector aligned 5345 - offset 4295104256 is not sector aligned 5346 - offset 4295105280 is not sector aligned 5347 - offset 4295106304 is not sector aligned 5348 - offset 4295107328 is not sector aligned 5349 - offset 4295108352 is not sector aligned 5350 - offset 4295109376 is not sector aligned 5351 - offset 4295110400 is not sector aligned 5352 - offset 4295111424 is not sector aligned 5353 - offset 4295112448 is not sector aligned 5354 - offset 4295113472 is not sector aligned 5355 - offset 4295114496 is not sector aligned 5968 + wrote 512/512 bytes at offset 4295078656 5969 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5970 + wrote 512/512 bytes at offset 4295079680 5971 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5972 + wrote 512/512 bytes at offset 4295080704 5973 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5974 + wrote 512/512 bytes at offset 4295081728 5975 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5976 + wrote 512/512 bytes at offset 4295082752 5977 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5978 + wrote 512/512 bytes at offset 4295083776 5979 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5980 + wrote 512/512 bytes at offset 4295084800 5981 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5982 + wrote 512/512 bytes at offset 4295085824 5983 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5984 + wrote 512/512 bytes at offset 4295086848 5985 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5986 + wrote 512/512 bytes at offset 4295087872 5987 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5988 + wrote 512/512 bytes at offset 4295088896 5989 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5990 + wrote 512/512 bytes at offset 4295089920 5991 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5992 + wrote 512/512 bytes at offset 4295090944 5993 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5994 + wrote 512/512 bytes at offset 4295091968 5995 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5996 + wrote 512/512 bytes at offset 4295092992 5997 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5998 + wrote 512/512 bytes at offset 4295094016 5999 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6000 + wrote 512/512 bytes at offset 4295095040 6001 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6002 + wrote 512/512 bytes at offset 4295096064 6003 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6004 + wrote 512/512 bytes at offset 4295097088 6005 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6006 + wrote 512/512 bytes at offset 4295098112 6007 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6008 + wrote 512/512 bytes at offset 4295099136 6009 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6010 + wrote 512/512 bytes at offset 4295100160 6011 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6012 + wrote 512/512 bytes at offset 4295101184 6013 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6014 + wrote 512/512 bytes at offset 4295102208 6015 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6016 + wrote 512/512 bytes at offset 4295103232 6017 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6018 + wrote 512/512 bytes at offset 4295104256 6019 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6020 + wrote 512/512 bytes at offset 4295105280 6021 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6022 + wrote 512/512 bytes at offset 4295106304 6023 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6024 + wrote 512/512 bytes at offset 4295107328 6025 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6026 + wrote 512/512 bytes at offset 4295108352 6027 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6028 + wrote 512/512 bytes at offset 4295109376 6029 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6030 + wrote 512/512 bytes at offset 4295110400 6031 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6032 + wrote 512/512 bytes at offset 4295111424 6033 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6034 + wrote 512/512 bytes at offset 4295112448 6035 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6036 + wrote 512/512 bytes at offset 4295113472 6037 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6038 + wrote 512/512 bytes at offset 4295114496 6039 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5356 6040 === IO: pattern 34 5357 6041 wrote 2048/2048 bytes at offset 4295115776 5358 6042 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) ··· 5599 6283 read 512/512 bytes at offset 4295077376 5600 6284 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5601 6285 === IO: pattern 217 5602 - offset 4295078656 is not sector aligned 5603 - offset 4295079680 is not sector aligned 5604 - offset 4295080704 is not sector aligned 5605 - offset 4295081728 is not sector aligned 5606 - offset 4295082752 is not sector aligned 5607 - offset 4295083776 is not sector aligned 5608 - offset 4295084800 is not sector aligned 5609 - offset 4295085824 is not sector aligned 5610 - offset 4295086848 is not sector aligned 5611 - offset 4295087872 is not sector aligned 5612 - offset 4295088896 is not sector aligned 5613 - offset 4295089920 is not sector aligned 5614 - offset 4295090944 is not sector aligned 5615 - offset 4295091968 is not sector aligned 5616 - offset 4295092992 is not sector aligned 5617 - offset 4295094016 is not sector aligned 5618 - offset 4295095040 is not sector aligned 5619 - offset 4295096064 is not sector aligned 5620 - offset 4295097088 is not sector aligned 5621 - offset 4295098112 is not sector aligned 5622 - offset 4295099136 is not sector aligned 5623 - offset 4295100160 is not sector aligned 5624 - offset 4295101184 is not sector aligned 5625 - offset 4295102208 is not sector aligned 5626 - offset 4295103232 is not sector aligned 5627 - offset 4295104256 is not sector aligned 5628 - offset 4295105280 is not sector aligned 5629 - offset 4295106304 is not sector aligned 5630 - offset 4295107328 is not sector aligned 5631 - offset 4295108352 is not sector aligned 5632 - offset 4295109376 is not sector aligned 5633 - offset 4295110400 is not sector aligned 5634 - offset 4295111424 is not sector aligned 5635 - offset 4295112448 is not sector aligned 5636 - offset 4295113472 is not sector aligned 5637 - offset 4295114496 is not sector aligned 6286 + read 512/512 bytes at offset 4295078656 6287 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6288 + read 512/512 bytes at offset 4295079680 6289 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6290 + read 512/512 bytes at offset 4295080704 6291 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6292 + read 512/512 bytes at offset 4295081728 6293 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6294 + read 512/512 bytes at offset 4295082752 6295 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6296 + read 512/512 bytes at offset 4295083776 6297 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6298 + read 512/512 bytes at offset 4295084800 6299 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6300 + read 512/512 bytes at offset 4295085824 6301 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6302 + read 512/512 bytes at offset 4295086848 6303 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6304 + read 512/512 bytes at offset 4295087872 6305 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6306 + read 512/512 bytes at offset 4295088896 6307 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6308 + read 512/512 bytes at offset 4295089920 6309 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6310 + read 512/512 bytes at offset 4295090944 6311 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6312 + read 512/512 bytes at offset 4295091968 6313 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6314 + read 512/512 bytes at offset 4295092992 6315 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6316 + read 512/512 bytes at offset 4295094016 6317 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6318 + read 512/512 bytes at offset 4295095040 6319 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6320 + read 512/512 bytes at offset 4295096064 6321 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6322 + read 512/512 bytes at offset 4295097088 6323 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6324 + read 512/512 bytes at offset 4295098112 6325 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6326 + read 512/512 bytes at offset 4295099136 6327 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6328 + read 512/512 bytes at offset 4295100160 6329 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6330 + read 512/512 bytes at offset 4295101184 6331 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6332 + read 512/512 bytes at offset 4295102208 6333 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6334 + read 512/512 bytes at offset 4295103232 6335 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6336 + read 512/512 bytes at offset 4295104256 6337 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6338 + read 512/512 bytes at offset 4295105280 6339 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6340 + read 512/512 bytes at offset 4295106304 6341 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6342 + read 512/512 bytes at offset 4295107328 6343 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6344 + read 512/512 bytes at offset 4295108352 6345 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6346 + read 512/512 bytes at offset 4295109376 6347 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6348 + read 512/512 bytes at offset 4295110400 6349 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6350 + read 512/512 bytes at offset 4295111424 6351 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6352 + read 512/512 bytes at offset 4295112448 6353 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6354 + read 512/512 bytes at offset 4295113472 6355 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 6356 + read 512/512 bytes at offset 4295114496 6357 + 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) 5638 6358 === IO: pattern 34 5639 6359 read 2048/2048 bytes at offset 4295115776 5640 6360 2 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)